Financials
Solana: REV
Network REV (Real Economic Value) is a standardized metric that tracks blockchain value accrual generated by user activity. REV consists of both in-protocol transaction fees and out-of-protocol tips that users pay for transaction execution, so it measures the monetary demand to transact onchain.
GET
/
v1
/
metrics
/
rev-native
Rev Native
curl --request GET \
--url https://api.blockworks.com/v1/metrics/rev-native \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockworks.com/v1/metrics/rev-native"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockworks.com/v1/metrics/rev-native', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"projectName": [
{
"date": "2025-08-10",
"value": 123456.789
},
{
"date": "2025-08-11",
"value": 234567.89
},
{
"date": "2025-08-12",
"value": 345678.901
}
]
}Overview
- Denomination: SOL
- Type: Decimal
- Interval: Daily
- Source: Blockworks
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.blockworks.com/v1/metrics/rev-native?project=solana"
const res = await fetch(
'https://api.blockworks.com/v1/metrics/rev-native?project=solana',
{ headers: { 'x-api-key': 'YOUR_API_KEY' } }
)
const data = await res.json()
import requests
r = requests.get(
'https://api.blockworks.com/v1/metrics/rev-native',
headers={'x-api-key': 'YOUR_API_KEY'},
params={'project': 'solana'}
)
data = r.json()
Example Response
{
"solana": [
{
"date": "2026-04-19",
"value": 5745.017026227643
},
{
"date": "2026-04-18",
"value": 6545.8091436032155
},
{
"date": "2026-04-17",
"value": 8780.543426899138
},
{
"date": "2026-04-16",
"value": 7716.595444301251
},
{
"date": "2026-04-15",
"value": 7164.52559351397
}
]
}
Notes
- Intervals are daily unless otherwise noted.
- Data is updated daily and may be revised after late-arriving data.
Authorizations
Query Parameters
Project slug (comma-separated for multiple).
Available options:
arbitrum, base, berachain, ethereum, hyperevm, katana, plasma, solana, unichain Example:
"arbitrum"
Start date (YYYY-MM-DD)
End date (YYYY-MM-DD)
Response
OK