# Concierge Agent — Scalp Intelligence Endpoint

> Concierge Agent — Scalp Intelligence Endpoint 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 short-term technical analysis (RSI, trend, last close) for BTC, ETH, BNB, or SOL across 5m/15m intervals to support scalp trading decisions

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-scalp
- 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-scalp-intelligence-endpoint-77d76a31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bh9LgIf4zcxY_ITsxAevc

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-scalp-intelligence-endpoint-77d76a31 -d '<json body>'
```

Example prompt: Can you pull the 15-minute scalp analysis for BTC and ETH right now — I want to see the RSI-14, trend, and last close so I can decide whether to enter a position?

## When to prefer this

Use this endpoint when an agent needs fast, lightweight short-term technical analysis (RSI, trend) for major crypto assets (BTC/ETH/BNB/SOL) specifically for scalp trading decisions on 5m or 15m charts. Prefer this over general market data APIs when RSI-14 and trend classification are the primary outputs needed and pay-per-call micropayment via x402 is acceptable.

## Known failure modes

- Unsupported symbol passed (only BTC, ETH, BNB, SOL accepted) — likely returns error or empty assets array
- Unsupported interval passed (only 5m, 15m accepted) — validation error
- Payment not provided or x402 payment rejected — 402 Payment Required response
- Downstream market data unavailable — may return ok:false or stale data
- Empty symbols or intervals array — may return empty assets list

## How this service works

BTC/ETH/BNB/SOL USDT scalping desk — 5m & 15m klines, RSI/EMA, perp funding & positioning

## Output

Returns a JSON object with per-asset technical analysis including RSI-14, trend label (neutral/bullish/bearish), last close price, and the active trading pair for each requested symbol and interval combination. Also echoes back the applied filters for symbols, pairs, and intervals.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "message": {
   "type": "string",
   "description": "Scalp context (e.g. BTC 15m entry)"
  },
  "symbols": {
   "type": "array",
   "items": {
    "enum": [
     "BTC",
     "ETH",
     "BNB",
     "SOL"
    ],
    "type": "string"
   }
  },
  "intervals": {
   "type": "array",
   "items": {
    "enum": [
     "5m",
     "15m"
    ],
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "assets": [
   {
    "pair": "BTCUSDT",
    "symbol": "BTC",
    "intervals": [
     {
      "ta": {
       "rsi14": 52,
       "trend": "neutral",
       "lastClose": 60781
      },
      "interval": "15m"
     }
    ]
   }
  ],
  "filters": {
   "pairs": [
    "BTC/USDT"
   ],
   "symbols": [
    "BTC"
   ],
   "intervals": [
    "5m",
    "15m"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-scalp-intelligence-endpoint-77d76a31/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)
