Get Fee Rate
GEThttps://api.chaingate.dev/bnb/feeRate
Retrieves the estimated gas prices for different transaction priorities.
Request
Responses
- 200
- 500
An object containing fee estimates for low, normal, and high priorities.
- application/json
- Schema
- Example (auto)
Schema
- anyOf
- MOD1
- MOD2
low objectrequired
normal objectrequired
high objectrequired
maximum objectrequired
low objectrequired
normal objectrequired
high objectrequired
maximum objectrequired
{
"low": {
"confirmationTimeSecs": 0,
"gasPrice": "string"
},
"normal": {
"confirmationTimeSecs": 0,
"gasPrice": "string"
},
"high": {
"confirmationTimeSecs": 0,
"gasPrice": "string"
},
"maximum": {
"confirmationTimeSecs": 0,
"gasPrice": "string"
}
}
Internal server error
Authorization: apiKey
name: apiKeytype: apiKeyin: query
- 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.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());
ResponseClear