Skip to main content

Get Price Change for Token Over Time Duration

POST 

https://api.fuse.io/api/v0/trade/pricechange/:tokenAddress

Specify a duration object to calculate the price change over the specified timeframe.

Request

Responses

OK
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.fuse.io/api/v0/trade/pricechange/:tokenAddress");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"duration\": {\n \"days\": 1\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.fuse.io
Parameters
— pathrequired
— queryrequired
Body required
{
  "duration": {
    "days": 1
  }
}
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?