Skip to main content
GET
/
trades
/
{tokenAddress}
/
{poolAddress}
/
{owner}
Get User-Specific Pool Trades
curl --request GET \
  --url https://data.solanatracker.io/trades/{tokenAddress}/{poolAddress}/{owner} \
  --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
}

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

tokenAddress
string
required
poolAddress
string
required
owner
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
⌘I