{
  "openapi": "3.1.0",
  "info": {
    "title": "Python aiohttp Proxy",
    "summary": "aiohttp-based forward proxy with rotating user-agent.",
    "description": "Uses Webshare upstream for egress IP rotation.",
    "version": "1.0.0",
    "contact": {
      "name": "baditaflorin",
      "url": "https://github.com/baditaflorin/python-proxy"
    }
  },
  "servers": [
    {
      "url": "https://python-proxy.0exec.com",
      "description": "Production"
    }
  ],
  "tags": [
    {
      "name": "proxy"
    },
    {
      "name": "http"
    },
    {
      "name": "scraping"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Fetch a URL",
        "responses": {
          "200": {
            "description": "text/html"
          },
          "400": {
            "description": "Bad request \u2014 missing/invalid params"
          },
          "500": {
            "description": "Server error"
          }
        },
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "description": "Target URL",
            "schema": {
              "type": "string"
            }
          }
        ],
        "x-example-url": "https://python-proxy.0exec.com/?url=https://api.ipify.org"
      }
    },
    "/.deploy/version.json": {
      "get": {
        "summary": "Deploy metadata (gateway-served)",
        "responses": {
          "200": {
            "description": "JSON with service, commit, build_date"
          }
        },
        "tags": [
          "meta"
        ]
      }
    },
    "/_gw_health": {
      "get": {
        "summary": "Gateway-level liveness (always 200 if gateway up)",
        "responses": {
          "200": {
            "description": "ok"
          }
        },
        "tags": [
          "meta"
        ]
      }
    },
    "/openapi.json": {
      "get": {
        "summary": "This OpenAPI document",
        "responses": {
          "200": {
            "description": "OpenAPI 3.1 spec"
          }
        },
        "tags": [
          "meta"
        ]
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "LLM-friendly plain-text description of this service",
        "responses": {
          "200": {
            "description": "text/plain"
          }
        },
        "tags": [
          "meta"
        ]
      }
    }
  },
  "components": {}
}
