# VIBE Top Picks — Polymarket Condition Quote

> VIBE Top Picks — Polymarket Condition Quote is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a price quote for a specific Polymarket prediction market outcome (Yes/No) given a condition ID, accessed via x402 micropayment on Base.

## Facts

- Endpoint: POST https://api.vibe.airforce/api/x402/vibe-tools/pmxt/quote
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-top-picks-polymarket-condition-quote-28422c62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xH5KtgAhf-0tPtVkEcdyn

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 vibe-top-picks-polymarket-condition-quote-28422c62 -d '<json body>'
```

Example prompt: Get me the current price quote for the 'Yes' outcome on Polymarket condition ID 0x1234abc... — I want to know what it's trading at right now.

## When to prefer this

Use this endpoint when you need a real-time price or implied probability quote for a specific Polymarket prediction market outcome by condition ID, and you want to pay per-call without API keys or accounts. Prefer this over scraping Polymarket directly or using other data providers when you already have a condition ID and need fast, structured quote data.

## Known failure modes

- Invalid or unknown condition_id returns an error or empty result
- Missing required condition_id field returns a validation error
- Invalid outcome value (not 'Yes' or 'No') may return an error
- Payment failure on Base network blocks the request
- Polymarket data unavailable or stale at time of request

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

A price quote for the specified Polymarket prediction market outcome (e.g., Yes or No), reflecting current market pricing for that condition, paid via $0.005 USDC micropayment on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "condition_id"
 ],
 "properties": {
  "outcome": {
   "type": "string",
   "description": "Outcome to quote (e.g., 'Yes', 'No')"
  },
  "condition_id": {
   "type": "string",
   "description": "Polymarket condition ID"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-top-picks-polymarket-condition-quote-28422c62/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
