# Polymarket Event Details by Slug

> Polymarket Event Details by Slug is a paid API for AI agents from wallet-intel-api-production-3ec7.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches full details for a Polymarket prediction market event by slug, including all sub-markets, current odds, volume, liquidity, and description.

## Facts

- Endpoint: GET https://wallet-intel-api-production-3ec7.up.railway.app/api/v1/polymarket/event/:slug
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-event-details-by-slug-4e755685
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ImR_IYXUbDo7LipzyIRmB

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 polymarket-event-details-by-slug-4e755685
```

Example prompt: Pull the full Polymarket event details for the slug 'will-democrats-win-the-2026-midterms' — I want all the sub-markets, their current odds, total volume, and liquidity.

## When to prefer this

Use this endpoint when you need comprehensive details about a specific Polymarket event — including all sub-markets and their current odds — and you already have or can obtain the event's slug. Prefer this over search endpoints when you know the exact event you want.

## Known failure modes

- Invalid or misspelled slug returns 404 or empty result
- Slug from search results may not match current Polymarket event slugs
- Network or upstream Polymarket API downtime causes 5xx errors
- Payment failure via x402 prevents request from completing
- Event may have expired or been resolved, returning stale or empty odds

## How this service works

Full Polymarket event details by slug. All sub-markets, current odds, volume, liquidity, description, dates.

## Output

Returns a JSON object with the event's ID, title, description, liquidity, total volume, and an array of all sub-markets each with their own current odds and volume figures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Polymarket event slug (from trending or search results)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "volume": {
       "type": "number"
      },
      "markets": {
       "type": "array",
       "description": "All sub-markets with current odds and volume"
      },
      "liquidity": {
       "type": "number"
      },
      "description": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-event-details-by-slug-4e755685/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet-intel-api-production-3ec7.up.railway.app](https://www.zero.xyz/host/wallet-intel-api-production-3ec7.up.railway.app/llms.txt)
