# Nansen TGM Position Intelligence

> Nansen TGM Position Intelligence is a paid API for AI agents from api.nansen.ai, paid per call via MPP or x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves TGM (Top Gaining Managers / Token Governance Market) position intelligence data for on-chain addresses or tokens via Nansen's smart money analytics platform

## Facts

- Endpoint: GET https://api.nansen.ai/api/v1/tgm/position-intelligence
- Price: $0.01/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nansen-19b780ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HK7hUkJQDUWQg5GasjmqU

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 nansen-19b780ee
```

Example prompt: Pull Nansen TGM position intelligence data for the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum so I can see what top gaining managers are positioned in.

## When to prefer this

Choose this endpoint when you need institutional-grade on-chain position intelligence specifically from Nansen's TGM (Top Gaining Managers) dataset — particularly when analyzing which smart money or high-performing wallets hold significant positions in a token. Prefer this over generic holder APIs when you want Nansen's curated wallet labels and smart money categorization rather than raw on-chain data.

## Known failure modes

- Invalid or unsupported token/contract address returns a 400 error
- Token not tracked by Nansen TGM returns empty or null result
- Missing required body parameters returns validation error
- Insufficient payment or x402 payment failure returns 402 error
- Rate limiting or quota exceeded returns 429 error

## How this service works

Get "Token God Mode" (TGM) position intelligence data

## Output

Returns structured TGM position intelligence data including position sizes, holder breakdowns, smart money wallet positions, and related on-chain analytics for the queried token or address as curated by Nansen's wallet labeling and flow tracking systems.

## Example request

```json
{
 "token_address": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMPositionIntelligenceRequest",
 "required": [
  "token_address"
 ],
 "properties": {
  "token_address": {
   "type": "string",
   "title": "Token Address",
   "examples": [
    "BTC"
   ],
   "minLength": 1,
   "description": "Token address (for perps and hyperliquid, validation is skipped)"
  }
 },
 "description": "Request model for TGM position-intelligence endpoint.\n\nThis endpoint provides position intelligence analytics for perpetual contracts\non Hyperliquid, showing aggregated position sizes by different trader cohorts.",
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMPositionIntelligenceResponse",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "TGMPositionIntelligence",
    "properties": {
     "whale_longs_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Whale Longs Usd",
      "examples": [
       2000000.5
      ],
      "description": "Sum of absolute long sizes for addresses labeled Whale."
     },
     "whale_total_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Whale Total Usd",
      "examples": [
       3000000.75
      ],
      "description": "Total absolute position size for addresses labeled Whale."
     },
     "whale_shorts_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Whale Shorts Usd",
      "examples": [
       1000000.25
      ],
      "description": "Sum of absolute short sizes for addresses labeled Whale."
     },
     "smart_trader_longs_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Smart Trader Longs Usd",
      "examples": [
       1000000.5
      ],
      "description": "Sum of absolute long sizes for addresses labeled Smart HL Perps Trader."
     },
     "smart_trader_total_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Smart Trader Total Usd",
      "examples": [
       1500000.75
      ],
      "description": "Total absolute position size for addresses labeled Smart HL Perps Trader."
     },
     "public_figure_longs_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Public Figure Longs Usd",
      "examples": [
       500000.5
      ],
      "description": "Sum of absolute long sizes for addresses labeled Public Figure."
     },
     "public_figure_total_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Public Figure Total Usd",
      "examples": [
       750000.75
      ],
      "description": "Total absolute position size for addresses labeled Public Figure."
     },
     "smart_trader_shorts_usd": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Smart Trader Shorts Usd",
      "examples": [
       500000.25
      ],
      "description": "Sum of absolute short sizes for addresses labeled Smart HL Perps Trader."
     },
     "public_
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nansen-19b780ee/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)
