Total value locked (USD) for one DeFi protocol by DefiLlama slug or name (e
Total value locked (USD) for one DeFi protocol by DefiLlama slug or name (e.g. "aave-v3", "lido", "uniswap-v3"): current TVL, per-chain TVL breakdown, 1h/1d/7d TVL change, category, chains, token symbol and market cap. Optional `chain` also returns that chain's TVL for the protocol. Unknown names return `found:false` with slug `suggestions`.
1000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
crypto.openverbs.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"chain": "example",
"protocol": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"chain": null,
"found": true,
"protocol": {
"category": "Lending",
"chainTvlUsd": null,
"chainTvls": [
{
"chain": "Ethereum",
"tvlUsd": 15000000000
}
],
"chains": [
"Ethereum",
"Base",
"Arbitrum"
],
"change1dPct": -1.21,
"change1hPct": -0.32,
"change7dPct": -1.3,
"mcapUsd": null,
"name": "AAVE V3",
"slug": "aave-v3",
"symbol": "AAVE",
"tvlUsd": 17360471163.45,
"url": "https://aave.com"
},
"source": "defillama",
"stale": false,
"suggestions": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"chain": {
"description": "Optional chain to also report the protocol's TVL on, e.g. \"Ethereum\", \"Base\", \"Arbitrum\".",
"maxLength": 50,
"minLength": 1,
"type": "string"
},
"protocol": {
"description": "DefiLlama protocol slug or exact name, e.g. \"aave-v3\", \"lido\", \"uniswap-v3\", \"Curve Finance\".",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"required": [
"protocol"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://crypto.openverbs.com/v1/protocol" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://crypto.openverbs.com/v1/protocol");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://crypto.openverbs.com/v1/protocol")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7395.json, and this resource appears in /discovery/resources and /discovery/search.