# Concierge Agent — DeFi Yield Intelligence

> Concierge Agent — DeFi Yield 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).

Returns DeFi yield pool data (APY, chain, symbol, project) filtered by chain and/or project for a given natural-language or structured query

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-yields
- 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-defi-yield-intelligence-4c6ef0d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9rpV4ZqiQOvLd5ZlwL2ng

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-defi-yield-intelligence-4c6ef0d6 -d '<json body>'
```

Example prompt: What are the best yield pools on Solana right now, especially for SOL-USDC pairs — filter by Meteora if possible and show me the APY?

## When to prefer this

Use this endpoint when an AI agent needs real-time DeFi yield and APY data across multiple chains (Solana, Ethereum, Base, Arbitrum) with optional filtering by project. Prefer over generic DeFi aggregators when you need pay-per-call pricing without subscriptions, or when querying via natural language message field alongside structured filters.

## Known failure modes

- Invalid chain value (not solana/ethereum/base/arbitrum) returns error
- No pools found for specified project filter returns empty pools array
- Payment failure via x402 returns 402 status with payment details
- Malformed request body returns 400 error
- Service unavailability returns 5xx error

## How this service works

Screened yield pools (Jupiter, Meteora, DLMM, major DEX/lending venues)

## Output

A JSON object with ok:true and an array of pools, each containing APY percentage, chain identifier, token symbol pair (e.g. SOL-USDC), and project name. Useful for comparing yield opportunities across DeFi protocols.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "solana | ethereum | base | arbitrum"
  },
  "message": {
   "type": "string"
  },
  "project": {
   "type": "string",
   "description": "Filter project id substring"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pools": [
   {
    "apy": 12.4,
    "chain": "solana",
    "symbol": "SOL-USDC",
    "project": "meteora"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-defi-yield-intelligence-4c6ef0d6/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)
