Skip to main content
GET
https://starknet.impulse.avnu.fi
/
v3
/
tokens
/
{tokenAddress}
/
exchange-volumes
/
line
curl "https://starknet.impulse.avnu.fi/v3/tokens/0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7/exchange-volumes/line?startDate=2024-02-01T00:00:00Z&endDate=2024-02-14T00:00:00Z&resolution=1D"
[
  {
    "date": "2024-02-13T00:00:00Z",
    "value": 256.789,
    "valueUsd": 625000,
    "exchange": "Ekubo"
  },
  {
    "date": "2024-02-13T00:00:00Z",
    "value": 184.567,
    "valueUsd": 450000,
    "exchange": "JediSwap"
  },
  {
    "date": "2024-02-13T04:00:00Z",
    "value": 238.456,
    "valueUsd": 580000,
    "exchange": "Ekubo"
  },
  {
    "date": "2024-02-13T04:00:00Z",
    "value": 172.345,
    "valueUsd": 420000,
    "exchange": "JediSwap"
  }
]

Overview

Returns historical trading volume data for a token across different exchanges over time with configurable resolution. Use this to build volume trend charts.

Path Parameters

tokenAddress
string
required
Token contract address (hex format)

Query Parameters

startDate
string
required
Start date (ISO 8601 format)
endDate
string
required
End date (ISO 8601 format)
resolution
string
default:"1H"
Data point frequency: 1, 5, 15, 1H, 4H, 1D, 1W

Response

Returns an array of volume data points by exchange (ExchangeDataPoint).
date
string
required
ISO 8601 timestamp
value
number
required
Trading volume in token amount
valueUsd
number
required
Trading volume in USD
exchange
string
required
Exchange/DEX name
curl "https://starknet.impulse.avnu.fi/v3/tokens/0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7/exchange-volumes/line?startDate=2024-02-01T00:00:00Z&endDate=2024-02-14T00:00:00Z&resolution=1D"
[
  {
    "date": "2024-02-13T00:00:00Z",
    "value": 256.789,
    "valueUsd": 625000,
    "exchange": "Ekubo"
  },
  {
    "date": "2024-02-13T00:00:00Z",
    "value": 184.567,
    "valueUsd": 450000,
    "exchange": "JediSwap"
  },
  {
    "date": "2024-02-13T04:00:00Z",
    "value": 238.456,
    "valueUsd": 580000,
    "exchange": "Ekubo"
  },
  {
    "date": "2024-02-13T04:00:00Z",
    "value": 172.345,
    "valueUsd": 420000,
    "exchange": "JediSwap"
  }
]