# Oddify Event Detail Lookup

> Oddify Event 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-15).

Retrieves a single Polymarket prediction market event by event ID, returning event metadata, associated markets, and pagination info

## Facts

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

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-event-detail-lookup-e1d1ed5a -d '<json body>'
```

Example prompt: Can you pull up the full event details from Polymarket for event ID 'evt_12345abc' — I need to see the metadata and all associated markets for that event.

## When to prefer this

Use this endpoint when you need full structured detail on a specific known Polymarket event by its event ID, including associated markets and metadata. Prefer this over the events-list endpoint when you already have the event ID and need the complete record for a single event. This is the right choice when building detailed event views, enriching prediction market data, or verifying event-level information.

## Known failure modes

- Invalid or unknown event ID returns empty events array or error response
- Malformed request body causes 400 Bad Request
- Event ID for a delisted or expired event may return empty data
- Network timeout or upstream Polymarket data unavailability causes 5xx error
- Missing required event ID parameter results in validation error

## How this service works

Get a single event by event ID

## Output

Returns a JSON object with three keys: 'meta' (object with event-level metadata), 'events' (array of event records associated with the given ID), and 'pagination' (object for navigating results). Provides comprehensive information about a single Polymarket prediction market event.

## Response schema (JSON Schema)

```json
{
 "output": {
  "data": {
   "meta": "object",
   "events": "array",
   "pagination": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oddify-event-detail-lookup-e1d1ed5a/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)
