{
  "swagger": "2.0",
  "info": {
    "title": "Scrapedo",
    "description": "Scrape any web page through Scrape.do — handles proxies, anti-bot, CAPTCHA, and JavaScript rendering.",
    "version": "1.0"
  },
  "host": "api.scrape.do",
  "basePath": "/",
  "schemes": [
    "https"
  ],
  "consumes": [],
  "produces": [],
  "paths": {
    "/": {
      "get": {
        "responses": {
          "default": {
            "description": "default",
            "schema": {}
          }
        },
        "summary": "Scrape a URL",
        "description": "Fetch the fully rendered HTML of any web page through Scrape.do.",
        "operationId": "ScrapeUrl",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "type": "string",
            "description": "The full URL to scrape (e.g. https://example.com)"
          },
          {
            "name": "render",
            "in": "query",
            "required": false,
            "type": "boolean"
          },
          {
            "name": "returnJSON",
            "in": "query",
            "required": false,
            "type": "boolean"
          }
        ]
      }
    }
  },
  "definitions": {},
  "parameters": {},
  "responses": {},
  "security": [
    {
      "api_key": []
    }
  ],
  "tags": [],
  "securityDefinitions": {
    "api_key": {
      "type": "apiKey",
      "in": "query",
      "name": "token"
    }
  }
}