# Concierge Agent — Whale Positioning Intelligence

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

Returns long/short ratio and directional bias (whale positioning) for BTC, ETH, and/or SOL via pay-per-call AI market intelligence

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-whales
- Price: $0.02/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-whale-positioning-intelligence-0c7f63ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7_l1n7jN3sFC_xngsBYdH

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-whale-positioning-intelligence-0c7f63ac -d '<json body>'
```

Example prompt: What's the current whale positioning — long/short ratio and bias — for BTC, ETH, and SOL right now?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call snapshot of whale long/short positioning and directional bias for BTC, ETH, and/or SOL. Prefer this over generic price feeds when you want sentiment or positioning data rather than raw price. It is ideal for trading agents, DeFi strategy bots, or market briefing workflows that need directional market intelligence on the major crypto assets.

## Known failure modes

- Invalid symbol submitted (only BTC, ETH, SOL are supported) — likely 400 or validation error
- Payment not authorized or insufficient USDC balance — 402 Payment Required
- Service unavailable or upstream data feed issue — 500 or timeout
- Empty symbols array — may return empty positioning list or error
- Rate limit exceeded — 429 Too Many Requests

## How this service works

Top-trader long/short positioning proxy (Binance futures)

## Output

A JSON object with an 'ok' boolean and a 'positioning' array, each entry containing a symbol (BTC/ETH/SOL), a directional bias (e.g. 'long'), and the long/short ratio (e.g. 1.12), indicating whether large market participants are net long or short on each asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbols": {
   "type": "array",
   "items": {
    "enum": [
     "BTC",
     "ETH",
     "SOL"
    ],
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "positioning": [
   {
    "bias": "long",
    "symbol": "BTC",
    "longShortRatio": 1.12
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-whale-positioning-intelligence-0c7f63ac/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)
