Solana Tracker Public API
Public API for Solana Tracker data.
Token and pool data for all Pumpfun, Raydium, Meteora, Raydium CPMM, Moonshot and Orca tokens. Including Market Cap, Price, Liquidity, Chart data, price changes, stats, wallet trades and total value, last trades and more
You can now buy and manage your package directly on Solana Tracker.
Authentication
Solana Tracker: Include your API Key (available after subscription) in the “x-api-key” header with each API call. Base url: https://data.solanatracker.io
Subscription Plans and Limits
Plan | Price | Requests/Month | Rate Limit | Additional Features |
---|---|---|---|---|
Free | Free | 10,000 | 1/second | - |
Starter | €14.99/month | 50,000 | None | - |
Advanced | €50/month | 200,000 | None | - |
Pro | €200/month | 1,000,000 | None | - |
Premium | €397/month | 10,000,000 | None | Websocket access |
Business | €599/month | 25,000,000 | None | Websocket access |
Enterprise | €1499/month | 100,000,000 | None | Websocket access |
Enterprise Plus | Custom | Unlimited | None | Custom package |
Note: For Websocket access (Premium and above), email [email protected] to get access to this endpoint if you haven’t received an email yet.
Looking to try out the websocket or have questions about the packages before buying? Email: [email protected] and we can hop on a call.
Endpoints
Token Information
GET /tokens/{tokenAddress}
Retrieve all information for a specific token.
Response:
{
"token": {
"name": "Token Name",
"symbol": "SYMBOL",
"mint": "TokenAddress",
"uri": "URI",
"decimals": 9,
"image": "ImageURL",
"description": "Token description",
"extensions": {
"twitter": "TwitterURL",
"telegram": "TelegramURL"
},
"tags": ["Tag1", "Tag2"],
"creator": {
"name": "Creator Name",
"site": "CreatorWebsite"
},
"hasFileMetaData": true
},
"pools": [
{
"liquidity": {
"quote": 69528.489316466,
"usd": 12452942.564826211
},
"price": {
"quote": 1,
"usd": 179.17998615931597
},
"tokenSupply": 3030626199.347329,
"lpBurn": 0,
"tokenAddress": "So11111111111111111111111111111111111111112",
"marketCap": {
"quote": 16927915.73839435,
"usd": 3031884692.2295995
},
"market": "orca",
"quoteToken": "So11111111111111111111111111111111111111112",
"decimals": 6,
"security": {
"freezeAuthority": "7dGbd2QZcCKcTndnHcTL8q7SMVXAkp688NTQYwrRCrar",
"mintAuthority": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG"
},
"lastUpdated": 1730206992965,
"createdAt": 1721811041043,
"poolId": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE"
}
],
"events": {
"1m": {
"priceChangePercentage": -0.02395367583072253
},
"5m": {
"priceChangePercentage": -0.139517803539473
},
"15m": {
"priceChangePercentage": -0.13743076152318937
},
"30m": {
"priceChangePercentage": -0.3174663455055821
},
"1h": {
"priceChangePercentage": -0.7950502487407005
},
"2h": {
"priceChangePercentage": -0.976698965183501
},
"3h": {
"priceChangePercentage": -0.9908067493344578
},
"4h": {
"priceChangePercentage": -0.9937799084527167
},
"5h": {
"priceChangePercentage": -0.509505344816874
},
"6h": {
"priceChangePercentage": -0.4934817877466533
},
"12h": {
"priceChangePercentage": 0.411093000902713
},
"24h": {
"priceChangePercentage": 0.9930426419943744
}
},
"risk": {
"rugged": false,
"risks": [
{
"name": "No social media",
"description": "This token has no social media links",
"level": "warning",
"score": 2000
}
],
"score": 2
},
"buys": 0,
"sells": 0,
"txns": 0
}
GET /tokens/{tokenAddress}
/holders
Get the top 100 holders for a specific token.
Response:
{
"total": 1976,
"accounts": [
{
"wallet": "WalletAddress",
"amount": 29762511.787972,
"value": {
"quote": 731.5710758766651,
"usd": 106189.02499701138
},
"percentage": 2.9762545119795907
},
...
]
}
Do you want to receive all token holders? Use this example using your RPC.
const tokenAccounts = await connection.getParsedProgramAccounts(
new PublicKey("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"),
{
filters: [{ dataSize: 165 }, { memcmp: { offset: 0, bytes: mintAddress } }],
}
);
const accounts = tokenAccounts.map((account) => ({
wallet: account.account.data.parsed.info.owner,
amount: account.account.data.parsed.info.tokenAmount.uiAmount,
}));
GET /tokens/{tokenAddress}/ath
Retrieve the all time high price of a token (since data api started recording)
Response:
{
"highest_price": 0.002399892080590551
}
GET /search
The /search
endpoint provides a flexible search interface for pools and tokens with support for multiple filtering criteria and pagination.
- Method: GET
- Path:
/search
Query Parameters
Search & Pagination
Parameter | Type | Default | Description |
---|---|---|---|
query | string | required | Search term for token symbol, name, or address |
page | integer | 1 | Page number for pagination |
limit | integer | 100 | Number of results per page |
Liquidity & Market Cap Filters
Parameter | Type | Description |
---|---|---|
minLiquidity | float | Minimum liquidity in USD |
maxLiquidity | float | Maximum liquidity in USD |
minMarketCap | float | Minimum market cap in USD |
maxMarketCap | float | Maximum market cap in USD |
Transaction Filters
Parameter | Type | Description |
---|---|---|
minBuys | integer | Minimum number of buy transactions |
maxBuys | integer | Maximum number of buy transactions |
minSells | integer | Minimum number of sell transactions |
maxSells | integer | Maximum number of sell transactions |
minTotalTransactions | integer | Minimum total number of transactions |
maxTotalTransactions | integer | Maximum total number of transactions |
Token Characteristics
Parameter | Type | Description |
---|---|---|
lpBurn | integer | LP token burn percentage |
market | string | Market identifier |
freezeAuthority | string | Freeze authority address |
mintAuthority | string | Mint authority address |
deployer | string | Deployer address |
Additional Options
Parameter | Type | Description |
---|---|---|
showPriceChanges | boolean | Include price change data in response |
Response Format
{
"status": "success",
"data": [
{
"id": "EHHaCsCoXb2BFGbzfANpS1VXQ7GXnQXbzxuwxyZUpump_EHHaCsCoXb2BFGbzfANpS1VXQ7GXnQXbzxuwxyZUpump",
"name": "Rana CHAN",
"symbol": "Rana",
"mint": "EHHaCsCoXb2BFGbzfANpS1VXQ7GXnQXbzxuwxyZUpump",
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fipfs.io%2Fipfs%2FQmU69YQnurKMELNaBosGiK1HvWRDbfy5SeVoe1mpT5rWXA",
"decimals": 6,
"quoteToken": "So11111111111111111111111111111111111111112",
"hasSocials": true,
"poolAddress": "EHHaCsCoXb2BFGbzfANpS1VXQ7GXnQXbzxuwxyZUpump",
"liquidityUsd": 41955.42330534584,
"marketCapUsd": 74947.16560440486,
"lpBurn": 100,
"market": "pumpfun",
"freezeAuthority": null,
"mintAuthority": null,
"deployer": "AbxWePY9XW9MxLbYmdAStiDhoyxZfD3cKG8Rv4NLf1X5",
"createdAt": 1730173895419,
"status": "graduating",
"lastUpdated": 1730175342540,
"buys": 402,
"sells": 243,
"totalTransactions": 645
}
]
}
GET /tokens/latest
Retrieve the latest 100 tokens.
Response:
[
{
"token": {
"name": "Jupiter Perps LP",
"symbol": "JLP",
"mint": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
"uri": "https://static.jup.ag/jlp/metadata.json",
"decimals": 6,
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fstatic.jup.ag%2Fjlp%2Ficon.png",
"description": "JLP is the liquidity provider token for Jupiter Labs Perpetual.",
"hasFileMetaData": true
},
"pools": [...],
"events": {...},
"risk": {...}
},
...
]
GET /tokens/trending
Get the top 100 trending tokens based on transaction volume in the past hour.
Response:
[
{
"token": {
"name": "Jupiter Perps LP",
"symbol": "JLP",
"mint": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
"uri": "https://static.jup.ag/jlp/metadata.json",
"decimals": 6,
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fstatic.jup.ag%2Fjlp%2Ficon.png",
"description": "JLP is the liquidity provider token for Jupiter Labs Perpetual.",
"hasFileMetaData": true
},
"pools": [...],
"events": {...},
"risk": {...}
},
...
]
GET /tokens/trending/:timeframe
GET /tokens/trending/:timeframe
Returns trending tokens for a specific time interval.
Available Timeframes
5m
: 5 minutes15m
: 15 minutes30m
: 30 minutes1h
: 1 hour2h
: 2 hours3h
: 3 hours4h
: 4 hours5h
: 5 hours6h
: 6 hours12h
: 12 hours24h
: 24 hours
Response Format
[
{
"token": {
"name": "Jupiter Perps LP",
"symbol": "JLP",
"mint": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
"uri": "https://static.jup.ag/jlp/metadata.json",
"decimals": 6,
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fstatic.jup.ag%2Fjlp%2Ficon.png",
"description": "JLP is the liquidity provider token for Jupiter Labs Perpetual.",
"hasFileMetaData": true
},
"pools": [...],
"events": {...},
"risk": {...}
},
...
]
Examples
Get trending tokens for the last hour (default):
GET /tokens/trending
Get trending tokens for the last 15 minutes:
GET /tokens/trending/15m
Get trending tokens for the last 24 hours:
GET /tokens/trending/24h
GET /tokens/volume
Retrieve the top 100 tokens sorted by highest volume.
Response:
[
{
"token": {
"name": "Jupiter Perps LP",
"symbol": "JLP",
"mint": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
"uri": "https://static.jup.ag/jlp/metadata.json",
"decimals": 6,
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fstatic.jup.ag%2Fjlp%2Ficon.png",
"description": "JLP is the liquidity provider token for Jupiter Labs Perpetual.",
"hasFileMetaData": true
},
"pools": [...],
"events": {...},
"risk": {...}
},
...
]
GET /tokens/multi/all
Get an overview of latest, graduating, and graduated tokens (Pumpvision / Photon Memescope style).
Response:
{
"latest": [...],
"graduating": [...],
"graduated": [...]
}
GET /tokens/multi/graduated
Overview of all graduated pumpfun/moonshot tokens (Pumpvision / Photon Memescope style).
Response:
[{
"token": {...},
"pools": {...},
"events": {...},
}]
Price Information
GET /price
Get price information for a single token.
Query Parameters:
token
(required): The token addresspriceChanges
(optional): Returns price change percentages for the token up to 24 hours ago
Response:
{
"price": 1.23,
"liquidity": 1000000,
"marketCap": 50000000,
"lastUpdated": 1628097600000
}
GET /price/history
Get historic price information for a single token.
Query Parameters:
token
(required): The token address
Response:
{
"current": 0.00153420295896641,
"3d": 0.0003172284163334442,
"5d": 0.00030182128340039925,
"7d": 0.0003772164702056164,
"14d": 0.0003333105740474755,
"30d": 0.0008621030248959815
}
POST /price
Similar to GET /price, but accepts token address in the request body.
Request Body:
{
"token": "So11111111111111111111111111111111111111112"
}
Response: Same as GET /price
GET /price/multi
Get price information for multiple tokens (up to 100).
Query Parameters:
tokens
(required): Comma-separated list of token addressespriceChanges
(optional): Returns price change percentages for the tokens up to 24 hours ago
Response:
{
"So11111111111111111111111111111111111111112": {
"price": 1.23,
"liquidity": 1000000,
"marketCap": 50000000,
"lastUpdated": 1628097600000
},
"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R": {
"price": 0.45,
"liquidity": 500000,
"marketCap": 25000000,
"lastUpdated": 1628097600000
}
}
POST /price/multi
Similar to GET /price/multi, but accepts an array of token addresses in the request body.
Request Body:
{
"tokens": [
"So11111111111111111111111111111111111111112",
"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R"
]
}
Response: Same as GET /price/multi
Wallet Information
GET /wallet/{owner}
Get all tokens in a wallet with current value in USD.
Response:
{
"tokens": [
{
"token": {
"name": "Wrapped SOL",
"symbol": "SOL",
"mint": "So11111111111111111111111111111111111111112",
"uri": "",
"decimals": 9,
"image": "https://image.solanatracker.io/proxy?url=https%3A%2F%2Fcoin-images.coingecko.com%2Fcoins%2Fimages%2F21629%2Flarge%2Fsolana.jpg%3F1696520989",
"hasFileMetaData": true
},
"pools": [...],
"events": {...},
"risk": {...},
"balance": 0.775167121,
"value": 112.31297732160377
}
],
"total": 228.41656975961473,
"totalSol": 1.5750283296373857,
"timestamp": "2024-08-15 12:49:06"
}
GET /wallet/{owner}
/trades
Get the latest trades of a wallet.
Query Parameters:
cursor
(optional): Cursor for pagination
Response:
{
"trades": [
{
"tx": "Transaction Signature here",
"from": {
"address": "So11111111111111111111111111111111111111112",
"amount": 0.00009999999747378752,
"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
}
},
"to": {
"address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
"amount": 0.00815899996086955,
"token": {
"name": "Raydium",
"symbol": "RAY",
"image": "https://image.solanatracker.io/proxy?url=https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png",
"decimals": 6
}
},
"price": {
"usd": 1.7136074522202307,
"sol": ""
},
"volume": {
"usd": 0.014018403988365319,
"sol": 0.00009999999747378752
},
"wallet": "WALLET_ADDRESS",
"program": "raydium",
"time": 1722759119596
}
],
"nextCursor": 1722759119596,
"hasNextPage": true
}
Trade Information
GET /trades/{tokenAddress}
Get the latest trades for a token across all pools.
GET /trades/{tokenAddress}
/{poolAddress}
Get the latest trades for a specific token and pool pair.
GET /trades/{tokenAddress}
/{poolAddress}
/{owner}
Get the latest trades for a specific token, pool, and wallet address.
GET /trades/{tokenAddress}
/by-wallet/{owner}
Get the latest trades for a specific token and wallet address.
Query Parameters for all trade endpoints:
cursor
(optional): Cursor for paginationshowMeta
(optional): Set to ‘true’ to add metadata for from and to tokensparseJupiter
(optional): Set to ‘true’ to combine all transfers within a Jupiter swap into a single transaction. By default, each transfer is shown separately.hideArb
(optional): Set to ‘true’ to hide arbitrage or other transactions that don’t have both the ‘from’ and ‘to’ token addresses matching the token parameter.
Response for all trade endpoints:
{
"trades": [
{
"tx": "Transaction Signature",
"amount": 1000,
"priceUsd": 0.1,
"volume": 100,
"type": "buy",
"wallet": "WalletAddress",
"time": 1723726185254,
"program": "jupiter"
}
],
"nextCursor": 1723726185254,
"hasNextPage": true
}
Chart Data
GET /chart/{token}
GET /chart/{token}
/{pool}
Get OLCVH (Open, Low, Close, Volume, High) data for charts.
Available Intervals
Shorthand | Interval |
---|---|
1s | 1 SECOND |
5s | 5 SECOND |
15s | 15 SECOND |
1m | 1 MINUTE |
3m | 3 MINUTE |
5m | 5 MINUTE |
15m | 15 MINUTE |
30m | 30 MINUTE |
1h | 1 HOUR |
2h | 2 HOUR |
4h | 4 HOUR |
6h | 6 HOUR |
8h | 8 HOUR |
12h | 12 HOUR |
1d | 1 DAY |
3d | 3 DAY |
1w | 1 WEEK |
1mn | 1 MONTH |
Note: The shorthand “1mn” is used for 1 month to avoid confusion with “1m” (1 minute).
Query Parameters:
type
(optional): Time interval (e.g., “1s”, “1m”, “1h”, “1d”)time_from
(optional): Start time (Unix timestamp in seconds)time_to
(optional): End time (Unix timestamp in seconds)marketCap
(optional): Return chart for market cap instead of pricing
Response:
{
"oclhv": [
{
"open": 0.011223689525154462,
"close": 0.011223689525154462,
"low": 0.011223689525154462,
"high": 0.011223689525154462,
"volume": 683.184501136,
"time": 1722514489
},
{
"open": 0.011223689525154462,
"close": 0.011257053686384555,
"low": 0.011257053686384555,
"high": 0.011257053686384555,
"volume": 12788.70421942799,
"time": 1722514771
}
]
}
Profit and Loss (PnL) Data
GET /pnl/{wallet}
Get Profit and Loss data for all positions of a wallet.
Query Parameters:
showHistoricPnL
(optional): Adds PnL data for 1d, 7d and 30d intervals (BETA)
Response:
{
"tokens": {
"85tgA28eJCUwpTGkREdocDtkHCgZZySyrdv35w6opump": {
"holding": 34909.416624,
"held": 402288.62697,
"sold": 367379.210346,
"realized": 48.24649003,
"unrealized": 4665.26723313,
"total": 4713.51372317,
"total_sold": 1195.95048046,
"total_invested": 1256.76208526,
"average_buy_amount": 38.08369955,
"current_value": 4774.3253279697965,
"cost_basis": 0.00312403
},
"Fwjk3SQ4zpg68x9mQLKJm5W6DkisjFGn76jHvi7vb4wE": {
"holding": 34909.416624,
"held": 402288.62697,
"sold": 367379.210346,
"realized": 48.24649003,
"unrealized": 4665.26723313,
"total": 4713.51372317,
"total_sold": 1195.95048046,
"total_invested": 1256.76208526,
"average_buy_amount": 38.08369955,
"current_value": 4774.3253279697965,
"cost_basis": 0.00312403
}
},
"summary": {
"realized": 2418.42956164,
"unrealized": -634.74038817,
"total": 1783.68917347,
"totalInvested": 103020.70911717,
"averageBuyAmount": 1535.12073025,
"totalWins": 222,
"totalLosses": 295,
"winPercentage": 34.8,
"lossPercentage": 46.24
}
}
GET /first-buyers/{token}
Retrieve the first 100 buyers of a token (since API started recording data) with Profit and Loss data for each wallet.
Response:
[
{
"wallet": "pumpZuAcJZwUwNmP84KZDNUMVYvCYdwSiUhYjyAhm7v",
"first_buy_time": 1721518521841,
"last_transaction_time": 1721519113069,
"held": 289393486.26179785,
"sold": 289393486.26179785,
"holding": 0,
"realized": 997.3821375,
"unrealized": 0,
"total": 997.3821375,
"total_invested": 1425.80360732
},
{
"wallet": "9345npSvXdmiD7SszgLuWvPAJ8edUR1F4bnNS5dUiFmU",
"first_buy_time": 1721518521860,
"last_transaction_time": 1721518582164,
"held": 138858105.00812,
"sold": 138858105.00812,
"holding": 0,
"realized": 984.56781931,
"unrealized": 0,
"total": 984.56781931,
"total_invested": 967.85402712
}
]
GET /pnl/{wallet}
/{token}
Get Profit and Loss data for a specific token in a wallet.
Response:
{
"holding": 34909.416624,
"held": 402288.62697,
"sold": 367379.210346,
"realized": 48.24649003,
"unrealized": 4665.26723313,
"total": 4713.51372317,
"total_sold": 1195.95048046,
"total_invested": 1256.76208526,
"average_buy_amount": 38.08369955,
"current_value": 4774.3253279697965,
"cost_basis": 0.00312403
}
Top Traders Information
GET /top-traders/all
GET /top-traders/all/:page
Get the most profitable traders across all tokens, with optional pagination.
Query Parameters:
Parameter | Type | Default | Description |
---|---|---|---|
expandPnl | boolean | false | Include detailed PnL data for each token if true |
sortBy | string | ”total” | Sort results by metric (“total” or “winPercentage”) |
Response:
{
"wallets": [
{
"wallet": "WalletAddress",
"summary": {
"realized": 2418.42956164,
"unrealized": -634.74038817,
"total": 1783.68917347,
"totalInvested": 103020.70911717,
"totalWins": 222,
"totalLosses": 295,
"winPercentage": 34.8,
"lossPercentage": 46.24,
"neutralPercentage": 18.96
}
}
],
"hasNext": true
}
If expandPnl=true
, each wallet entry will include an additional tokens
object containing detailed PnL data for each token:
{
"wallets": [
{
"wallet": "WalletAddress",
"tokens": {
"TokenAddress": {
"holding": 0,
"held": 24608227.322611,
"sold": 24608227.322611,
"realized": 312.48840947,
"unrealized": 0,
"total": 312.48840947,
"total_invested": 153.64456248,
"meta": {
"name": "Token Name",
"symbol": "SYMBOL",
"image": "ImageURL",
"decimals": 9
}
}
},
"summary": {
"realized": 2418.42956164,
"unrealized": -634.74038817,
"total": 1783.68917347,
"totalInvested": 103020.70911717,
"totalWins": 222,
"totalLosses": 295,
"winPercentage": 34.8,
"lossPercentage": 46.24,
"neutralPercentage": 18.96
}
}
],
"hasNext": true
}
GET /top-traders/{token}
Get top 100 traders by PnL for a token.
Response:
[
{
"wallet": "234JMcei3WcQWaMjyxVEcHZsGvz1m8A8hTtEnCJCYWRo",
"held": 50819020.99990307,
"sold": 17890408.81074299,
"holding": 32928612.18916008,
"realized": 1692.12014818,
"unrealized": 866.69739102,
"total": 2558.81753919,
"total_invested": 1651.25276018
},
{
"wallet": "BUyvzQp1v2kJ6sKR6qunhdSxypDUTEZS8dsTpQYkw6wQ",
"held": 7131355.76925302,
"sold": 7131355.76925302,
"holding": 0,
"realized": 761.7829419,
"unrealized": 0,
"total": 761.7829419,
"total_invested": 343.2357682
}
]
Response Fields:
Field | Type | Description |
---|---|---|
held | number | Total amount of tokens ever held |
sold | number | Total amount of tokens sold |
holding | number | Current token balance |
realized | number | Realized profit/loss in USD |
unrealized | number | Unrealized profit/loss in USD based on current price |
total | number | Total profit/loss (realized + unrealized) |
total_invested | number | Total amount invested in USD |
Other Endpoints
GET /stats/{token}
/{pool}
Get detailed stats for a token-pool pair over various time intervals.
Response:
{
"1m": {
"buyers": 7,
"sellers": 9,
"volume": {
"buys": 642.307406481682,
"sells": 3071.093119714688,
"total": 3713.4005261963716
},
"transactions": 102,
"buys": 90,
"sells": 12,
"wallets": 14,
"price": 0.0026899499819631667,
"priceChangePercentage": 0.017543536395684036
},
"5m": {...},
"15m": {...},
"30m": {...},
"1h": {...},
"2h": {...},
"3h": {...},
"4h": {...},
"5h": { {...},
"6h": {...},
"12h": {...},
"24h": {...}
}
GET /stats/{token}
Get detailed stats for a token over various time intervals.
Response:
{
"1m": {
"buyers": 7,
"sellers": 9,
"volume": {
"buys": 642.307406481682,
"sells": 3071.093119714688,
"total": 3713.4005261963716
},
"transactions": 102,
"buys": 90,
"sells": 12,
"wallets": 14,
"price": 0.0026899499819631667,
"priceChangePercentage": 0.017543536395684036
},
"5m": {...},
"15m": {...},
"30m": {...},
"1h": {...},
"2h": {...},
"3h": {...},
"4h": {...},
"5h": { {...},
"6h": {...},
"12h": {...},
"24h": {...}
}
Pagination
All trade endpoints use cursor-based pagination. Use the nextCursor
value from the response as the cursor
parameter in subsequent requests until hasNextPage
is false.
Example usage:
GET /trades/{tokenAddress}
GET /trades/{tokenAddress}?cursor=1723726185254
The cursor
is based on the time
field of the trades.