For the complete documentation index, see llms.txt. Markdown versions of the documentation pages are available from that index.
solscan logo
Register NowRegister Now

account transfer

* Try live endpoints on real data. No paid plan required ยท Free tier limits apply.

get

https://pro-api.solscan.io/playground/account/transfer

Get transfer data of an account

QUERY PARAMS

address

string

required

Solana wallet address

activity_type

array

Type of transfer

token_account

string

Filter transfers for a specific token account in the wallet

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

token

string

Filter by token address. For native SOL transfers, use So11111111111111111111111111111111111111111. You can filter by multiple addresses by separating them with commas. Example: ?token=address1,address2. Maximum 5 addresses

amount

array

Filter by amount range for a specific 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

flow

string

Filter by transfer direction: in or out

value

array

Filter by value range (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

Filter by block time range (Unix timestamp in seconds). 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

block_time

number

Unix timestamp of the slot

time

string

Time of the slot

activity_type

string

Type of transfer

from_address

string

Source address

from_token_account

string

Source token account address

to_address

string

Destination address

to_token_account

string

Destination token account address

token_address

string

Token address

token_decimals

number

Decimal of token address

amount

number

Transfer amount (divide by 10^token_decimals for actual amount)

flow

string

Transfer direction

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)

icon

Javascript

icon

Python

icon

Shell

icon

Go

icon

C#

Authorization

Free API key

Response

Click Try It! to start a request and see the response here!

Response Examples