Skip to main content

Get Fee Rate

GET 

https://api.chaingate.dev/bnb/feeRate

Retrieves the estimated gas prices for different transaction priorities.

Request

Responses

An object containing fee estimates for low, normal, and high priorities.

Schema
    anyOf
    low objectrequired
    confirmationTimeSecsdoublerequired
    gasPricestringrequired
    normal objectrequired
    confirmationTimeSecsdoublerequired
    gasPricestringrequired
    high objectrequired
    confirmationTimeSecsdoublerequired
    gasPricestringrequired
    maximum objectrequired
    confirmationTimeSecsdoublerequired
    gasPricestringrequired

Authorization: apiKey

name: apiKeytype: apiKeyin: query
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.chaingate.dev/bnb/feeRate");
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://api.chaingate.dev
Auth
ResponseClear

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