# Polymarket Intelligence API – Market Resolution Dossier

> Polymarket Intelligence API – Market Resolution Dossier is a paid API for AI agents from api.polym.uk, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a resolution-integrity dossier for a single Polymarket market, covering UMA oracle exposure, proposer/disputer on-chain records, post-open context, and comparable markets — no probability forecasts

## Facts

- Endpoint: GET https://api.polym.uk/market-intelligence/:conditionId
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-intelligence-api-market-resolution-dossier-d3369aac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hD3ntNEFQ7dKTRFtqlu_N

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-intelligence-api-market-resolution-dossier-d3369aac
```

Example prompt: Can you pull the resolution-integrity dossier for Polymarket market 0x3a4c2b7d1e8f9a0b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b — I want to see the UMA oracle exposure, any proposer and disputer records, and what comparable markets look like?

## When to prefer this

Use this endpoint when you need structured, on-chain-verified resolution integrity data for a specific Polymarket market — particularly proposer/disputer records from DisputePrice events, post-open context with a defined window, and comparable markets with named denominators. Prefer this over the free alternatives (dash.polym.uk/calibration.json, gamma-api.polymarket.com) when you need per-market proposer/disputer history, named comparables, or context appended after market open. Do not use this for price forecasting or probability estimates — it is strictly a factual dossier.

## Known failure modes

- 422 returned if conditionId is not in the currently covered market set — no charge applied
- Invalid conditionId format (not a 0x-prefixed 64-hex-char string) will fail schema validation
- Market may have partial coverage if some data dimensions are unavailable (coverage.level = 'partial')
- Payment failure or insufficient USDC balance prevents the paid call from completing
- conditionId outside the active observation window returns not-found response

## How this service works

Resolution-integrity dossier for one Polymarket market: UMA exposure, proposer and disputer records, post-open context, comparables. Never a forecast. BEFORE YOU PAY: free substitute https://dash.polym.uk/calibration.json and https://dash.polym.uk/uma-flip-rate.json and gamma-api.polymarket.com. THIS ADDS: Proposer/disputer records from DisputePrice on chain, denominator named; context appended AFTER the market opened, window stated; comparables. No probability: observations are not independent.

## Output

A JSON dossier containing: timestamp (asOf), the market question, coverage level (full or partial) with any missing fields noted, UMA oracle exposure details, rule integrity assessment, proposer and disputer on-chain records, comparable markets with base rates and story concentration, post-open price context with observation window, and a list of caveats. Returns 422 (unbilled) if the conditionId is outside the currently covered market window.

## 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",
     "required": [
      "conditionId"
     ],
     "properties": {
      "conditionId": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{64}$",
       "description": "A market is covered only while it is in the observed window, so any single example ages. Take a covered markets[].conditionId from the free snapshot at https://dash.polym.uk/markets.json, or call GET /coverage (free) for how many markets are decomposed right now. A conditionId outside the covered set returns 422 and is not billed."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "oneOf": [
      {
       "type": "object",
       "required": [
        "asOf",
        "found",
        "source",
        "conditionId",
        "question",
        "coverage",
        "oracleExposure",
        "ruleIntegrity",
        "comparables",
        "priceContext",
        "caveats"
       ],
       "properties": {
        "asOf": {
         "type": "string",
         "format": "date-time"
        },
        "found": {
         "const": true
        },
        "source": {
         "type": "string"
        },
        "caveats": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "coverage": {
         "type": "object",
         "required": [
          "level",
          "missing"
         ],
         "properties": {
          "level": {
           "enum": [
            "full",
            "partial"
           ],
           "type": "string"
          },
          "missing": {
           "type": "array",
           "items": {
            "type": "string"
           }
          }
         }
        },
        "question": {
         "type": "string"
        },
        "comparables": {
         "type": "objec
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-intelligence-api-market-resolution-dossier-d3369aac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.polym.uk](https://www.zero.xyz/host/api.polym.uk/llms.txt)
