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

get
https://rutherford.5.dev/api/scores
/${address}
Fetch scores and details for an ETH L1 address
Node.js
Curl
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,
},
});
curl -XGET \
-H 'Authorization: Bearer eyJhb.....pXVCJ' \
-H "Content-type: application/json" \
'https://rutherford.5.dev/api/scores/0x7274574f459c78D231F834e493de92e1F8127cd6'
See the Scores API Reference for details on response data.