Skip to main content
GET
Get Transaction Transfers
Required Parameters: Both transaction_hash and block_number must be provided — the block number pins the transaction so its transfers can be located efficiently.
Returns every transfer that happened inside one transaction:
  • Token transfers — ERC-20 and other priced token movements, with the token’s asset symbol and contract_address.
  • Native internal transfers — value moved by internal calls in the chain’s native asset (ETH, POL, BNB, AVAX, xDAI). These rows have contract_address: null.
Each row also carries the transaction context: wallet_selection (the transaction sender), transaction_fee, and transaction_fee_asset. Supported chains: ethereum, polygon, base, arbitrum, optimism, binance, avalanche, gnosis. Gnosis has no internal-transfer feed, so it returns token transfers only.

Example Requests

Get all transfers for a transaction:
Another chain — same shape, just change the path segment:
Paginate a transfer-heavy transaction (results are deterministically ordered, so pages never overlap or drift):

Pagination

limit (1–1000, default 100) and offset (default 0) page through the results; count in the response is the number of rows in the current page — keep advancing offset by limit until count < limit.

Authorizations

apikey
string
header
required

API key for authentication

Path Parameters

chain
enum<string>
required

The blockchain network to query

Available options:
ethereum,
polygon,
base,
arbitrum,
optimism,
binance,
avalanche,
gnosis
Example:

"ethereum"

Query Parameters

transaction_hash
string
required

Transaction hash (0x-prefixed, 64 hex chars)

Maximum string length: 66
Pattern: ^0x[a-fA-F0-9]{64}$
Example:

"0x62b16b03e641e3a14d8aa6e6c1f740eb530ff9a34306cf5ece3f7c25f7083524"

block_number
integer
required

Block number the transaction is in

Required range: x >= 0
Example:

23463206

limit
integer
default:100

Maximum number of results to return (1-1000)

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of results to skip

Required range: x >= 0

Response

Transfers for the transaction

query
object
required

Echo of the filters applied to the request

offset
integer
required

Number of results skipped

limit
integer
required

Maximum number of results requested

count
integer
required

Number of results returned in this page

result
object[]
required