Skip to main content
GET
Token Transfers by Wallet Address

Notes

  • direction is relative to the queried wallet, so the counterparty is whichever of from_address and to_address is not that wallet:
  • amount is full precision and never rounded, but comes back null when the token cannot be resolved. amount_raw is always present, so fall back to it and convert with decimals: amount_raw / 10^decimals.
  • Paginate with cursor rather than a page number:
    • Pass meta.next_cursor back unchanged as cursor to fetch the next page.
    • meta.next_cursor is null on the last page.
from and to must be provided together, and the window between them cannot exceed 30 days.
  • Omit both to get the most recent 7 days.
  • Providing only one of them returns a 400.

Authorizations

x-cg-pro-api-key
string
header
required

Learn how to set up your API key

Path Parameters

network
string
default:eth
required

Network ID. *refers to supported networks.

address
string
default:0x9642b23ed1e01df1092b92641051881a322f5d4e
required

Wallet address.

Query Parameters

token
string

Filter transfers by token contract address.

from
string

Starting date in ISO date string (YYYY-MM-DD or YYYY-MM-DDTHH:MM) or UNIX timestamp. Use ISO date string for best compatibility. Must be provided together with to.

to
string

Ending date in ISO date string (YYYY-MM-DD or YYYY-MM-DDTHH:MM) or UNIX timestamp. Use ISO date string for best compatibility. Must be provided together with from.

direction
enum<string>

Filter transfers by direction, relative to the queried wallet. Omit to return both.

Available options:
in,
out
cursor
string

Cursor from the previous response, passed back unchanged to fetch the next page.

per_page
integer

Total results per page. Default value: 100 Valid values: 1...300

Response

200 - application/json

Wallet token transfers data

data
object[]
required
meta
object
required