get_protocol_tvl
Retrieve the current Total Value Locked (TVL) for a specific DeFi protocol by providing its slug. Simplify TVL data access without managing individual API keys.
Instructions
GET /api/tvl/{protocol}
Simplified endpoint to get current TVL of a protocol.
Parameters:
protocol: protocol slug (e.g., 'uniswap')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protocol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"protocol": {
"title": "Protocol",
"type": "string"
}
},
"required": [
"protocol"
],
"title": "get_protocol_tvlArguments",
"type": "object"
}