Token - Trade Data (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/token/trade-data/single \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/token/trade-data/single"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/token/trade-data/single', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"address": "So11111111111111111111111111111111111111112",
"holder": 3498897,
"market": 189737,
"last_trade_unix_time": 1755058915,
"last_trade_human_time": "2025-08-13T04:21:55",
"price": 199.57308084999997,
"history_1m_price": 200.0657028658876,
"price_change_1m_percent": -0.246230117821773,
"history_5m_price": 199.04185542048768,
"price_change_5m_percent": 0.2668913171001369,
"history_30m_price": 198.08683911027157,
"price_change_30m_percent": 0.750298074523282,
"history_1h_price": 198.6762767605752,
"price_change_1h_percent": 0.4513896193582795,
"history_2h_price": 194.219974488669,
"price_change_2h_percent": 2.75620794175486,
"history_4h_price": 191.95599557869642,
"price_change_4h_percent": 3.968141369244581,
"history_6h_price": 192.36297986748752,
"price_change_6h_percent": 3.748174928190051,
"history_8h_price": 190.83016849547622,
"price_change_8h_percent": 4.581514769626696,
"history_12h_price": 181.29476421508093,
"price_change_12h_percent": 10.082098462167592,
"history_24h_price": 175.69158133703775,
"price_change_24h_percent": 13.592853642286466,
"unique_wallet_1m": 10535,
"unique_wallet_history_1m": 10512,
"unique_wallet_1m_change_percent": 0.21879756468797565,
"unique_wallet_5m": 30484,
"unique_wallet_history_5m": 31329,
"unique_wallet_5m_change_percent": -2.697181525104536,
"unique_wallet_30m": 84841,
"unique_wallet_history_30m": 91310,
"unique_wallet_30m_change_percent": -7.084656664111269,
"unique_wallet_1h": 141012,
"unique_wallet_history_1h": 139362,
"unique_wallet_1h_change_percent": 1.1839669350325053,
"unique_wallet_2h": 229096,
"unique_wallet_history_2h": 256234,
"unique_wallet_2h_change_percent": -10.59110032236159,
"unique_wallet_4h": 398071,
"unique_wallet_history_4h": 319789,
"unique_wallet_4h_change_percent": 24.47926601602932,
"unique_wallet_8h": 616389,
"unique_wallet_history_8h": 598174,
"unique_wallet_8h_change_percent": 3.0451005894605916,
"unique_wallet_24h": 1312446,
"unique_wallet_history_24h": 1595218,
"unique_wallet_24h_change_percent": -17.72622926772391,
"trade_1m": 25063,
"trade_history_1m": 25516,
"trade_1m_change_percent": -1.7753566389716258,
"sell_1m": 14783,
"sell_history_1m": 14281,
"sell_1m_change_percent": 3.5151600028009247,
"buy_1m": 10280,
"buy_history_1m": 11235,
"buy_1m_change_percent": -8.500222518914107,
"volume_1m": 28014.353663877002,
"volume_1m_usd": 5594914.331353994,
"volume_history_1m": 30288.275618175,
"volume_history_1m_usd": 6053381.114696328,
"volume_1m_change_percent": -7.507597933153688,
"volume_buy_1m": 13316.670472043998,
"volume_buy_1m_usd": 2659745.040809564,
"volume_buy_history_1m": 15438.603833983001,
"volume_buy_history_1m_usd": 3085880.865821625,
"volume_buy_1m_change_percent": -13.74433455743107,
"volume_sell_1m": 14697.683191833004,
"volume_sell_1m_usd": 2935169.29054443,
"volume_sell_history_1m": 14849.671784191998,
"volume_sell_history_1m_usd": 2967500.248874703,
"volume_sell_1m_change_percent": -1.0235148262387246,
"trade_5m": 125589,
"trade_history_5m": 133103,
"trade_5m_change_percent": -5.64525217312908,
"sell_5m": 72259,
"sell_history_5m": 75307,
"sell_5m_change_percent": -4.047432509594062,
"buy_5m": 53330,
"buy_history_5m": 57796,
"buy_5m_change_percent": -7.727178351443007,
"volume_5m": 138839.93120513,
"volume_5m_usd": 27706918.700082216,
"volume_history_5m": 168486.357245985,
"volume_history_5m_usd": 33501205.892243676,
"volume_5m_change_percent": -17.595742780272776,
"volume_buy_5m": 71016.083050991,
"volume_buy_5m_usd": 14172671.643556839,
"volume_buy_history_5m": 86636.89562773002,
"volume_buy_history_5m_usd": 17227812.75124113,
"volume_buy_5m_change_percent": -18.030208104247027,
"volume_sell_5m": 67823.84815413899,
"volume_sell_5m_usd": 13534247.056525378,
"volume_sell_history_5m": 81849.46161825501,
"volume_sell_history_5m_usd": 16273393.141002549,
"volume_sell_5m_change_percent": -17.13586526632432,
"trade_30m": 742916,
"trade_history_30m": 726567,
"trade_30m_change_percent": 2.2501710096935317,
"sell_30m": 429567,
"sell_history_30m": 423206,
"sell_30m_change_percent": 1.5030505238583574,
"buy_30m": 313349,
"buy_history_30m": 303361,
"buy_30m_change_percent": 3.2924469526405833,
"volume_30m": 999257.254695175,
"volume_30m_usd": 198262635.32251042,
"volume_history_30m": 1007682.2970747652,
"volume_history_30m_usd": 200156959.86425337,
"volume_30m_change_percent": -0.8360812136967729,
"volume_buy_30m": 496626.18523781083,
"volume_buy_30m_usd": 98550796.11048704,
"volume_buy_history_30m": 479675.0794320691,
"volume_buy_history_30m_usd": 95280522.80842383,
"volume_buy_30m_change_percent": 3.5338725175824632,
"volume_sell_30m": 502631.0694573641,
"volume_sell_30m_usd": 99711839.21202336,
"volume_sell_history_30m": 528007.2176426961,
"volume_sell_history_30m_usd": 104876437.05582954,
"volume_sell_30m_change_percent": -4.8060229741980764,
"trade_1h": 1365500,
"trade_history_1h": 1460948,
"trade_1h_change_percent": -6.533292081579906,
"sell_1h": 790911,
"sell_history_1h": 833994,
"sell_1h_change_percent": -5.165864502622321,
"buy_1h": 574589,
"buy_history_1h": 626954,
"buy_1h_change_percent": -8.35228740864561,
"volume_1h": 1869915.2789910787,
"volume_1h_usd": 371272087.7773213,
"volume_history_1h": 2215504.2512326725,
"volume_history_1h_usd": 436450282.08621264,
"volume_1h_change_percent": -15.598659855846062,
"volume_buy_1h": 911052.9765842077,
"volume_buy_1h_usd": 180903043.40620133,
"volume_buy_history_1h": 1115539.1923768108,
"volume_buy_history_1h_usd": 219688244.87947023,
"volume_buy_1h_change_percent": -18.330706548903663,
"volume_sell_1h": 958862.302406871,
"volume_sell_1h_usd": 190369044.37111995,
"volume_sell_history_1h": 1099965.058855862,
"volume_sell_history_1h_usd": 216762037.2067424,
"volume_sell_1h_change_percent": -12.827930788616154,
"trade_2h": 2721996,
"trade_history_2h": 2737323,
"trade_2h_change_percent": -0.5599266144331524,
"sell_2h": 1565257,
"sell_history_2h": 1520437,
"sell_2h_change_percent": 2.9478367074729173,
"buy_2h": 1156739,
"buy_history_2h": 1216886,
"buy_2h_change_percent": -4.942698001291822,
"volume_2h": 3881149.9454533085,
"volume_2h_usd": 767124563.4685572,
"volume_history_2h": 4109861.943241723,
"volume_history_2h_usd": 795392999.4275689,
"volume_2h_change_percent": -5.564955732016972,
"volume_buy_2h": 1946568.1169466476,
"volume_buy_2h_usd": 384689701.5502614,
"volume_buy_history_2h": 2184514.4664095147,
"volume_buy_history_2h_usd": 422774489.6633253,
"volume_buy_2h_change_percent": -10.892413537272542,
"volume_sell_2h": 1934581.8285066609,
"volume_sell_2h_usd": 382434861.91829586,
"volume_sell_history_2h": 1925347.4768322085,
"volume_sell_history_2h_usd": 372618509.7642436,
"volume_sell_2h_change_percent": 0.47962000550912426,
"trade_4h": 5720496,
"trade_history_4h": 4738200,
"trade_4h_change_percent": 20.73141699379511,
"sell_4h": 3227114,
"sell_history_4h": 2598002,
"sell_4h_change_percent": 24.215223852791492,
"buy_4h": 2493382,
"buy_history_4h": 2140198,
"buy_4h_change_percent": 16.502398376225003,
"volume_4h": 8359034.497538514,
"volume_4h_usd": 1632746418.2793252,
"volume_history_4h": 5827559.3867111625,
"volume_history_4h_usd": 1117139333.4616933,
"volume_4h_change_percent": 43.439713657830495,
"volume_buy_4h": 4308151.652644951,
"volume_buy_4h_usd": 841240490.7863214,
"volume_buy_history_4h": 2923792.0279110167,
"volume_buy_history_4h_usd": 560556194.860776,
"volume_buy_4h_change_percent": 47.34808808282536,
"volume_sell_4h": 4050882.844893563,
"volume_sell_4h_usd": 791505927.4930038,
"volume_sell_history_4h": 2903767.358800146,
"volume_sell_history_4h_usd": 556583138.6009173,
"volume_sell_4h_change_percent": 39.50438669327189,
"trade_8h": 9875698,
"trade_history_8h": 10453618,
"trade_8h_change_percent": -5.528420877824309,
"sell_8h": 5503762,
"sell_history_8h": 5773818,
"sell_8h_change_percent": -4.677251690302673,
"buy_8h": 4371936,
"buy_history_8h": 4679800,
"buy_8h_change_percent": -6.578571733834779,
"volume_8h": 13272186.797145639,
"volume_8h_usd": 2574392837.701419,
"volume_history_8h": 14155274.76815367,
"volume_history_8h_usd": 2581042172.9211245,
"volume_8h_change_percent": -6.238578801697224,
"volume_buy_8h": 6738594.148704853,
"volume_buy_8h_usd": 1307097533.3850877,
"volume_buy_history_8h": 7280589.108363739,
"volume_buy_history_8h_usd": 1327749998.8559382,
"volume_buy_8h_change_percent": -7.444383299096738,
"volume_sell_8h": 6533592.648440785,
"volume_sell_8h_usd": 1267295304.3163311,
"volume_sell_history_8h": 6874685.65978993,
"volume_sell_history_8h_usd": 1253292174.0651865,
"volume_sell_8h_change_percent": -4.961579746754095,
"trade_24h": 30786907,
"trade_history_24h": 33058246,
"trade_24h_change_percent": -6.870718428315888,
"sell_24h": 17145270,
"sell_history_24h": 18482135,
"sell_24h_change_percent": -7.233282302071703,
"buy_24h": 13641637,
"buy_history_24h": 14576111,
"buy_24h_change_percent": -6.410996732942004,
"volume_24h": 43327455.84829509,
"volume_24h_usd": 7930210206.693316,
"volume_history_24h": 49475082.60178679,
"volume_history_24h_usd": 8868558906.245562,
"volume_24h_change_percent": -12.425702859300893,
"volume_buy_24h": 21945096.556108054,
"volume_buy_24h_usd": 4018154448.1608233,
"volume_buy_history_24h": 24403487.274207145,
"volume_buy_history_24h_usd": 4374621039.616789,
"volume_buy_24h_change_percent": -10.073932018303982,
"volume_sell_24h": 21382359.29218704,
"volume_sell_24h_usd": 3912055758.532493,
"volume_sell_history_24h": 25071595.327579647,
"volume_sell_history_24h_usd": 4493937866.628773,
"volume_sell_24h_change_percent": -14.714803693940917,
"is_scaled_ui_token": false,
"multiplier": null
}
}Stats & Market Data
Token - Trade Data (Single)
Retrieve trade data of a specified token.
GET
/
defi
/
v3
/
token
/
trade-data
/
single
Token - Trade Data (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/token/trade-data/single \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/token/trade-data/single"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/token/trade-data/single', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"address": "So11111111111111111111111111111111111111112",
"holder": 3498897,
"market": 189737,
"last_trade_unix_time": 1755058915,
"last_trade_human_time": "2025-08-13T04:21:55",
"price": 199.57308084999997,
"history_1m_price": 200.0657028658876,
"price_change_1m_percent": -0.246230117821773,
"history_5m_price": 199.04185542048768,
"price_change_5m_percent": 0.2668913171001369,
"history_30m_price": 198.08683911027157,
"price_change_30m_percent": 0.750298074523282,
"history_1h_price": 198.6762767605752,
"price_change_1h_percent": 0.4513896193582795,
"history_2h_price": 194.219974488669,
"price_change_2h_percent": 2.75620794175486,
"history_4h_price": 191.95599557869642,
"price_change_4h_percent": 3.968141369244581,
"history_6h_price": 192.36297986748752,
"price_change_6h_percent": 3.748174928190051,
"history_8h_price": 190.83016849547622,
"price_change_8h_percent": 4.581514769626696,
"history_12h_price": 181.29476421508093,
"price_change_12h_percent": 10.082098462167592,
"history_24h_price": 175.69158133703775,
"price_change_24h_percent": 13.592853642286466,
"unique_wallet_1m": 10535,
"unique_wallet_history_1m": 10512,
"unique_wallet_1m_change_percent": 0.21879756468797565,
"unique_wallet_5m": 30484,
"unique_wallet_history_5m": 31329,
"unique_wallet_5m_change_percent": -2.697181525104536,
"unique_wallet_30m": 84841,
"unique_wallet_history_30m": 91310,
"unique_wallet_30m_change_percent": -7.084656664111269,
"unique_wallet_1h": 141012,
"unique_wallet_history_1h": 139362,
"unique_wallet_1h_change_percent": 1.1839669350325053,
"unique_wallet_2h": 229096,
"unique_wallet_history_2h": 256234,
"unique_wallet_2h_change_percent": -10.59110032236159,
"unique_wallet_4h": 398071,
"unique_wallet_history_4h": 319789,
"unique_wallet_4h_change_percent": 24.47926601602932,
"unique_wallet_8h": 616389,
"unique_wallet_history_8h": 598174,
"unique_wallet_8h_change_percent": 3.0451005894605916,
"unique_wallet_24h": 1312446,
"unique_wallet_history_24h": 1595218,
"unique_wallet_24h_change_percent": -17.72622926772391,
"trade_1m": 25063,
"trade_history_1m": 25516,
"trade_1m_change_percent": -1.7753566389716258,
"sell_1m": 14783,
"sell_history_1m": 14281,
"sell_1m_change_percent": 3.5151600028009247,
"buy_1m": 10280,
"buy_history_1m": 11235,
"buy_1m_change_percent": -8.500222518914107,
"volume_1m": 28014.353663877002,
"volume_1m_usd": 5594914.331353994,
"volume_history_1m": 30288.275618175,
"volume_history_1m_usd": 6053381.114696328,
"volume_1m_change_percent": -7.507597933153688,
"volume_buy_1m": 13316.670472043998,
"volume_buy_1m_usd": 2659745.040809564,
"volume_buy_history_1m": 15438.603833983001,
"volume_buy_history_1m_usd": 3085880.865821625,
"volume_buy_1m_change_percent": -13.74433455743107,
"volume_sell_1m": 14697.683191833004,
"volume_sell_1m_usd": 2935169.29054443,
"volume_sell_history_1m": 14849.671784191998,
"volume_sell_history_1m_usd": 2967500.248874703,
"volume_sell_1m_change_percent": -1.0235148262387246,
"trade_5m": 125589,
"trade_history_5m": 133103,
"trade_5m_change_percent": -5.64525217312908,
"sell_5m": 72259,
"sell_history_5m": 75307,
"sell_5m_change_percent": -4.047432509594062,
"buy_5m": 53330,
"buy_history_5m": 57796,
"buy_5m_change_percent": -7.727178351443007,
"volume_5m": 138839.93120513,
"volume_5m_usd": 27706918.700082216,
"volume_history_5m": 168486.357245985,
"volume_history_5m_usd": 33501205.892243676,
"volume_5m_change_percent": -17.595742780272776,
"volume_buy_5m": 71016.083050991,
"volume_buy_5m_usd": 14172671.643556839,
"volume_buy_history_5m": 86636.89562773002,
"volume_buy_history_5m_usd": 17227812.75124113,
"volume_buy_5m_change_percent": -18.030208104247027,
"volume_sell_5m": 67823.84815413899,
"volume_sell_5m_usd": 13534247.056525378,
"volume_sell_history_5m": 81849.46161825501,
"volume_sell_history_5m_usd": 16273393.141002549,
"volume_sell_5m_change_percent": -17.13586526632432,
"trade_30m": 742916,
"trade_history_30m": 726567,
"trade_30m_change_percent": 2.2501710096935317,
"sell_30m": 429567,
"sell_history_30m": 423206,
"sell_30m_change_percent": 1.5030505238583574,
"buy_30m": 313349,
"buy_history_30m": 303361,
"buy_30m_change_percent": 3.2924469526405833,
"volume_30m": 999257.254695175,
"volume_30m_usd": 198262635.32251042,
"volume_history_30m": 1007682.2970747652,
"volume_history_30m_usd": 200156959.86425337,
"volume_30m_change_percent": -0.8360812136967729,
"volume_buy_30m": 496626.18523781083,
"volume_buy_30m_usd": 98550796.11048704,
"volume_buy_history_30m": 479675.0794320691,
"volume_buy_history_30m_usd": 95280522.80842383,
"volume_buy_30m_change_percent": 3.5338725175824632,
"volume_sell_30m": 502631.0694573641,
"volume_sell_30m_usd": 99711839.21202336,
"volume_sell_history_30m": 528007.2176426961,
"volume_sell_history_30m_usd": 104876437.05582954,
"volume_sell_30m_change_percent": -4.8060229741980764,
"trade_1h": 1365500,
"trade_history_1h": 1460948,
"trade_1h_change_percent": -6.533292081579906,
"sell_1h": 790911,
"sell_history_1h": 833994,
"sell_1h_change_percent": -5.165864502622321,
"buy_1h": 574589,
"buy_history_1h": 626954,
"buy_1h_change_percent": -8.35228740864561,
"volume_1h": 1869915.2789910787,
"volume_1h_usd": 371272087.7773213,
"volume_history_1h": 2215504.2512326725,
"volume_history_1h_usd": 436450282.08621264,
"volume_1h_change_percent": -15.598659855846062,
"volume_buy_1h": 911052.9765842077,
"volume_buy_1h_usd": 180903043.40620133,
"volume_buy_history_1h": 1115539.1923768108,
"volume_buy_history_1h_usd": 219688244.87947023,
"volume_buy_1h_change_percent": -18.330706548903663,
"volume_sell_1h": 958862.302406871,
"volume_sell_1h_usd": 190369044.37111995,
"volume_sell_history_1h": 1099965.058855862,
"volume_sell_history_1h_usd": 216762037.2067424,
"volume_sell_1h_change_percent": -12.827930788616154,
"trade_2h": 2721996,
"trade_history_2h": 2737323,
"trade_2h_change_percent": -0.5599266144331524,
"sell_2h": 1565257,
"sell_history_2h": 1520437,
"sell_2h_change_percent": 2.9478367074729173,
"buy_2h": 1156739,
"buy_history_2h": 1216886,
"buy_2h_change_percent": -4.942698001291822,
"volume_2h": 3881149.9454533085,
"volume_2h_usd": 767124563.4685572,
"volume_history_2h": 4109861.943241723,
"volume_history_2h_usd": 795392999.4275689,
"volume_2h_change_percent": -5.564955732016972,
"volume_buy_2h": 1946568.1169466476,
"volume_buy_2h_usd": 384689701.5502614,
"volume_buy_history_2h": 2184514.4664095147,
"volume_buy_history_2h_usd": 422774489.6633253,
"volume_buy_2h_change_percent": -10.892413537272542,
"volume_sell_2h": 1934581.8285066609,
"volume_sell_2h_usd": 382434861.91829586,
"volume_sell_history_2h": 1925347.4768322085,
"volume_sell_history_2h_usd": 372618509.7642436,
"volume_sell_2h_change_percent": 0.47962000550912426,
"trade_4h": 5720496,
"trade_history_4h": 4738200,
"trade_4h_change_percent": 20.73141699379511,
"sell_4h": 3227114,
"sell_history_4h": 2598002,
"sell_4h_change_percent": 24.215223852791492,
"buy_4h": 2493382,
"buy_history_4h": 2140198,
"buy_4h_change_percent": 16.502398376225003,
"volume_4h": 8359034.497538514,
"volume_4h_usd": 1632746418.2793252,
"volume_history_4h": 5827559.3867111625,
"volume_history_4h_usd": 1117139333.4616933,
"volume_4h_change_percent": 43.439713657830495,
"volume_buy_4h": 4308151.652644951,
"volume_buy_4h_usd": 841240490.7863214,
"volume_buy_history_4h": 2923792.0279110167,
"volume_buy_history_4h_usd": 560556194.860776,
"volume_buy_4h_change_percent": 47.34808808282536,
"volume_sell_4h": 4050882.844893563,
"volume_sell_4h_usd": 791505927.4930038,
"volume_sell_history_4h": 2903767.358800146,
"volume_sell_history_4h_usd": 556583138.6009173,
"volume_sell_4h_change_percent": 39.50438669327189,
"trade_8h": 9875698,
"trade_history_8h": 10453618,
"trade_8h_change_percent": -5.528420877824309,
"sell_8h": 5503762,
"sell_history_8h": 5773818,
"sell_8h_change_percent": -4.677251690302673,
"buy_8h": 4371936,
"buy_history_8h": 4679800,
"buy_8h_change_percent": -6.578571733834779,
"volume_8h": 13272186.797145639,
"volume_8h_usd": 2574392837.701419,
"volume_history_8h": 14155274.76815367,
"volume_history_8h_usd": 2581042172.9211245,
"volume_8h_change_percent": -6.238578801697224,
"volume_buy_8h": 6738594.148704853,
"volume_buy_8h_usd": 1307097533.3850877,
"volume_buy_history_8h": 7280589.108363739,
"volume_buy_history_8h_usd": 1327749998.8559382,
"volume_buy_8h_change_percent": -7.444383299096738,
"volume_sell_8h": 6533592.648440785,
"volume_sell_8h_usd": 1267295304.3163311,
"volume_sell_history_8h": 6874685.65978993,
"volume_sell_history_8h_usd": 1253292174.0651865,
"volume_sell_8h_change_percent": -4.961579746754095,
"trade_24h": 30786907,
"trade_history_24h": 33058246,
"trade_24h_change_percent": -6.870718428315888,
"sell_24h": 17145270,
"sell_history_24h": 18482135,
"sell_24h_change_percent": -7.233282302071703,
"buy_24h": 13641637,
"buy_history_24h": 14576111,
"buy_24h_change_percent": -6.410996732942004,
"volume_24h": 43327455.84829509,
"volume_24h_usd": 7930210206.693316,
"volume_history_24h": 49475082.60178679,
"volume_history_24h_usd": 8868558906.245562,
"volume_24h_change_percent": -12.425702859300893,
"volume_buy_24h": 21945096.556108054,
"volume_buy_24h_usd": 4018154448.1608233,
"volume_buy_history_24h": 24403487.274207145,
"volume_buy_history_24h_usd": 4374621039.616789,
"volume_buy_24h_change_percent": -10.073932018303982,
"volume_sell_24h": 21382359.29218704,
"volume_sell_24h_usd": 3912055758.532493,
"volume_sell_history_24h": 25071595.327579647,
"volume_sell_history_24h_usd": 4493937866.628773,
"volume_sell_24h_change_percent": -14.714803693940917,
"is_scaled_ui_token": false,
"multiplier": null
}
}- Usage Note
- Accessibility
- Chain Supported
Focused trading-activity stats for one token.
- Returns buy/sell counts, trade counts, unique wallets, volume, and change metrics across requested timeframes.
- Use
framesto request one or more custom timeframes. - Use this endpoint when you need timeframe-based market activity around the current price, not just the current market snapshot.
- Use
ui_amount_mode=scaledfor Solana Token-2022 scaled UI amounts when the token supports scaled UI amount extension.
Reading the numbers. Buy/sell counts and volumes describe activity inside each timeframe. Change-percent fields compare the current timeframe window with the previous matching window, which makes this endpoint useful for reading recent momentum and participation around price moves.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
All chains ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
10 CUper request.
Use Cases 💡
Use Cases 💡
- Analyze buy/sell pressure and trading activity for a single token.
- Build momentum indicators using trade counts, unique wallets, and volume over selected frames.
- Study how participation and turnover changed across recent windows before or after a price move.
- Trigger alerts when trading activity, volume, or buy/sell imbalance changes quickly.
- Combine with market data to explain whether valuation changes are backed by real activity.
How to Use 🛠️
How to Use 🛠️
- Provide
addressas the token address and setx-chain. - Use
frames=5m,1h,24hstyle requests for the horizons your product displays. - Use shorter frames when you care about recent momentum and reaction, and longer frames when you care about broader context.
- Set
ui_amount_mode=raworscaledconsistently with your Token-2022 amount handling. - Use Token Overview when you need both market fundamentals and trade activity in one payload.
Best Practices ✅
Best Practices ✅
- Pair trade counts with unique-wallet counts to separate broad market participation from repeated activity by a smaller wallet set.
- Compare buy and sell volume together instead of reading total volume alone.
- Use shorter frames for alerts and longer frames for ranking or trend summaries.
Authorizations
API key for authentication
Headers
A chain name listed in supported networks.
Available options:
solana, ethereum, bsc, base, robinhood, sui, mantle, hyperevm, arbitrum, avalanche, optimism, polygon, zksync, monad, aptos, fogo, megaeth Query Parameters
The address of the token contract.
A list of custom time intervals separated by comma (,). Users can pass up to 8 intervals. Rules:
- Minute intervals: from 1m up to 1440m (e.g. 1m,15m,16m,17m,89m,90m,92m,1440m ...).
- Second intervals: must be multiples of 5s, from 5s up to 3600s (e.g. 5s,10s,15s,90s,3600s ...).
- Hours intervals: only support (1h 2h 4h 8h 24h)
Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana
Available options:
raw, scaled Was this page helpful?

