GET
/
v1
/
metrics
/
revenue
Revenue
curl --request GET \
  --url https://api.blockworks.com/v1/metrics/revenue \
  --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: USD
  • Interval: daily
  • Source: Blockworks

Example Request

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

Example Response

{
  "pumpfun": [
    {
      "date": "2025-09-03",
      "value": 2029299.03
    },
    {
      "date": "2025-09-04",
      "value": 1779362.97
    },
    {
      "date": "2025-09-05",
      "value": 1626689.66
    },
    {
      "date": "2025-09-06",
      "value": 0
    }
  ]
}

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:
aave,
aerodrome,
apex,
aries,
aster,
axiom,
balancer,
banana-gun,
believe,
bloom,
bloxroute,
bluefin,
bonk,
bullx,
cetus,
clanker,
clipper,
coinbase-wallet,
convex,
cookdotmeme,
dexscreener,
dodo,
drift,
dydx,
eigenlayer,
ethena,
euler,
flashbots,
gmgn,
gmx,
hyperliquid,
ironbank,
jito,
kamino,
letsbonkdotfun,
level,
lido,
lifi,
lifinity,
looter,
maestro,
metaplex,
meth-protocol,
mevx,
moonshot,
morpho,
navi-protocol,
nova,
odos,
opensea,
orca,
ostium,
paal-ai,
pancakeswap,
paradex,
phantom,
photon,
pumpfun,
raydium,
scallop,
soltradingbot,
sosovalue,
spark,
stable-labs,
stakewise,
sushiswap,
syncswap,
tensor,
thorchain-dex,
tornado,
trojan,
uniswap,
uniswap-labs,
virtuals,
wildcat
Example:

"aave"

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.