Introduction
API Keys
Get Scores
Fetch scores and details for an ETH L1 address
Path Parameters
Name
Type
Description
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'Last updated