{
  "openapi": "3.1.0",
  "info": {
    "title": "Feerasta public API",
    "version": "1.0.0",
    "description": "The public agent-usable surface of feerasta.ai: a read-only service catalog and a contact/pilot-request endpoint. No authentication required.",
    "contact": { "url": "https://feerasta.ai/contact" }
  },
  "servers": [{ "url": "https://feerasta.ai" }],
  "paths": {
    "/agents.json": {
      "get": {
        "operationId": "listServices",
        "summary": "Service and pricing catalog",
        "responses": { "200": { "description": "Catalog of Feerasta services, pricing bands, and the contact action", "content": { "application/json": {} } } }
      }
    },
    "/api/contact": {
      "post": {
        "operationId": "requestPilot",
        "summary": "Send an inquiry or pilot request to the Feerasta team",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": ["name", "email", "message"],
                "properties": {
                  "name": { "type": "string" },
                  "email": { "type": "string", "format": "email" },
                  "business": { "type": "string" },
                  "phone": { "type": "string" },
                  "message": { "type": "string" }
                }
              }
            }
          }
        },
        "responses": {
          "200": { "description": "Inquiry accepted" },
          "400": { "description": "Validation failure" }
        }
      }
    }
  }
}
