# Concierge Agent — Macro Market Intelligence

> Concierge Agent — Macro Market 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 macro market intelligence including upcoming financial events, live price marks, and sentiment index for major assets and DeFi markets.

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-macro
- 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-macro-market-intelligence-ae693b24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kaWO2rZJY1lnrY3G6-xL3

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-macro-market-intelligence-ae693b24 -d '<json body>'
```

Example prompt: Give me a quick macro market snapshot — upcoming events like FOMC decisions, live SPX price and 24h change, and the current market sentiment index.

## When to prefer this

Use this endpoint when an agent needs a consolidated macro market snapshot including upcoming financial calendar events, live asset prices, and sentiment scores in a single call — especially useful for DeFi-aware agents operating in the x402 pay-per-call ecosystem at low cost ($0.02 USDC).

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Malformed request body — returns 400 Bad Request
- Upstream data provider unavailable — may return 503 or stale data
- Rate limiting if too many calls in short window — returns 429 Too Many Requests

## How this service works

Macro snapshot — SPX, VIX, DXY, gold, BTC/ETH marks, Fear & Greed, Treasury yields, central-bank calendar

## Output

A JSON object containing: a list of upcoming macro events with dates and labels (e.g. FOMC decision on 2026-03-18), current price marks for major assets like SPX including 24h percentage change, and a sentiment object with a numeric index and label (e.g. 62 = Greed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "message": {
   "type": "string",
   "description": "Optional context for logging"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "macro": {
   "upcomingEvents": [
    {
     "when": "2026-03-18",
     "label": "FOMC decision"
    }
   ]
  },
  "marks": [
   {
    "price": "5,240.10",
    "symbol": "SPX",
    "change24h": "+0.42%"
   }
  ],
  "sentiment": {
   "index": 62,
   "label": "Greed"
  }
 }
}
```

## More

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