get_protocol_inflows
Retrieve inflow and outflow data for a specific protocol at a given timestamp. Use this tool to analyze liquidity movements in crypto protocols by specifying the protocol slug and timestamp.
Instructions
GET /api/inflows/{protocol}/{timestamp}
Lists the amount of inflows and outflows for a protocol at a given date.
Parameters:
    protocol: protocol slug (e.g., 'compound-v3')
    timestamp: unix timestamp (e.g., 1700006400)
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| protocol | Yes | ||
| timestamp | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "protocol": {
      "title": "Protocol",
      "type": "string"
    },
    "timestamp": {
      "title": "Timestamp",
      "type": "integer"
    }
  },
  "required": [
    "protocol",
    "timestamp"
  ],
  "title": "get_protocol_inflowsArguments",
  "type": "object"
}