GET
/
v1
/
metrics
/
transaction-fee-total-native
Transaction Fee Total Native
curl --request GET \
  --url https://api.blockworks.com/v1/metrics/transaction-fee-total-native \
  --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/transaction-fee-total-native?project=base"

Example Response

{
  "base": [
    {
      "date": "2025-09-14",
      "value": 24.998534152504345
    },
    {
      "date": "2025-09-13",
      "value": 22.49845445732208
    },
    {
      "date": "2025-09-12",
      "value": 35.96567806705628
    },
    {
      "date": "2025-09-11",
      "value": 33.23829199310757
    },
    {
      "date": "2025-09-10",
      "value": 41.84010137744059
    }
  ]
}

Notes

  • Intervals are daily unless otherwise noted.
  • Data is updated daily and may be revised after late-arriving data.

Authorizations

x-api-key
string
header
required

Query Parameters

project
enum<string>
required

Project slug (comma-separated for multiple).

Available options:
arbitrum,
base,
ethereum,
solana
Example:

"arbitrum"

start_date
string<date>

Start date (YYYY-MM-DD)

end_date
string<date>

End date (YYYY-MM-DD)

Response

OK

{key}
object[]