get_protocol_details
Retrieve historical Total Value Locked (TVL) data and token-chain breakdowns for a specific protocol using its slug (e.g., 'aave').
Instructions
GET /api/protocol/{protocol}
Get historical TVL of a protocol and breakdowns by token and chain.
Parameters:
protocol: protocol slug (e.g., 'aave')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protocol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"protocol": {
"title": "Protocol",
"type": "string"
}
},
"required": [
"protocol"
],
"title": "get_protocol_detailsArguments",
"type": "object"
}