Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.4 KB

File metadata and controls

47 lines (34 loc) · 1.4 KB
description sidebar_label
Reference content for the Gas API.
API reference

import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem";

Gas API reference

This section provides reference information for the Gas REST APIs. Use the APIs to:

:::info See the list of supported Gas API networks. :::

Supported API request formats

You can call the Gas APIs in two ways:

  • Using the API key only - Add your API key as a path option.
  • Using the API key and API key secret - Use basic authentication and specify the API key and API key secret.
curl -X "GET" "https://gas.api.infura.io/v3/<YOUR-API-KEY>/networks/1/suggestedGasFees"
curl -X "GET" -u <YOUR-API-KEY>:<YOUR-API-KEY-SECRET> "https://gas.api.infura.io/networks/1/suggestedGasFees"