Skip to main content
GET
/
api
/
v1
/
developer
/
tokens
/
transfers
Transfers
curl --request GET \
  --url https://api.allium.so/api/v1/developer/tokens/transfers \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "block_slot": 123,
      "block_height": 123,
      "block_timestamp": "2023-11-07T05:31:56Z",
      "block_hash": "<string>",
      "txn_id": "<string>",
      "txn_index": 123,
      "instruction_index": 123,
      "inner_instruction_index": 123,
      "from_account": "<string>",
      "to_account": "<string>",
      "from_token_account": "<string>",
      "to_token_account": "<string>",
      "mint": "<string>",
      "value": 123,
      "decimals": 123,
      "signer": "<string>"
    }
  ],
  "cursor": "<string>"
}
Supported Chains

Authorizations

X-API-KEY
string
header
required

Query Parameters

chain
string
required

Chain to get transfers for.

address
string

Address to get transfers for.

cursor
string

Cursor to paginate results.

limit
integer
default:15

Limit the number of items in the response. Default is 15.

Required range: x <= 100
token
string

Exclude transfers for other tokens

transfer_type
enum<string>
default:any

Direction of the transfer. Defaults to 'any'. Can only be specified when using the address filter

Available options:
sent,
received,
any
min_timestamp
string

Exclude transfers before this time

max_timestamp
string

Exclude transfers after this time

direction
enum<string>
default:desc

Direction to sort by

Available options:
asc,
desc

Response

Successful Response

items
SolanaTransfer · object
required
cursor
string | null
required