polymarket_top_markets

Pack: polymarket · Endpoint: https://gateway.pipeworx.io/polymarket/mcp

Highest-volume OPEN Polymarket markets right now — sorted by trading volume in the chosen window (24hr / 1wk / 1mo / 1yr / all). The “where is real money going this week” lens. Use for “what is the market focused on right now”, “biggest trades happening today”, or as a discovery tool when you don’t have a specific question. Each result has live yes/no prices in [0,1] = implied probability.

Parameters

NameTypeRequiredDescription
windowstringno24hr | 1wk | 1mo | 1yr | all (default 24hr)
limitnumberno1–100 per page (default 10)
offsetnumbernoPagination offset into the volume-ranked list (default 0). Use offset=100 (with limit=100) to fetch ranks 101–200, offset=200 for 201–300, etc. — walk the pages to build a true top-N-by-volume set.

Example call

Arguments

{
  "window": "24hr",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/polymarket/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"polymarket_top_markets","arguments":{"window":"24hr","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('polymarket_top_markets', {
  "window": "24hr",
  "limit": 10
});

More examples

{
  "window": "1wk",
  "limit": 20
}

Response shape

Always returns: window, count, markets

FieldTypeDescription
windowstringTime window for volume sorting
countnumberNumber of markets returned
marketsarrayTop markets by volume
Full JSON Schema
{
  "type": "object",
  "properties": {
    "window": {
      "type": "string",
      "description": "Time window for volume sorting"
    },
    "count": {
      "type": "number",
      "description": "Number of markets returned"
    },
    "markets": {
      "type": "array",
      "description": "Top markets by volume",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Market ID"
          },
          "slug": {
            "type": "string",
            "description": "Market slug"
          },
          "question": {
            "type": "string",
            "description": "Market question"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Resolution criteria"
          },
          "outcomes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Outcome labels"
          },
          "yes_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "Yes token price (probability)"
          },
          "no_price": {
            "type": [
              "number",
              "null"
            ],
            "description": "No token price (probability)"
          },
          "implied_probability_yes": {
            "type": [
              "number",
              "null"
            ],
            "description": "Implied Yes probability"
          },
          "volume_total": {
            "type": [
              "number",
              "null"
            ],
            "description": "Total volume"
          },
          "volume_24hr": {
            "type": [
              "number",
              "null"
            ],
            "description": "24-hour volume"
          },
          "volume_1wk": {
            "type": [
              "number",
              "null"
            ],
            "description": "1-week volume"
          },
          "volume_1mo": {
            "type": [
              "number",
              "null"
            ],
            "description": "1-month volume"
          },
          "liquidity": {
            "type": [
              "number",
              "null"
            ],
            "description": "Liquidity depth"
          },
          "active": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether market is active"
          },
          "closed": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether market is closed"
          },
          "accepting_orders": {
            "type": [
              "boolean",
              "null"
            ],
            "description": "Whether market accepts orders"
          },
          "end_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Market end date"
          },
          "start_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Market start date"
          },
          "image": {
            "type": [
              "string",
              "null"
            ],
            "description": "Image URL"
          },
          "url": {
            "type": "string",
            "description": "Polymarket URL"
          }
        }
      }
    }
  },
  "required": [
    "window",
    "count",
    "markets"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "polymarket": {
      "url": "https://gateway.pipeworx.io/polymarket/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026