Scoring API
Lookup scores for individual addresses
Get Scores
Fetch scores and details for an ETH L1 address
Path Parameters
Name
Type
Description
Responses
Full Data Response
// HTTP 200 OK
{
"address": "0xFFFF....",
"scores": {
"whaleness": 1, // Asset score from 1 to 5.
"hands": "new"
},
"labels": [ // See https://docs.5.dev/reference/2.5-intelligence-labels
{"name" : "diamond"},
{"name" : "five-diamond"},
{"name" : "paperhands"},
{"name" : "whale"},
{"name" : "blue-chip"},
{"name" : "smart-money"},
{"name" : "top-minter"},
{"name" : "top-trader"},
],
"collectibles": [
{
"name": "Azuki",
"quantity": 1,
"openseaSlug": "azuki",
"inTs": "2022-02-01T19:25:14.000Z",
"floorPrice": 25.99
},
{
"name": "Meebits",
"quantity": 2,
"openseaSlug": "meebits",
"inTs": "2021-05-03T18:57:38.000Z",
"floorPrice": 4.99
},
{
"name": "TinyBoxes",
"quantity": 5,
"openseaSlug": "tinyboxes",
"inTs": "2021-03-06T02:23:12.000Z",
"floorPrice": null
},
{
"name": "Chubbies",
"quantity": 1,
"openseaSlug": "chubbies",
"inTs": "2021-03-21T00:54:02.000Z",
"floorPrice": null
}
],
"coins": [
{
"symbol": "ETH",
"contractAddress": null,
"amount": 0.2,
"nativeValue": 0.2,
"usdValue": 690.02
},
{
"symbol": "WETH",
"name": "WETH",
"contractAddress": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"amount": 3.2229455940746856,
"nativeValue": 3.2229455940746856,
"usdValue": 11119.4845941171
},
{
"symbol": "USDC",
"name": "USD Coin",
"contractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"amount": 1064.917938,
"nativeValue": 0.30927346755396,
"usdValue": 1064.917938
},
],
"portfolioStats": {
"longestHoldDuration": 33451829.63;
"averageHoldDuration": 8462957.4075;
"oldestTransferIn": "2021-03-06T02:23:12.000Z";
"newestTransferIn": "2022-02-01T19:25:14.000Z";
"totalPortfolioValue": 34.712219061628645,
"collectiblePortfolioValue": 30.98,
"coinPortfolioValue": 3.732219061628644,
"collectibleCount": 4
},
"lifetimeStats": {
"longestHoldDuration": 33451829.63,
"averageHoldDuration": 5372256.161;
"firstTransferIn": "2021-01-18T12:09:54.000Z",
},
"transferCounts": {
"mints": 4,
"purchases": 2,
"transfersIn": 0,
"sales": 2,
"flips": 2,
"profitableFlips": 2,
"transfersOut": 0
}
}Scores
Collectibles
Coins
Portfolio Stats
Lifetime Stats
Transfer Counts
Job Enqueued Response
Last updated