# Concierge Agent — Market Intelligence A2A Pipeline

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

Orchestrates AI-driven crypto/DeFi market intelligence via an agent-to-agent pipeline, returning bias verdicts, conviction signals, and downstream delegate actions with pay-per-call micropayments.

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-a2a-pipeline
- Price: $0.25/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-market-intelligence-a2a-pipeline-f292dbb2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BZO0or7SoBg4Q_s4FxWJF

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-market-intelligence-a2a-pipeline-f292dbb2 -d '<json body>'
```

Example prompt: Run the Concierge intel A2A pipeline with the context 'BTC 24h desk scan' and include insider creator signals, then tell me the market bias, conviction level, and what delegate actions it recommends for downstream agents.

## When to prefer this

Use this endpoint when you need a high-level orchestration layer that not only returns a market intelligence verdict but also tells your agent which downstream endpoints to call next, effectively acting as a meta-router for a crypto/DeFi research pipeline. Prefer this over individual wire or signal endpoints when you want a unified A2A handoff string and structured conviction score in a single call.

## Known failure modes

- Payment not included or invalid — returns 402 Payment Required
- Malformed message field — pipeline may return no meaningful verdict
- includeInsider flag ignored if Lounge signals unavailable — partial response
- Network or orchestration timeout — no delegate actions returned
- Invalid x402 payment amount — call rejected before processing

## How this service works

Agent-to-agent orchestration — desk brief + machine-readable A2A handoff + delegate routing to peer agents

## Output

Returns a JSON object with ok status, an A2A mesh URL, a structured handoff string encoding asset class, timeframe, bias, conviction, signal, and regime, plus a list of delegate actions specifying which downstream Concierge endpoints to call next and at what price.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "message": {
   "type": "string",
   "description": "Desk / orchestration context for downstream agents"
  },
  "includeInsider": {
   "type": "boolean",
   "description": "Include Lounge creator signals in verdict"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "a2a": {
   "mesh": "https://conc-exe.xyz/api/agent-a2a-mesh",
   "schema": "concierge-a2a-v1",
   "handoff": "A2A|asset=BTC|class=crypto|tf=24h|bias=neutral|conviction=M|signal=watch|regime=mixed|src=concierge",
   "delegate": [
    {
     "action": "call",
     "reason": "Neutral desk — scan wire headlines for near-term catalysts",
     "target": "concierge",
     "endpoint": "https://conc-exe.xyz/api/concierge-intel-wire",
     "priceUsdc": 0.02
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-market-intelligence-a2a-pipeline-f292dbb2/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)
