# Concierge AI Chat (conc-exe.xyz)

> Concierge AI Chat (conc-exe.xyz) 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-14).

Sends a single chat, enhance, or image-generation turn to a multi-mode AI concierge with optional market data and conversation history

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/conc-exe-xyz-97bb0883
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8dI25gS-XbOVVl00uojYD

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 conc-exe-xyz-97bb0883 -d '<json body>'
```

Example prompt: Send this message to the Concierge AI in chat mode: 'What are the key risks for tech stocks this week?' — here's our conversation so far: user asked about inflation, model said it's moderating.

## When to prefer this

Use this endpoint when you need a single-turn interaction with a multi-mode AI concierge that supports chat, content enhancement, and image generation in one API, especially when you have market tick data or a signal draft to enrich the context. It costs $0.10 USDC per call via x402 micropayment, making it suitable for per-request pay-as-you-go AI access without subscription overhead.

## Known failure modes

- Payment required or insufficient USDC balance — 402 response
- Invalid mode enum value — 400 validation error
- Missing required message field — 400 bad request
- Malformed history array (missing role or text) — 400 validation error
- Service unavailable or timeout — 503 or 504
- Signal object missing title/summary in enhance mode — may return degraded output

## How this service works

Concierge AI chat turn (single request)

## Output

An AI-generated response from the concierge service — could be a chat reply, an enhanced signal draft, or a generated image, depending on the mode selected. The response reflects the provided message, conversation history, and any optional market context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "chat",
    "enhance",
    "image"
   ],
   "type": "string",
   "description": "Concierge mode"
  },
  "market": {
   "type": "array",
   "description": "Optional market ticks from UI"
  },
  "signal": {
   "type": "object",
   "properties": {
    "title": {
     "type": "string"
    },
    "summary": {
     "type": "string"
    }
   },
   "description": "Optional signal draft for enhance mode"
  },
  "history": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "text"
    ],
    "properties": {
     "role": {
      "enum": [
       "user",
       "model"
      ],
      "type": "string"
     },
     "text": {
      "type": "string"
     }
    }
   },
   "description": "Prior chat turns"
  },
  "message": {
   "type": "string",
   "description": "User message"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "reply": "<p>Analysis…</p>",
  "topics": [
   "crypto",
   "macro"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/conc-exe-xyz-97bb0883/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)
