GET
/
networks
/
{network}
/
tokens
/
{token_address}
/
trades
💼 Past 24 Hour Trades by Token Address
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/networks/{network}/tokens/{token_address}/trades \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "data": [
    {
      "id": "eth_22294076_0x1ff33129a907411d2c5fff604a07d9d0b8ae9e73eaca9a1702548c8a6f9e4bad_71_1744957467",
      "type": "trade",
      "attributes": {
        "pool_address": "0x06da0fd433c1a5d7a4faa01111c044910a184553",
        "pool_dex": "sushiswap",
        "block_number": 22294076,
        "tx_hash": "0x1ff33129a907411d2c5fff604a07d9d0b8ae9e73eaca9a1702548c8a6f9e4bad",
        "tx_from_address": "0x30a6f82f360c3bedc46fc8780082bcbde194ba7c",
        "from_token_amount": "7.988",
        "to_token_amount": "0.00504351846703413",
        "price_from_in_currency_token": "0.000631386888712335",
        "price_to_in_currency_token": "1.0",
        "price_from_in_usd": "0.997016722096761",
        "price_to_in_usd": "1579.09",
        "block_timestamp": "2025-04-18T06:24:23Z",
        "kind": "sell",
        "volume_in_usd": "7.96416957610893",
        "from_token_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
        "to_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
      }
    }
  ]
}

Note

  • Exclusive for all Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
  • Cache/Update Frequency: every 10 seconds for Pro API (Analyst, Lite, Pro, Enterprise).

Authorizations

x-cg-pro-api-key
string
header
required

Path Parameters

network
string
default:eth
required

network ID *refers to /networks

Example:

"eth"

token_address
string
default:0xdac17f958d2ee523a2206206994597c13d831ec7
required

token contract address

Example:

"0xdac17f958d2ee523a2206206994597c13d831ec7"

Query Parameters

trade_volume_in_usd_greater_than
number

filter trades by trade volume in USD greater than this value Default value: 0

Response

200 - application/json

Get last 300 trades in past 24 hours from a token

The response is of type object.