# Concierge Agent — Intel Wire (Market Headlines Feed)

> Concierge Agent — Intel Wire (Market Headlines Feed) 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 filtered market and geopolitical news headlines from the Lounge wire memory, supporting category and relevance filtering.

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-wire
- 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-intel-wire-market-headlines-feed-05d53f59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WH8TaXbUDW60NbsiblpwJ

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-intel-wire-market-headlines-feed-05d53f59 -d '<json body>'
```

Example prompt: Pull the top 5 Geopolitics headlines from the Concierge intel wire that are relevant to oil supply risks.

## When to prefer this

Use this endpoint when you need concise, categorized market and geopolitical news headlines filtered by topic or relevance — especially within a DeFi/crypto-aware context. Prefer this over general news APIs when you want pay-per-call micro-priced access with category filters like Macro, Geopolitics, or Crypto without subscription overhead.

## Known failure modes

- Invalid category string returns empty or unfiltered results
- limit out of range (< 1 or > 20) may return default 10 headlines or an error
- Payment failure via x402 results in 402 response blocking access
- Empty wire memory for the given filter returns an empty headlines array
- Network timeout on the POST request

## How this service works

Wire headline digest — live RSS plus persisted Lounge feed with optional category filter

## Output

A JSON object with ok:true and an array of up to 20 headlines, each containing a title, origin (e.g. lounge), source name (e.g. Reuters), and category (e.g. Geopolitics, Macro, Crypto).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max headlines 1–20 (default 10)"
  },
  "message": {
   "type": "string",
   "description": "Relevance filter for Lounge wire memory"
  },
  "category": {
   "type": "string",
   "description": "Category filter (Macro, Geopolitics, Crypto, …)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "headlines": [
   {
    "title": "Oil supply risk rises on shipping disruption",
    "origin": "lounge",
    "source": "Reuters",
    "category": "Geopolitics"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-intel-wire-market-headlines-feed-05d53f59/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)
