# Concierge Agent — Market Intelligence Listing Scanner

> Concierge Agent — Market Intelligence Listing Scanner 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).

Scans for crypto token listing candidates and catalysts using AI-powered DeFi and market intelligence, returning conviction-rated theses per asset.

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-listing
- 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-market-intelligence-listing-scanner-7e010edf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wEmb33UROGgk9Fj7GePAQ

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-listing-scanner-7e010edf -d '<json body>'
```

Example prompt: Scan Ethereum for up to 10 token listing candidates right now — focus on tokens with volume spikes and headline listing rumors, and include insider signal data if available.

## When to prefer this

Use this endpoint when an agent needs AI-synthesized, conviction-rated analysis of which crypto tokens are likely listing candidates based on on-chain signals, volume patterns, and rumor intelligence — especially when a pay-per-call model via x402 is acceptable and the agent needs structured thesis output rather than raw price feeds.

## Known failure modes

- Invalid or unsupported chain identifier returns error or empty candidates array
- Payment not included or insufficient USDC results in 402 payment required response
- Limit parameter set too high may result in truncated or slow response
- No listing candidates found for the given chain returns empty candidates array
- includeInsider flag set true but no insider data available returns candidates without insider field

## How this service works

Potential exchange listing candidates — insider-first multi-source alpha desk

## Output

Returns a JSON object with ok status, a summary message, and an array of candidate assets each containing the token symbol, a thesis explaining the listing catalyst, and a conviction level (e.g. low/medium/high).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string"
  },
  "limit": {
   "type": "number"
  },
  "message": {
   "type": "string",
   "description": "Token or listing catalyst focus"
  },
  "includeInsider": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "summary": "Listing desk scan complete.",
  "candidates": [
   {
    "asset": "TOKEN",
    "thesis": "Volume + headline listing rumor.",
    "conviction": "low"
   }
  ]
 }
}
```

## More

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