# Polymarket Market Lookup by Slug

> Polymarket Market Lookup by Slug is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Look up a Polymarket prediction market by its URL slug, returning the question, outcomes, prices, conditionId, and CLOB token IDs.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-market-by-slug
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-market-lookup-by-slug-0d584fc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ke9v0V_Lwl0OiB3_JHiws

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-market-lookup-by-slug-0d584fc8 -d '<json body>'
```

Example prompt: Can you look up the Polymarket market for the slug 'will-the-fed-cut-rates-in-2025' and tell me the outcomes, their current prices, and the CLOB token IDs?

## When to prefer this

Use this endpoint when you need to resolve a Polymarket market's slug into its full metadata — especially CLOB token IDs and conditionId — which are required for programmatic trading or market monitoring. Prefer this over scraping Polymarket directly, as it provides structured Gamma data at a low per-call cost via x402.

## Known failure modes

- Invalid or non-existent slug returns an error or empty result
- Market has been resolved or delisted and data may be stale or unavailable
- Payment failure via x402 protocol results in 402 response before data is returned
- Malformed POST body causes validation error

## How this service works

Look up a Polymarket market by its url slug: question, outcomes, outcome prices, conditionId and CLOB token ids. Free Polymarket Gamma data.

## Output

Returns structured market data including the question text, list of outcome labels, current outcome prices, the market's conditionId, and CLOB token IDs for each outcome — sourced from Polymarket's Gamma API.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-market-lookup-by-slug-0d584fc8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
