Skip to main content

Get Pools Fees5

GET 

https://osmosis.numia.xyz/fees/v1/pools

Responses

Status: 200

Schema
    data object[]required
  • Array [
  • pool_idstringrequired

    Pool id

    volume_24hnumberrequired

    Total amount of USD swapped in the pool in the last 24 hours

    volume_7dnumberrequired

    Total amount of USD swapped in the pool in the last 7 days

    fees_spent_24hnumberrequired

    Total amount of USD spent in fees in the last 24 hours

    fees_spent_7dnumberrequired

    Total amount of USD spent in fees in the last 7 days

    fees_percentagestringrequired

    Actual swap fees percetage of the pool

  • ]
  • last_update_atnumberrequired
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://osmosis.numia.xyz/fees/v1/pools");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://osmosis.numia.xyz
ResponseClear

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