---
title: "Get Nansen Score Indicators"
method: POST
path: "/api/v1/tgm/indicators"
tags: ["Token God Mode"]
---

# Get Nansen Score Indicators

`POST /api/v1/tgm/indicators`

Get risk and reward indicators for a specific token.

Returns two groups of indicators:
- **risk_indicators**: Metrics for assessing token risk (btc-reflexivity, liquidity-risk, concentration-risk, token-supply-inflation)
- **reward_indicators**: Metrics for assessing alpha potential (chain-tvl, trading-range, price-momentum, chain-fees, protocol-fees, cex-flows, funding-rate)

Each indicator includes:
- **score**: Summary assessment ('low'/'medium'/'high' for risk, 'bearish'/'neutral'/'bullish' for reward)
- **signal**: Raw metric value
- **signal_percentile**: Percentile rank (0-100) vs tokens in same market cap group
- **last_trigger_on**: When the indicator last changed state

## Request body

- TGMIndicatorsRequest — Request model for TGM Indicators endpoint. This endpoint provides risk and reward indicators for a specific token.
  - `chain` 'arbitrum' | 'avalanche' | 'base' | 'bnb' | 'ethereum' | 'hyperevm' | 'hyperliquid' | 'injective' | 'iotaevm' | 'linea' | 'mantle' | 'mantra' | 'monad' | 'near' | 'optimism' | 'plasma' | 'polygon' | 'robinhood' | 'sei' | 'solana' | 'sonic' | 'starknet' | 'sui' | 'ton' | 'tron', required — Chains supported in TGM (Token God Mode) endpoints.
  - `token_address` string, required — Token contract address

## Response `200`

Nansen score indicators data

- TGMIndicatorsResponse — Response model for TGM Indicators endpoint. Contains risk and reward indicators grouped separately.
  - `token_address` string, required — Token contract address
  - `chain` string, required — Blockchain chain
  - `token_info` TGMIndicatorTokenInfo, required — Token metadata from indicator data.
    - `market_cap_usd` number — Market capitalization in USD
    - `market_cap_group` string — Market cap classification group
    - `is_stablecoin` boolean — Flag indicating if token is a stablecoin
  - `risk_indicators` TGMIndicator[], required — Risk assessment indicators (btc-reflexivity, liquidity-risk, concentration-risk, token-supply-inflation)
    - `indicator_type` string, required — The type of indicator
    - `score` string — Summary score (risk: low/medium/high, reward: bearish/neutral/bullish)
    - `signal` number — The raw signal value for the indicator
    - `signal_percentile` number — Percentile of the signal against tokens in the same market cap group (0-100)
    - `last_trigger_on` string — Date when the indicator last changed state (YYYY-MM-DD)
  - `reward_indicators` TGMIndicator[], required — Reward/alpha potential indicators (chain-tvl, trading-range, price-momentum, chain-fees, protocol-fees, cex-flows, funding-rate)
    - `indicator_type` string, required — The type of indicator
    - `score` string — Summary score (risk: low/medium/high, reward: bearish/neutral/bullish)
    - `signal` number — The raw signal value for the indicator
    - `signal_percentile` number — Percentile of the signal against tokens in the same market cap group (0-100)
    - `last_trigger_on` string — Date when the indicator last changed state (YYYY-MM-DD)

## Other responses

- `400` — Bad Request - Invalid request parameters or malformed request
- `401` — Authentication error - No API key found in request
- `402` — Payment Required - This endpoint supports pay-per-request via x402 and MPP. x402 responses advertise payment options in `Payment-Required`; MPP responses advertise a fresh `WWW-Authenticate: Payment ...` challenge. Successful MPP responses may include `Payment-Receipt`.
- `403` — Forbidden - User does not have required subscription tier or has exceeded credit limit
- `404` — Not Found - The requested resource was not found
- `422` — Validation error - Invalid request parameters
- `429` — Too Many Requests - Rate limit exceeded
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.net/nansen/apis/nansen-api.md) · [All operations](https://skmtc.net/nansen/apis/nansen-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nansen/nansen-api/revisions/02a4d2e7d827/schema)
