Skip to main content
GET
/
trades
/
{tokenAddress}
/
{poolAddress}
Get Pool-Specific Trades
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
}

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

tokenAddress
string
required
poolAddress
string
required

Query Parameters

cursor
string

Cursor for pagination

showMeta
boolean

Set to 'true' to add metadata for from and to tokens

parseJupiter
boolean

Set to 'true' to combine all transfers within a Jupiter swap into a single transaction

hideArb
boolean

Set to 'true' to hide arbitrage or other transactions that don't match token parameters

sortDirection
enum<string>
default:DESC

Sort direction by descending (DESC) or ascending (ASC) order

Available options:
DESC,
ASC

Response

200 - application/json

Successful response

trades
object[]
nextCursor
integer
hasNextPage
boolean