curl --request GET \
--url https://data.solanatracker.io/trades/{tokenAddress}/{poolAddress} \
--header 'x-api-key: <api-key>'{
"trades": [
{
"tx": "<string>",
"amount": 123,
"priceUsd": 123,
"volume": 123,
"volumeSol": 123,
"type": "buy",
"wallet": "<string>",
"time": 123,
"program": "<string>",
"pools": [
"<string>"
]
}
],
"nextCursor": 123,
"hasNextPage": true
}Gets the latest trades for a specific token and pool pair
curl --request GET \
--url https://data.solanatracker.io/trades/{tokenAddress}/{poolAddress} \
--header 'x-api-key: <api-key>'{
"trades": [
{
"tx": "<string>",
"amount": 123,
"priceUsd": 123,
"volume": 123,
"volumeSol": 123,
"type": "buy",
"wallet": "<string>",
"time": 123,
"program": "<string>",
"pools": [
"<string>"
]
}
],
"nextCursor": 123,
"hasNextPage": true
}API Key for authentication
Cursor for pagination
Set to 'true' to add metadata for from and to tokens
Set to 'true' to combine all transfers within a Jupiter swap into a single transaction
Set to 'true' to hide arbitrage or other transactions that don't match token parameters
Sort direction by descending (DESC) or ascending (ASC) order
DESC, ASC Successful response
Was this page helpful?