Skip to main content
POST
/
api
/
v0
/
trade
/
pricechange
/
{tokenAddress}
Get Price Change for Token Over Time Duration
curl --request POST \
  --url https://api.fuse.io/api/v0/trade/pricechange/{tokenAddress} \
  --header 'Content-Type: application/json' \
  --data '
{
  "duration": {
    "days": 1
  }
}
'
{
  "data": {
    "priceChange": "<string>",
    "currentPrice": "<string>",
    "previousPrice": "<string>"
  }
}

Path Parameters

tokenAddress
string
required

Token Contract Address.

Query Parameters

apiKey
string
required

Your Public API key.

Body

application/json
duration
object

Response

200 - application/json

OK

data
object