Skip to main content
GET
Get token transfers

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

explorer
string
Example:

"solana"

cursor
string
Example:

"n0192376853"

sort
enum<string>
Available options:
usd
Example:

"usd"

size
number
default:25
Required range: 1 <= x <= 100
Example:

10

tx_hash
string
Example:

"0xbe667b06979c46e186cebb4ad2c6fb6af8fb034e4723518416b2e7d3aeeb4753"

tx_hashes
string[]

Comma-separated list of transaction hashes to filter by

Example:

"0xbe667b06979c46e186cebb4ad2c6fb6af8fb034e4723518416b2e7d3aeeb4753,0xabc123"

source_networks
string[]
Example:

"eth,solana"

destination_networks
string[]
Example:

"eth,solana"

network
string

Only find transfers on one specific network

Example:

"cosmoshub-4"

address
string

Only find transfers on one specific address

Example:

"C6RarBbo5zxMzFiVhYAvbGUWiJGuVsSczawdXdGzeEoj"

addresses
string

Only find transfers involving this specific address as sender and reciever

Example:

"C6RarBbo5zxMzFiVhYAvbGUWiJGuVsSczawdXdGzeEoj,C6RarBbo5zxMzFiVhYAvbGUWiJGuVsSczawdXdGzeEoj"

search_string
string
Example:

"e.g. partial address"

status
enum<string>[]

Current status(es) of the transfer, comma-separated (e.g. 'SUCCEEDED,FAILED')

Available options:
SUCCEEDED,
PENDING,
ERROR_ON_DESTINATION,
TIMEOUT
Example:

"SUCCEEDED,FAILED"

bridges
string[]

Bridges or networks used for the transfer

Example:

"ibc,cctp"

token_symbols
string[]

Token symbols involved in the transfer

Example:

"USDC,DAI"

group_ids
string[]

Limit workspace address entries to those belonging to these group IDs (comma-separated UUIDs)

Example:

"uuid1,uuid2"

min_usd
number

Minimum USD amount (decimal). Converted to number.

Example:

"100.50"

max_usd
number

Maximum USD amount (decimal). Converted to number.

Example:

"1000"

categories
string[]

Comma-separated category names to filter by (workspace-specific enrichment). Requires workspace authentication.

Example:

"defi,exchange"

start_time
string<date-time>

Start time (ISO 8601). Converted to Date.

Example:

"2025-01-01T00:00:00Z"

end_time
string<date-time>

End time (ISO 8601). Converted to Date.

Example:

"2025-12-31T23:59:59Z"

internal_transfer_ids
string[]

Comma-separated category names. Only returns transfers that the authenticated workspace has labelled with one of these categories.

Example:

"Revenue,Payroll"

only_workspace
boolean
default:false

If true, only returns transfers that the authenticated workspace has labelled with a category. If false, returns all transfers regardless of whether they have a category. Also gates own-feed token whitelist filtering: with only_workspace=true, transfers hidden by the workspace token whitelist (or with no attached USD value) are excluded by default — see show_all to opt out per request. Note priced here means the transfer indexer attached a USD value at index time, which can differ from the token catalog's priced used on balances — a genuinely curated token whose transfer predates its pricing (backfill gaps, a newly-curated token, dust rounding to zero) can be hidden on the feed while still visible in balances. Recoverable via an explicit on-override or show_all=true. On Solana, only per-token overrides (pinning a specific mint) affect this feed — a symbol-level override (e.g. pinning "SPAM" workspace-wide) has no effect here, since the feed queries the raw mint address before it resolves to a symbol.

Example:

"true"

show_all
boolean
default:false

Only applies when only_workspace=true. Restores the unfiltered own-feed response exactly as it was before token whitelisting — every transfer is returned regardless of the workspace token whitelist, byte-for-byte identical to the pre-whitelisting response. A pure read-time view toggle; never mutates stored overrides.

scope
enum<string>
Available options:
INTERCHAIN,
INTRACHAIN,
ALL

Response

200 - application/json

List of token transfers that match the specified search term.

items
object[]
required
meta
object
required
Last modified on August 5, 2026