Authorizations
API Key for authentication
Path Parameters
Query Parameters
Cursor for pagination
curl --request GET \
--url https://data.solanatracker.io/wallet/{owner}/trades \
--header 'x-api-key: <api-key>'
{
"trades": [
{
"tx": "3wpLJJVCb7Z5ANgtqqkJxkmhEh1y5yvE4GkPESuAtjQWbqFFd2PAzhouVh3Yu4EwTWYXtytptjFy8DHU3L8s6fMg",
"from": {
"address": "So11111111111111111111111111111111111111112",
"amount": 0.00009915,
"token": {
"name": "Wrapped SOL",
"symbol": "SOL",
"image": "https://image.solanatracker.io/proxy?url=https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
"decimals": 9
},
"priceUsd": 125.35988901852102
},
"to": {
"address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
"amount": 0.026196,
"token": {
"name": "dogwifhat",
"symbol": "$WIF",
"image": "https://image.solanatracker.io/proxy?url=https://bafkreibk3covs5ltyqxa272uodhculbr6kea6betidfwy3ajsav2vjzyum.ipfs.nftstorage.link",
"decimals": 6
},
"priceUsd": 0.47447827898100314
},
"price": {
"usd": 0.47447827898100314,
"sol": "0.003784928996793404"
},
"volume": {
"usd": 0.012429432996186358,
"sol": 0.00009915
},
"wallet": "FDnJSXgkjxLy74tjKbAT519nh4p1SRXazR7YAgFsGBQb",
"program": "jupiter",
"time": 1742287684000
}
]
}
Gets the latest trades of a wallet
curl --request GET \
--url https://data.solanatracker.io/wallet/{owner}/trades \
--header 'x-api-key: <api-key>'
{
"trades": [
{
"tx": "3wpLJJVCb7Z5ANgtqqkJxkmhEh1y5yvE4GkPESuAtjQWbqFFd2PAzhouVh3Yu4EwTWYXtytptjFy8DHU3L8s6fMg",
"from": {
"address": "So11111111111111111111111111111111111111112",
"amount": 0.00009915,
"token": {
"name": "Wrapped SOL",
"symbol": "SOL",
"image": "https://image.solanatracker.io/proxy?url=https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/So11111111111111111111111111111111111111112/logo.png",
"decimals": 9
},
"priceUsd": 125.35988901852102
},
"to": {
"address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
"amount": 0.026196,
"token": {
"name": "dogwifhat",
"symbol": "$WIF",
"image": "https://image.solanatracker.io/proxy?url=https://bafkreibk3covs5ltyqxa272uodhculbr6kea6betidfwy3ajsav2vjzyum.ipfs.nftstorage.link",
"decimals": 6
},
"priceUsd": 0.47447827898100314
},
"price": {
"usd": 0.47447827898100314,
"sol": "0.003784928996793404"
},
"volume": {
"usd": 0.012429432996186358,
"sol": 0.00009915
},
"wallet": "FDnJSXgkjxLy74tjKbAT519nh4p1SRXazR7YAgFsGBQb",
"program": "jupiter",
"time": 1742287684000
}
]
}
API Key for authentication
Cursor for pagination
Was this page helpful?