---
title: "Token Transfer History"
method: GET
path: "/gateway/v1/token/transfers"
tags: ["Token"]
---

# Token Transfer History

`GET /gateway/v1/token/transfers`

Returns recent transfer events **for a specific token** (ERC-20/TRC-20 contract).

Pass the **token contract address** in `address` — returns every on-chain transfer of that token regardless of sender/receiver.

**Included fields:** sender, receiver, raw amount, block timestamp.

Use this to analyze a token's on-chain activity (e.g. large movements, distribution patterns).

**Lookup:** `address` (token contract) + `chain`. Sort by `asc` or `desc`.

**Data refresh:** ~24 hours · **Chains:** Ethereum, Base, BSC, Arbitrum, Tron (Solana uses a different source with no delay)

## Query parameters

- `address` string, required — Token CONTRACT ADDRESS — 0x-prefixed hex for EVM chains, base58 for Solana. This is NOT a ticker symbol (e.g. do NOT pass `USDC` or `BTC`). To resolve a ticker symbol to a contract address, call GET /v1/search/token?q={symbol}&chain={chain} and use the `address` whose `chain` is supported by this endpoint. This endpoint has no `symbol` parameter.
- `chain` 'ethereum' | 'base' | 'solana' | 'tron' | 'bsc' | 'arbitrum', required — Chain. Can be `ethereum`, `base`, `solana`, `tron`, `bsc`, or `arbitrum`.
- `from` string — Start of date range. Accepts Unix seconds or YYYY-MM-DD. Defaults to 30 days ago.
- `to` string — End of date range. Accepts Unix seconds or YYYY-MM-DD. Defaults to today.
- `limit` integer — Results per page
- `offset` integer — Pagination offset
- `include` string — Comma-separated enrichments to attach to each transfer. Currently valid: `labels` — adds `from_label` and `to_label` fields.

## Response `200`

OK

- DataResponseTokenTransferItem
  - `$schema` string, uri — A URL to the JSON Schema for this object.
  - `data` TokenTransferItem[], nullable, required
    - `amount` string, required — Transfer amount (decimal-adjusted, human-readable)
    - `amount_usd` number, double — Transfer value in USD at the time of the transaction. Not available for all transfers.
    - `block_number` integer, required — Block number in which this transfer was included
    - `from_address` string, required — Sender wallet address
    - `from_label` WalletLabelItem
      - `address` string, required — Wallet address
      - `entity_name` string — Name of the associated entity like `Binance` or `Aave`
      - `entity_type` string — Type of entity like `exchange`, `fund`, or `whale`
      - `labels` WalletLabelInfo[], nullable, required — List of labels assigned to this address
        - `confidence` number, double — Confidence score 0.0-1.0
        - `label` string, required — Human-readable label for this address like `Binance Hot Wallet`
    - `symbol` string — Token symbol like ETH, USDC, or WETH
    - `timestamp` integer, required — Unix timestamp in seconds when the transfer occurred
    - `to_address` string, required — Recipient wallet address
    - `to_label` WalletLabelItem
      - `address` string, required — Wallet address
      - `entity_name` string — Name of the associated entity like `Binance` or `Aave`
      - `entity_type` string — Type of entity like `exchange`, `fund`, or `whale`
      - `labels` WalletLabelInfo[], nullable, required — List of labels assigned to this address
        - `confidence` number, double — Confidence score 0.0-1.0
        - `label` string, required — Human-readable label for this address like `Binance Hot Wallet`
    - `tx_hash` string, required — Transaction hash
  - `meta` OffsetMeta, required
    - `cached` boolean, required — Whether this response was served from cache
    - `credits_used` integer, required — Credits deducted for this request
    - `empty_reason` string — Hint explaining why the data array is empty, when applicable
    - `has_more` boolean — Whether more items may exist beyond this response. For offset-paged endpoints, continue with a larger offset. For time-series endpoints without offset/cursor controls, true means the requested time range hit an upstream cap; narrow from/to to continue. Omitted when exhaustion cannot be proven.
    - `limit` integer, required — Maximum number of items returned in this response
    - `offset` integer, required — Number of items skipped (pagination offset)
    - `total` integer — Total number of matching items (before pagination). Omitted when total is unknown.
    - `watermark` integer — Warehouse watermark (Unix seconds) this response was computed at, on warehouse-backed endpoints (e.g. Hyperliquid /trades/aggregate) — rows up to this time come from the warehouse, newer rows from the live tail. Omitted elsewhere.

## Other responses

- `default` — Error

---

[API](https://skmtc.dev/asksurf/apis/asksurf-public-rest-api.md) · [All operations](https://skmtc.dev/asksurf/apis/asksurf-public-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/asksurf/asksurf-public-rest-api/revisions/498f461e81c4/schema)
