Skip to main content
GET
https://api.kanarie.xyz
/
api
/
v1
/
data
/
fundamentals
/
snapshot
Get fundamentals snapshot
curl --request GET \
  --url https://api.kanarie.xyz/api/v1/data/fundamentals/snapshot \
  --header 'Authorization: Bearer <token>'
{
  "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 .

Query Parameters

metrics
string

Comma-separated metrics.

Example:

"tvl,fees,revenue"

ecosystem_ids
string
Example:

"11943,4694"

project_ids
string
Example:

"1,2"

categories
string
Example:

"Lending,DEX"

exclude_categories
string
Example:

"Bridge,Staking Pool"

sort_metric
enum<string>
Available options:
tvl,
fees,
revenue
group_by
enum<string>
Available options:
protocol,
chain,
category
timeframes
string
Example:

"7d,30d"

entity_limit
integer
default:25
Required range: 1 <= x <= 100

Response

Current fundamentals and timeframe changes.

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