Skip to main content

Get Network Status

GET 

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

Retrieves the current network status, including block time, base fees, network occupation, and predicted tips for transaction confirmation.

Request

Responses

An object containing the network status information.

Schema
    predictedTips object[]required
  • Array [
  • predictedTipGWeistringrequired
    expectedConfirmationTimeSecsdoublerequired
  • ]
  • predictedBaseFeeGWeistring
    currentBaseFeeGWeistring
    typicalTransactionCoststringrequired
    supportsEIP1559booleanrequired
    networkOccupationdoublerequired
    blockTimeSecsdoublerequired

Authorization: apiKey

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