* Try live endpoints on real data. No paid plan required ยท Free tier limits apply.
Get transfer data of a token
QUERY PARAMS
address
string
required
Solana token (mint) address
activity_type
array
Type of transfer data
from
string
Filter transfers sent from the given address(es). Comma-separated, max 5. Example: ?from=address1,address2
exclude_from
string
Filter transfers not sent from the given address(es). Comma-separated, max 5. Example: ?exclude_from=address1,address2
to
string
Filter transfers sent to the given address(es). Comma-separated, max 5. Example: ?to=address1,address2
exclude_to
string
Filter transfers not sent to the given address(es). Comma-separated, max 5. Example: ?exclude_to=address1,address2
amount
array
Filter by amount range for a specific token. Requires token. Example: ?amount[]=1&amount[]=2&token=So11111111111111111111111111111111111111112
Maximum allowed values: 2
from_time
number
Filter by time range (Unix timestamp in seconds). Example: ?from_time=1720153259&to_time=1720153276
to_time
number
Filter by time range (Unix timestamp in seconds). Example: ?from_time=1720153259&to_time=1720153276
exclude_amount_zero
boolean
Exclude transfers with zero amount
value
array
Filter by value range in USD. Example: ?value[]=1&value[]=10
Maximum allowed values: 2
page
number
Page number for pagination
page_size
number
Number of items per page
sort_by
string
Field to sort by
sort_order
string
Sort order
block_time
array
Deprecated โ use from_time/to_time instead. Block time range, Unix seconds, passed as an array. Example: ?block_time[]=1720153259&block_time[]=1720153276
Maximum allowed values: 2
RESPONSES
200
OK
Response Body (application/json)
success
boolean
Request status
block_id
number
Slot Number of activity
trans_id
string
Transaction Hash or Signature for activity
block_time
number
UnixTime of the slot
time
string
Time of the slot
activity_type
string
Type of transfer.
from_address
string
Transfer from an address
to_address
string
Transfer to an address
token_address
string
The address of the token transferring
token_decimals
number
Decimal of token address
amount
number
Raw amount. Divide by 10^token_decimals for the UI amount.
400
Bad Request
Response Body (application/json)
401
Authentication failed
Response Body (application/json)
429
Too Many Requests
Response Body (application/json)
500
Internal Server Error
Response Body (application/json)