For the complete documentation index, see llms.txt. This page is also available as Markdown.

Historical Token Quant Scores

Get Historical Token Quant Scores (Beta)

post

Beta — subject to breaking changes.

Point-in-time Nansen Score indicators for a token anchored to as_of_date.

Percentile rankings are computed across all tokens in the same market cap group at as_of_date, avoiding forward-looking bias.

Authorizations
apikeystringRequired

API key for authentication

Body

Request model for the historical token quant scores endpoint.

Returns point-in-time Nansen Score indicators for a token anchored to as_of_date.

as_of_datestring · dateRequired

Date to query indicators for

Example: 2025-06-01
chainstring · enumRequired

Blockchain chain

Example: ethereumPossible values:
token_addressstringRequired

Token contract address

Example: 0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9
Responses
200

Historical token quant scores data

application/json
post/api/v1beta1/tgm/historical-token-quant-scores
POST /api/v1beta1/tgm/historical-token-quant-scores HTTP/1.1
Host: api.nansen.ai
apikey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 107

{
  "as_of_date": "2025-06-01",
  "chain": "ethereum",
  "token_address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9"
}
{
  "data": [
    {
      "indicator_type": "price-momentum",
      "signal": 0.75,
      "signal_percentile": 82.5,
      "score": "bullish",
      "last_trigger_on": "2025-05-28T00:00:00",
      "is_stablecoin": false,
      "market_cap_usd": 500000000,
      "market_cap_group": "large",
      "model_type": "reward"
    }
  ]
}

Last updated

Was this helpful?