Skip to main content
GET
/
v1
/
metrics
/
app-revenue-total-usd
App Revenue Total Usd
curl --request GET \
  --url https://api.blockworks.com/v1/metrics/app-revenue-total-usd \
  --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

  • Denomination: USD
  • Type: USD Value
  • Interval: Daily
  • Source: Blockworks

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.blockworks.com/v1/metrics/app-revenue-total-usd?project=arbitrum"

Example Response

{
  "arbitrum": [
    {
      "date": "2025-11-18",
      "value": 103170.3174060143
    },
    {
      "date": "2025-11-17",
      "value": 121137.08370119923
    },
    {
      "date": "2025-11-16",
      "value": 102563.61552991791
    },
    {
      "date": "2025-11-15",
      "value": 50252.348358949035
    },
    {
      "date": "2025-11-14",
      "value": 82600.26027171897
    }
  ]
}

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[]