Introduction

2.5 Intelligence's API is in private beta.

API Keys

Your API key is a signed JWT that should be provided in the Authorization header with all API requests.

Authorization: Bearer eyJhb.....pXVCJ

Get Scores

Fetch scores and details for an ETH L1 address

GET https://rutherford.5.dev/api/scores/${address}

Path Parameters

NameTypeDescription

address*

String

Address to retrieve scores for. starting with 0x

const address = '0x7274574f459c78D231F834e493de92e1F8127cd6';
const key = 'eyJhb.....pXVCJ';

const result = await fetch(`https://rutherford.5.dev/api/scores/${address}`, {
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
    'Authorization': 'Bearer ' + key,
  },
});

See the Scores API Reference for details on response data.

Last updated