---
title: "Get \"Token God Mode\" (TGM) transfers data"
method: POST
path: "/api/v1/tgm/transfers"
tags: ["Token God Mode"]
---

# Get "Token God Mode" (TGM) transfers data

`POST /api/v1/tgm/transfers`

Track all token transfer activity including direct transfers, DEX trades, and CEX movements. This endpoint is particularly useful for monitoring exchange flows - both centralized (CEX) and decentralized (DEX) - to identify accumulation or distribution patterns.

## Request body

- TGMTransfersRequest — Request model for TGM transfers endpoint. This endpoint provides top token transfers for a specific token, with support for ERC-20 tokens. The model selection is dynamic based on the token address.
  - `chain` 'arbitrum' | 'avalanche' | 'base' | 'bitcoin' | 'bnb' | 'ethereum' | 'hyperevm' | 'injective' | 'iotaevm' | 'linea' | 'mantle' | 'mantra' | 'monad' | 'near' | 'optimism' | 'plasma' | 'polygon' | 'robinhood' | 'sei' | 'solana' | 'sonic' | 'starknet' | 'sui' | 'ton' | 'tron', required — Chains supported for TGM transfers endpoint.
  - `token_address` string, required — Token address
  - `date` DateRangeMaxOneYear, required — Date range model with a maximum duration of 1 year. Inherits all functionality from DateRange but adds validation to ensure the date range does not exceed 366 days (to account for leap years). This limit ensures optimal query performance.
    - `from` string — Start date in ISO 8601 format (e.g., 2025-01-01T00:00:00Z or 2025-01-01)
    - `to` string — End date in ISO 8601 format (e.g., 2025-01-31T23:59:59Z or 2025-01-31)
  - `pagination` PaginationRequest — Pagination parameters for API requests.
    - `page` integer — Page number (1-based)
    - `per_page` integer — Number of records per page (max 1000)
  - `filters` TGMTransfersFilters — Filters for TGM transfers endpoint. These filters control which transfers are included in the analysis.
    - `include_dex` boolean — Whether to include DEX transfers
    - `include_cex` boolean — Whether to include CEX transfers
    - `non_exchange_transfers` boolean — Whether to include non-exchange transfers
    - `only_smart_money` boolean — Whether to include only smart money transfers
    - `from_include_smart_money_labels` LabelType[] — Include smart money labels for from address
    - `from_exclude_smart_money_labels` LabelType[] — Exclude smart money labels for from address
    - `to_include_smart_money_labels` LabelType[] — Include smart money labels for to address
    - `to_exclude_smart_money_labels` LabelType[] — Exclude smart money labels for to address
    - `transaction_hash` union — Transaction hash filter
      - string
      - string[]
    - `from_address` union — From address filter
      - string
      - string[]
    - `to_address` union — To address filter
      - string
      - string[]
    - `from_address_label` union — From address label filter
      - string
      - string[]
    - `to_address_label` union — To address label filter
      - string
      - string[]
    - `transaction_type` string — Transaction type filter
    - `transfer_amount` NumericRangeFilter — Filter for numeric values (floats) with optional min/max bounds. Use for prices, volumes, ratios, and other decimal values. - Values between -10.5 and 100.75
      - `min` number — Minimum value (inclusive)
      - `max` number — Maximum value (inclusive)
    - `transfer_value_usd` NumericRangeFilter — Filter for numeric values (floats) with optional min/max bounds. Use for prices, volumes, ratios, and other decimal values. - Values between -10.5 and 100.75
      - `min` number — Minimum value (inclusive)
      - `max` number — Maximum value (inclusive)
  - `order_by` SortOrderTGMTransfersSortField[] — Custom sort order to override the endpoint's default ordering. Examples: - [{"field": "transfer_value_usd", "direction": "ASC"}] - Sort by transfer value ascending - [{"field": "transfer_amount", "direction": "DESC"}] - Sort by transfer amount descending
    - `field` 'block_timestamp' | 'transaction_hash' | 'from_address' | 'to_address' | 'from_address_label' | 'to_address_label' | 'transaction_type' | 'transfer_amount' | 'transfer_value_usd', required — Enum for sortable fields in TGM transfers.
    - `direction` 'ASC' | 'DESC', required — Enum for sort directions.

## Response `200`

TGM transfers data

- TGMTransfersResponse — Response model for TGM transfers endpoint. Contains a list of transfer records with pagination and metadata.
  - `data` TGMTransfer[], required — List of TGM transfer records
    - `block_timestamp` string, required — The block timestamp for the transaction
    - `transaction_hash` string, required — The transaction hash for the transaction
    - `from_address` string, required — from address
    - `to_address` string, required — to address
    - `from_address_label` string — from address label
    - `to_address_label` string — to address label
    - `transaction_type` string — Transaction type
    - `transfer_amount` number — value of the token traded
    - `transfer_value_usd` number — value of the token traded in USD
  - `pagination` PaginationInfo, required — Pagination information for API responses.
    - `page` integer — Current page number
    - `per_page` integer — Number of records per page
    - `is_last_page` boolean — Whether this is the last page

## 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)
