Skip to main content
GET
/
api
/
v0
/
trade
/
pricechange
/
interval
/
{timeFrame}
/
{tokenAddress}
Get Price Change for Token Over An Interval
curl --request GET \
  --url https://api.fuse.io/api/v0/trade/pricechange/interval/{timeFrame}/{tokenAddress}
{
  "data": [
    {
      "timestamp": 123,
      "priceChange": "<string>",
      "previousPrice": "<string>",
      "currentPrice": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fuse.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

timeFrame
string
required

Interval for price change. Allowed values: "ALL", "MONTH", "WEEK", "DAY", "HOUR".

tokenAddress
string
required

Token Contract Address.

Query Parameters

apiKey
string
required

Your Public API key.

Response

200 - application/json

OK

data
object[]