Skip to main content
GET
https://starknet.impulse.avnu.fi
/
v3
/
tokens
/
{tokenAddress}
/
prices
/
line
curl -X GET "https://starknet.impulse.avnu.fi/v3/tokens/0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7/prices/line?startDate=2024-02-01T00:00:00Z&endDate=2024-02-14T00:00:00Z&resolution=1D"
[
  {
    "date": "2024-02-01T00:00:00Z",
    "value": 2320.50
  },
  {
    "date": "2024-02-02T00:00:00Z",
    "value": 2345.75
  },
  {
    "date": "2024-02-03T00:00:00Z",
    "value": 2380.20
  },
  {
    "date": "2024-02-04T00:00:00Z",
    "value": 2365.90
  },
  {
    "date": "2024-02-05T00:00:00Z",
    "value": 2410.30
  },
  {
    "date": "2024-02-06T00:00:00Z",
    "value": 2435.50
  }
]

Overview

Fetch historical price data for any token with customizable time ranges and resolutions. Perfect for building price charts, analyzing trends, and backtesting strategies.

Request

tokenAddress
string
required
Token contract address
startDate
string
required
ISO 8601 start date (e.g., “2024-01-01T00:00:00Z”)
endDate
string
required
ISO 8601 end date (e.g., “2024-02-01T00:00:00Z”)
resolution
string
default:"1H"
Data point frequency:
  • 1 - 1 minute
  • 5 - 5 minutes
  • 15 - 15 minutes
  • 1H - 1 hour
  • 4H - 4 hours
  • 1D - 1 day
  • 1W - 1 week
quoteTokenAddress
string
Quote currency token address (defaults to USD)

Response

date
string
required
ISO 8601 date-time for this data point
value
number
required
Price at this date
curl -X GET "https://starknet.impulse.avnu.fi/v3/tokens/0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7/prices/line?startDate=2024-02-01T00:00:00Z&endDate=2024-02-14T00:00:00Z&resolution=1D"
[
  {
    "date": "2024-02-01T00:00:00Z",
    "value": 2320.50
  },
  {
    "date": "2024-02-02T00:00:00Z",
    "value": 2345.75
  },
  {
    "date": "2024-02-03T00:00:00Z",
    "value": 2380.20
  },
  {
    "date": "2024-02-04T00:00:00Z",
    "value": 2365.90
  },
  {
    "date": "2024-02-05T00:00:00Z",
    "value": 2410.30
  },
  {
    "date": "2024-02-06T00:00:00Z",
    "value": 2435.50
  }
]

Resolution Guidelines

Recommended resolutions by time range:
  • < 1 day: 1 or 5 minute resolution
  • 1-7 days: 15 minute or 1 hour resolution
  • 1-4 weeks: 1 or 4 hour resolution
  • 1-3 months: Daily resolution
  • 3+ months: Weekly resolution