# AgenticFi DeFi Pool Details

> AgenticFi DeFi Pool Details is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves detailed information about a DeFi liquidity pool including APY history, TVL, impermanent loss risk, and reward tokens by DeFi Llama pool ID

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/defi/pool-details/:id
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-defi-pool-details-c8b813b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FcVXgXX8bzEu5kIgOiNP7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agenticfi-defi-pool-details-c8b813b5
```

Example prompt: Can you pull up the full details for DeFi Llama pool ID 747c1d2a-c668-4682-b9f9-9f11be1a6e74 — I want to see the APY history, current TVL, impermanent loss risk, and what reward tokens it offers?

## When to prefer this

Use this endpoint when you need comprehensive historical and current data for a specific DeFi liquidity pool — including APY trends, TVL, IL risk, and reward token breakdown. Prefer this over generic token price endpoints when the user needs pool-level yield and risk analysis, and you already have or can obtain the DeFi Llama pool ID.

## Known failure modes

- Invalid or unknown pool ID returns a 404 or empty result
- Pool ID format mismatch causes a 400 bad request
- Payment failure via x402 protocol blocks the response
- DeFi Llama upstream data unavailable causes a 503 or stale data
- Missing poolId parameter returns a validation error

## How this service works

Detailed pool info - APY history, TVL, IL risk, reward tokens

## Output

Returns detailed pool data including historical APY (annual percentage yield) over time, total value locked (TVL), impermanent loss risk metrics, and a list of reward tokens distributed to liquidity providers for the specified DeFi Llama pool.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "poolId"
     ],
     "properties": {
      "poolId": {
       "type": "string",
       "title": "poolId (required)",
       "description": "Required. DeFi Llama pool ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "poolId"
     ],
     "properties": {
      "poolId": {
       "type": "string",
       "title": "poolId (required)",
       "description": "Required. DeFi Llama pool ID"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-defi-pool-details-c8b813b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
