# Concierge Agent — Meteora DeFi Pool Intelligence

> Concierge Agent — Meteora DeFi Pool Intelligence is a paid API for AI agents from conc-exe.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Fetches and filters Meteora liquidity pool data (APY, TVL, risk flags) via x402 pay-per-call

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-meteora
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/concierge-agent-meteora-defi-pool-intelligence-db88f13d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bCAiUP61R15AKRar4Q-_D

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 concierge-agent-meteora-defi-pool-intelligence-db88f13d -d '<json body>'
```

Example prompt: Show me the top 5 Meteora liquidity pools sorted by APY — filter for pools with 'SOL' in the name and flag any risky ones.

## When to prefer this

Choose this endpoint when you need structured, filterable Meteora pool data including APY, TVL, and risk signals in one call. Prefer over generic DeFi aggregators when specifically targeting Meteora pools on Solana and needing pay-per-call access without a subscription.

## Known failure modes

- limit out of range (must be 1–20) returns validation error
- poolHint string matches no pools — returns empty pools array
- x402 payment not attached or insufficient — returns 402 Payment Required
- upstream Meteora data unavailable — returns service error

## How this service works

Meteora DLMM pool deep-dive — TVL, APY, bin step, volume, and IL risk flags (Solana moat)

## Output

Returns a JSON array of up to 20 Meteora pools, each with pool name, APY percentage, TVL in USD, and an array of risk flags (empty if none). Wrapped in an 'ok: true' envelope.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max pools 1–20"
  },
  "poolHint": {
   "type": "string",
   "description": "Substring filter on pool name"
  },
  "sortByApy": {
   "type": "boolean",
   "description": "Sort by APY instead of TVL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pools": [
   {
    "apy": "24.50%",
    "name": "SOL-USDC",
    "tvlUsd": "$12.4M",
    "riskFlags": []
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-meteora-defi-pool-intelligence-db88f13d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from conc-exe.xyz](https://www.zero.xyz/host/conc-exe.xyz/llms.txt)
