{
  "openapi": "3.1.0",
  "info": {
    "title": "Node Playwright Proxy",
    "summary": "Playwright-driven Chromium that returns post-render HTML.",
    "description": "Equivalent of go-js-proxy in Node; uses Playwright instead of chromedp.",
    "version": "1.0.0",
    "contact": {
      "name": "baditaflorin",
      "url": "https://github.com/baditaflorin/node-js-proxy"
    }
  },
  "servers": [
    {
      "url": "https://node-js-proxy.0exec.com",
      "description": "Production"
    }
  ],
  "tags": [
    {
      "name": "proxy"
    },
    {
      "name": "headless"
    },
    {
      "name": "javascript"
    },
    {
      "name": "playwright"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Render with Playwright",
        "responses": {
          "200": {
            "description": "text/html (post-JS DOM)"
          },
          "400": {
            "description": "Bad request \u2014 missing/invalid params"
          },
          "500": {
            "description": "Server error"
          }
        },
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "description": "Target URL to render",
            "schema": {
              "type": "string"
            }
          }
        ],
        "x-example-url": "https://node-js-proxy.0exec.com/?url=https://example.com"
      }
    },
    "/.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": {}
}
