Skip to content
Eden Engine

Polymarket Market Details (by Market Slug)

omnial/prediction-market-polymarket-markets

Given a single Polymarket market slug, returns that market's title, description, category/tags, Yes/No outcome token ids, status, and trading volume (1-week, 1-month, 1-year, and all-time). An unrecognized market slug returns an empty result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
prediction-markets
Provider price
$0.03276 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "market_slug"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Example: 20. Defaults to 20."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Example: 0. Defaults to 0."
    },
    "market_slug": {
      "type": "string",
      "minLength": 1,
      "description": "Polymarket market slug (identifies a single Yes/No outcome). Discover slugs via /v1/search/prediction-market?platform=polymarket&q={keyword}. For a multi-outcome question (e.g. 'who wins the 2024 election'), use the /polymarket/events endpoint with event_slug instead. Example: will-bitcoin-dip-to-45000-by-december-31-2026-674-923-755-971-998-525-926-245-316-517-544-589-965-923-986-841-815-224."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "title": {
            "type": "string"
          },
          "side_a": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Polymarket's CLOB outcome token id for this side."
              },
              "label": {
                "type": "string"
              }
            },
            "description": "The first outcome (observed as 'Yes').",
            "additionalProperties": true
          },
          "side_b": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Polymarket's CLOB outcome token id for this side."
              },
              "label": {
                "type": "string"
              }
            },
            "description": "The second outcome (observed as 'No').",
            "additionalProperties": true
          },
          "status": {
            "type": "string",
            "description": "e.g. 'open', observed on the one real entry."
          },
          "category": {
            "type": "string"
          },
          "end_time": {
            "type": "number",
            "description": "Unix seconds."
          },
          "close_time": {
            "type": "number",
            "description": "Unix seconds the market closed for trading, or 0 while open."
          },
          "event_slug": {
            "type": "string",
            "description": "Slug of the (possibly multi-outcome) parent event."
          },
          "start_time": {
            "type": "number",
            "description": "Unix seconds."
          },
          "description": {
            "type": "string"
          },
          "market_slug": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "condition_id": {
            "type": "string",
            "description": "Polymarket's on-chain condition id identifying this market."
          },
          "volume_total": {
            "type": "number"
          },
          "volume_1_week": {
            "type": "number"
          },
          "volume_1_year": {
            "type": "number"
          },
          "completed_time": {
            "type": "number",
            "description": "Unix seconds the market resolved, or 0 on an open market observed."
          },
          "volume_1_month": {
            "type": "number"
          },
          "game_start_time": {
            "type": "number",
            "description": "Unix seconds a linked sports event starts, or 0 when not applicable (observed 0 on a non-sports market)."
          }
        },
        "additionalProperties": true
      },
      "description": "Zero or one entry: the market matching market_slug."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number"
        },
        "cached": {
          "type": "boolean"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": true
    }
  },
  "description": "A single-market lookup result. `data` is an empty array when market_slug is not recognized (see examples/invalid-slug-notfound.json) -- no top-level field is required.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.03276
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026