# Oddify Market Detail Lookup

> Oddify Market Detail Lookup is a paid API for AI agents from api.oddify.xyz, paid per call via x402, $0.0001/call, status unknown (last checked 2026-09-14).

Retrieve detailed data for a single Polymarket prediction market by ID, condition ID, name, or token ID

## Facts

- Endpoint: POST https://api.oddify.xyz/api/v1/data/market-detail
- Price: $0.0001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oddify-market-detail-lookup-dc050af4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WTTIrTxQ3j8Ytyg3_Mjnr

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 oddify-market-detail-lookup-dc050af4 -d '<json body>'
```

Example prompt: Pull up the full market details for the Polymarket market named 'Will the Fed cut rates in September 2025?' — I need its current odds, metadata, and condition ID.

## When to prefer this

Use this endpoint when you need full details on a single, specific Polymarket market and already have an identifier (market ID, condition ID, token ID, or exact name). Prefer this over the markets list endpoint when you want deep metadata for one market rather than paginated browsing.

## Known failure modes

- Market not found for the given ID or condition ID — returns empty or error response
- Invalid or malformed market ID / token ID — may return 400 or null data
- Market has been resolved or delisted — data may be incomplete
- Payment not processed via x402 — request blocked
- Ambiguous market name match — may return unexpected result or error

## How this service works

Get a single market by ID, condition ID, market name, or token ID

## Output

Returns a structured object containing a meta field with request metadata and a market field with full market details including pricing, odds, token info, condition ID, and other market-level attributes from Polymarket.

## Response schema (JSON Schema)

```json
{
 "output": {
  "data": {
   "meta": "object",
   "market": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oddify-market-detail-lookup-dc050af4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oddify.xyz](https://www.zero.xyz/host/api.oddify.xyz/llms.txt)
