Skip to content
Eden Engine

Polymarket Open Interest History (Daily Time Series)

omnial/prediction-market-polymarket-open-interest

Given a Polymarket market's condition_id and a time window (7d, 30d, 90d, 180d, or 1y), returns a daily time series of that market's total open interest in USD along with the day-over-day net change, so you can see how capital committed to the market grew or shrank over the requested window.

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": [
    "condition_id"
  ],
  "properties": {
    "time_range": {
      "enum": [
        "7d",
        "30d",
        "90d",
        "180d",
        "1y"
      ],
      "type": "string",
      "default": "30d",
      "description": "Window of history to return: 7d, 30d, 90d, 180d, or 1y. This endpoint uses time_range only — it does NOT accept interval. Example: 30d. Defaults to \"30d\"."
    },
    "condition_id": {
      "type": "string",
      "minLength": 1,
      "description": "Market condition identifier. Example: 0x6fefc0438c7598b23531457c8c60541990d0786bd4bd9dfc3eabc8d95c291092."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "number",
            "description": "Unix seconds, start of the day bucket."
          },
          "open_interest_usd": {
            "type": "number",
            "description": "Total open interest in the market, in USD, as of this day bucket."
          },
          "daily_net_change_usd": {
            "type": "number",
            "description": "Signed change in open_interest_usd versus the prior day bucket. Observed as exactly 0 on a day with no change (crypto-market-1y.json), not omitted."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per day bucket in the requested time_range window."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number"
        },
        "total": {
          "type": "number",
          "description": "Total day buckets available for this window."
        },
        "cached": {
          "type": "boolean"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The daily open-interest time series for the requested market and window, as returned at routing.responseResultPath ($.output).",
  "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 15, 2026