Skip to main content
POST
https://api.kanarie.xyz
/
api
/
v1
/
data
/
fundamentals
/
snapshot
Get fundamentals snapshot
curl --request POST \
  --url https://api.kanarie.xyz/api/v1/data/fundamentals/snapshot \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "metrics": [
    "tvl",
    "fees",
    "revenue"
  ],
  "group_by": "protocol",
  "timeframes": [
    "7d",
    "30d"
  ],
  "entity_limit": 25
}
'
{
  "success": true,
  "error": null,
  "data_source": "defi_llama",
  "data": [
    {
      "entity": "aave",
      "type": "protocol",
      "tvl": 12500000000,
      "fees": 3500000
    }
  ],
  "metadata": {
    "metrics": [
      "tvl",
      "fees",
      "revenue"
    ],
    "group_by": "protocol",
    "total_entities": 25
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kanarie.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:YOUR_KANARIE_API_KEY
required

Preferred Kanarie API key authentication using Authorization: Bearer .

Body

application/json
metrics
enum<string>[] | null
Available options:
tvl,
fees,
revenue
ecosystem_ids
integer[] | null
project_ids
integer[] | null
categories
string[] | null
exclude_categories
string[] | null
group_by
enum<string>
Available options:
protocol,
chain,
category
timeframes
enum<string>[]
Available options:
1d,
7d,
30d,
90d,
180d,
1y
entity_limit
integer
default:25
Required range: 1 <= x <= 100
sort_metric
enum<string>
Available options:
tvl,
fees,
revenue

Response

Current fundamentals and timeframe changes.

success
boolean
required
error
string | null
data
object
analysis
object
results
object[]
projects
object[]
metadata
object