Transaction Fees
Rest API to fetch the transaction fees for a given chain
Description
This endpoint retrieves the transaction fees collected on a specified blockchain for a given date range. It requires an API key for authentication and valid date range inputs.
Request
Method: GET
Headers:
X-API-Key
: A valid API key for authentication.
Body Parameters:
chain
: The blockchain to query. This should be one ofETHEREUM
,ARBITRUM
,BSC
,OPTIMISM
,BASE
orPOLYGON
start_date
: The start date for the query (YYYY-MM-DD format).end_date
: The end date for the query (YYYY-MM-DD format).
Response
Success: Returns a JSON array of objects with
date
(in YYYY-MM-DD format) andfees
Error: Returns an error message with an appropriate status code in case of invalid API key, missing parameters, or server issues.
Sample Request
Sample Response
Example
POST
https://dashboard.withblaze.app/api/chain-insights/fees
Headers
Name | Type | Description |
---|---|---|
x-api-key* | API-KEY | Your Blaze API Key |
Request Body
Name | Type | Description |
---|---|---|
chain* | Enum | One of the supported chains - |
start_date* | String | Start date for the queried metric |
end_date* | String | End date for the queried metric |
Last updated