# Barker Pool Detail

> Barker Pool Detail is a paid API for AI agents from mcp.barker.money, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns a full dossier for a single DeFi yield pool by pool_uid, including all APY components, TVL, terms, execution capability, and reward breakdown.

## Facts

- Endpoint: GET https://mcp.barker.money/barker_pool_detail
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/barker-pool-detail-f31b21cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FWEKGBWcZj-XXNbqLZRpH

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 barker-pool-detail-f31b21cf
```

Example prompt: Pull up the full pool dossier for pool ID 'aave-v3-usdc-eth' — I want to see all the APY components, TVL, reward breakdown, and whether it supports direct execution.

## When to prefer this

Use this endpoint after using barker_defi_vaults or barker_yield_advisor to get a shortlist of pools — this endpoint provides the deep-dive detail on a single specific pool. Prefer this over the list/advisory endpoints when you need granular APY component breakdown, execution capability confirmation, or full reward token details for a specific pool_uid.

## Known failure modes

- Invalid or unknown pool_uid returns an error or empty result
- Pool may have been delisted from Barker's index since it was retrieved
- Transient network or protocol errors may return 5xx responses
- APY data may be slightly stale if the pool hasn't been updated recently

## How this service works

Full single-pool dossier by pool_uid: all APY components (percent unit), TVL, terms, execution capability, reward breakdown. Use after barker_defi_vaults / barker_yield_advisor to inspect one pool.

## Output

A comprehensive pool dossier including all APY components expressed in percent units (base yield, reward tokens, etc.), current TVL, pool terms (lockup, minimum deposit, etc.), whether the pool supports direct on-chain execution via Barker, and a full reward token breakdown.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pool_uid"
     ],
     "properties": {
      "pool_uid": {
       "type": "string",
       "description": "Pool uid from list tools"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/barker-pool-detail-f31b21cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.barker.money](https://www.zero.xyz/host/mcp.barker.money/llms.txt)
