Skip to main content
POST
/
api
/
solscan
/
accounts
/
transactions
/solscan/accounts/transactions
curl --request POST \
  --url https://api.anysite.io/api/solscan/accounts/transactions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "count": 2,
  "timeout": 300,
  "sort_order": "desc"
}
'
[
  {
    "signature": "<string>",
    "@type": "SolscanAccountTransaction",
    "slot": 123,
    "block_time": 123,
    "fee": 123,
    "status": "<string>",
    "signers": [],
    "program_ids": [],
    "tags": [],
    "instructions": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Solana account or token mint address (base58)

Example:

"5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9"

count
integer
required

Max number of transactions to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort_order
enum<string>
default:desc

Order transactions by time

Available options:
desc,
asc

Response

Successful Response

signature
string
required
@type
string
default:SolscanAccountTransaction
slot
integer | null
block_time
integer | null
fee
integer | null
status
string | null
signers
string[]
program_ids
string[]
tags
string[]
instructions
object[]