Get Price Change for Token Over Time Duration
POSThttps://api.fuse.io/api/v0/trade/pricechange/:tokenAddress
Specify a duration object to calculate the price change over the specified timeframe.
Request
Responses
- 200
OK
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear