# Nansen Token God Mode - Token Information

> Nansen Token God Mode - Token Information is a paid API for AI agents from api.nansen.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves comprehensive 'Token God Mode' (TGM) information and analytics data for a specific token via Nansen's smart money intelligence platform

## Facts

- Endpoint: GET https://api.nansen.ai/api/v1/tgm/token-information
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-nansen-ai-cfea133f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kjdfqZwmkgyzEZhNU_MXP

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-nansen-ai-cfea133f
```

Example prompt: Pull up the Nansen Token God Mode information for USDC on Ethereum — I want to see the smart money wallet labels and token analytics.

## When to prefer this

Use this endpoint when you need Nansen's proprietary 'Token God Mode' smart money intelligence for a specific token — particularly when you want wallet labels, smart money holder data, and on-chain analytics that go beyond raw blockchain data. Prefer this over generic on-chain lookups when Nansen's curated wallet labeling and smart money signals are specifically needed.

## Known failure modes

- Invalid or unrecognized token contract address returns error
- Unsupported blockchain network returns error
- Token not indexed by Nansen returns empty or null result
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if requests exceed quota

## How this service works

Get "Token God Mode" (TGM) token information data

## Output

Returns Token God Mode (TGM) data for the specified token, including smart money holder intelligence, wallet labels, on-chain analytics, and token metrics as tracked by Nansen's proprietary labeling system.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMTokenInformationRequest",
 "required": [
  "chain",
  "token_address",
  "timeframe"
 ],
 "properties": {
  "chain": {
   "enum": [
    "arbitrum",
    "avalanche",
    "base",
    "bnb",
    "ethereum",
    "hyperevm",
    "injective",
    "iotaevm",
    "linea",
    "mantle",
    "mantra",
    "monad",
    "near",
    "optimism",
    "plasma",
    "polygon",
    "ronin",
    "scroll",
    "sei",
    "solana",
    "sonic",
    "starknet",
    "sui",
    "ton",
    "tron"
   ],
   "type": "string",
   "title": "TGMChain",
   "description": "Chains supported in TGM (Token God Mode) endpoints."
  },
  "timeframe": {
   "enum": [
    "5m",
    "1h",
    "6h",
    "12h",
    "1d",
    "7d"
   ],
   "type": "string",
   "title": "TGMFlowIntelligenceTimeframe",
   "description": "TGM flow intelligence timeframe options."
  },
  "token_address": {
   "type": "string",
   "title": "Token Address",
   "examples": [
    "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9"
   ],
   "description": "Token address"
  }
 },
 "description": "Request model for TGM token information endpoint.\nThis endpoint provides comprehensive token information including basic details,\ntoken details (deployment, social links, market metrics), and spot trading metrics.",
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMTokenInformationResponse",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "title": "TGMTokenInformation",
   "properties": {
    "logo": {
     "anyOf": [
      {
       "type": "string"
      }
     ],
     "title": "Logo",
     "examples": [
      "https://assets.coingecko.com/coins/images/12645/large/AAVE.png"
     ],
     "description": "Token logo URL"
    },
    "name": {
     "anyOf": [
      {
       "type": "string"
      }
     ],
     "title": "Name",
     "examples": [
      "Aave"
     ],
     "description": "Token name"
    },
    "symbol": {
     "anyOf": [
      {
       "type": "string"
      }
     ],
     "title": "Symbol",
     "examples": [
      "AAVE"
     ],
     "description": "Token symbol"
    },
    "spot_metrics": {
     "anyOf": [
      {
       "type": "object",
       "title": "SpotMetrics",
       "properties": {
        "total_buys": {
         "anyOf": [
          {
           "type": "integer"
          }
         ],
         "title": "Total Buys",
         "examples": [
          666
         ],
         "description": "Total number of buy transactions"
        },
        "total_sells": {
         "anyOf": [
          {
           "type": "integer"
          }
         ],
         "title": "Total Sells",
         "examples": [
          499
         ],
         "description": "Total number of sell transactions"
        },
        "liquidity_usd": {
         "anyOf": [
          {
           "type": "number"
          }
         ],
         "title": "Liquidity Usd",
         "examples": [
          153420000
         ],
         "description": "Liquidity in USD"
        },
        "total_holders": {
         "anyOf": [
          {
           "type": "integer"
          }
         ],
         "title": "Total Holders",
         "examples": [
          165299
         ],
         "description": "Total number of token holders"
        },
        "unique_buyers": {
         "anyOf": [
          {
           "type": "integer"
          }
         ],
         "title": "Unique Buyers",
         "examples": [
          106
         ],
         "description": "Number of unique buyers"
        },
        "buy_volume_usd": {
         "anyOf": [
          {
           "type": "number"
          }
         ],
         "title": "Buy Volume Usd",
         "examples": [
          4520000
         ],
         "description": "Total buy volume in USD"
        },
        "u
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-nansen-ai-cfea133f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.nansen.ai](https://www.zero.xyz/host/api.nansen.ai/llms.txt)
