GET
/
v1
/
metrics
/
other-fees
Other Fees
curl --request GET \
  --url https://api.blockworks.com/v1/metrics/other-fees \
  --header 'x-api-key: <api-key>'
{
  "projectName": [
    {
      "date": "2025-08-10",
      "value": 123456.789
    },
    {
      "date": "2025-08-11",
      "value": 234567.89
    },
    {
      "date": "2025-08-12",
      "value": 345678.901
    }
  ]
}

Overview

  • Unit: native units
  • Interval: daily
  • Source: Blockworks

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.blockworks.com/v1/metrics/other-fees?project=ethereum"

Example Response

{
  "ethereum": [
    {
      "date": "2025-09-03",
      "value": 4.0363622399999946e-9
    },
    {
      "date": "2025-09-04",
      "value": 4.159045631999989e-9
    },
    {
      "date": "2025-09-05",
      "value": 4.118020095999991e-9
    },
    {
      "date": "2025-09-06",
      "value": 3.8805176319999934e-9
    },
    {
      "date": "2025-09-07",
      "value": 6.501171199999998e-11
    }
  ]
}

Notes

  • Intervals are daily unless otherwise noted.
  • Data is updated daily and may be revised after late-arriving data.
For fiat values, see Other Fees (USD).

Authorizations

x-api-key
string
header
required

Query Parameters

project
enum<string>
required

Project slug (comma-separated for multiple).

Available options:
arbitrum,
ethereum
Example:

"arbitrum"

start_date
string<date>

Start date (YYYY-MM-DD)

end_date
string<date>

End date (YYYY-MM-DD)

Response

200
application/json

OK

The response is of type object.