{
 "openapi": "3.0.3",
 "info": {
  "title": "Polymarket View odds API",
  "version": "1.0.0",
  "description": "Static, key-less JSON with Polymarket odds for 200 top markets. CC BY 4.0: credit PolymarketTrader with a link.",
  "license": {
   "name": "CC BY 4.0",
   "url": "https://creativecommons.org/licenses/by/4.0/"
  }
 },
 "servers": [
  {
   "url": "https://polymarkettrader.com"
  }
 ],
 "paths": {
  "/api/v1/odds/index.json": {
   "get": {
    "summary": "All tracked markets",
    "responses": {
     "200": {
      "description": "Market list"
     }
    }
   }
  },
  "/api/v1/odds/{slug}.json": {
   "get": {
    "summary": "One market with outcomes and 30-day history",
    "parameters": [
     {
      "name": "slug",
      "in": "path",
      "required": true,
      "schema": {
       "type": "string"
      }
     }
    ],
    "responses": {
     "200": {
      "description": "Market detail"
     }
    }
   }
  },
  "/api/v1/topics/index.json": {
   "get": {
    "summary": "All topics with market counts",
    "responses": {
     "200": {
      "description": "Topic list"
     }
    }
   }
  },
  "/api/v1/topics/{topic}.json": {
   "get": {
    "summary": "Every live market on one topic",
    "parameters": [
     {
      "name": "topic",
      "in": "path",
      "required": true,
      "schema": {
       "type": "string"
      }
     }
    ],
    "responses": {
     "200": {
      "description": "Topic markets"
     }
    }
   }
  },
  "/api/v1/movers.json": {
   "get": {
    "summary": "24-hour biggest movers",
    "responses": {
     "200": {
      "description": "Movers list"
     }
    }
   }
  },
  "/api/v1/fees.json": {
   "get": {
    "summary": "Live Polymarket fee schedules by category",
    "responses": {
     "200": {
      "description": "Fee schedules"
     }
    }
   }
  },
  "/api/v1/compare/polymarket-kalshi.json": {
   "get": {
    "summary": "Same events priced on Polymarket and Kalshi",
    "responses": {
     "200": {
      "description": "Comparison"
     }
    }
   }
  }
 }
}
