# Concierge Agent — Airdrop Intelligence Endpoint

> Concierge Agent — Airdrop Intelligence Endpoint 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).

Returns AI-ranked airdrop candidate tokens with insider signals and conviction scores for a given blockchain or DeFi theme

## Facts

- Endpoint: POST https://conc-exe.xyz/api/concierge-intel-airdrop
- 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-airdrop-intelligence-endpoint-29282509
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oe-hGCx_UoHYeSzNNTFU4

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-airdrop-intelligence-endpoint-29282509 -d '<json body>'
```

Example prompt: Give me up to 6 airdrop candidates on Solana focused on new lending protocols — include insider Lounge signals and tell me which ones have the highest conviction.

## When to prefer this

Use this endpoint when an agent or user wants a ranked, AI-curated shortlist of airdrop candidates with insider signal weighting — especially when farming DeFi airdrops on Solana, Ethereum, or Base. Prefer this over generic on-chain data APIs when you need narrative + conviction scoring rather than raw protocol metrics.

## Known failure modes

- Invalid chain value returns error or empty candidates
- limit outside 1–8 range may be clamped or rejected
- Vague or unrecognized message theme may return generic results
- No insider signals available for obscure protocols reduces output quality
- Pay-per-call x402 payment failure blocks request entirely

## How this service works

Potential airdrop candidates — insider Lounge signals first, then institutional/onchain/narrative overlay

## Output

A JSON object with a natural-language summary of airdrop opportunities and an array of candidate tokens, each with an asset ticker, investment thesis, conviction rating (e.g. medium/high), and insider weight classification (e.g. primary/secondary). Useful for quickly ranking where to allocate attention for potential airdrop farming.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Optional chain filter (solana, ethereum, base)"
  },
  "limit": {
   "type": "number",
   "description": "Max candidates 1–8 (default 5)"
  },
  "message": {
   "type": "string",
   "description": "Focus theme or protocol name"
  },
  "includeInsider": {
   "type": "boolean",
   "description": "Include Lounge insider signals (default true)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "summary": "Two Solana protocols show insider + narrative airdrop overlap.",
  "candidates": [
   {
    "asset": "EXAMPLE",
    "thesis": "Creator signal + TVL growth — monitor points program.",
    "conviction": "medium",
    "insiderWeight": "primary"
   }
  ]
 }
}
```

## More

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