{
  "openapi": "3.1.0",
  "info": {
    "title": "SERPgent public company facts",
    "version": "1.0.0",
    "description": "Read-only public service information. No audit, booking, or payment operations. The free AI Recommendation Check is a browser form on the homepage, not part of this API."
  },
  "servers": [
    {
      "url": "https://serpgent.onrender.com"
    }
  ],
  "paths": {
    "/company.json": {
      "get": {
        "operationId": "getCompanyFacts",
        "summary": "Read SERPgent services, audience, process, contact details, pricing policy, and limitations.",
        "responses": {
          "200": {
            "description": "Public company facts",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "name",
                    "description",
                    "services",
                    "contact",
                    "limits"
                  ],
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "services": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "deliverable": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "contact": {
                      "type": "object",
                      "properties": {
                        "email": {
                          "type": "string",
                          "format": "email"
                        },
                        "telegram": {
                          "type": "string",
                          "format": "uri"
                        }
                      }
                    },
                    "limits": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
