{
  "openapi": "3.1.0",
  "info": {
    "title": "It's Buzzing Public Tools API",
    "description": "Public endpoints for AI agents. No authentication required.",
    "version": "1.0.0",
    "contact": {
      "email": "hello@itsbuzzing.com",
      "url": "https://itsbuzzing.com/contact"
    }
  },
  "servers": [
    {
      "url": "https://itsbuzzing.com"
    }
  ],
  "paths": {
    "/api/public/knowledge": {
      "get": {
        "operationId": "getPlatformKnowledge",
        "summary": "Get structured knowledge about It's Buzzing",
        "description": "Returns complete structured data about the It's Buzzing platform including features, pricing, industries, and ambassador program.",
        "responses": {
          "200": {
            "description": "Platform knowledge object",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/tools/referral-roi": {
      "get": {
        "operationId": "getReferralRoiCalculator",
        "summary": "Referral ROI calculator for local businesses",
        "description": "Interactive tool that calculates expected referral revenue, ambassador costs, and net ROI based on business inputs.",
        "responses": {
          "200": {
            "description": "HTML calculator page"
          }
        }
      }
    },
    "/tools/clv-calculator": {
      "get": {
        "operationId": "getClvCalculator",
        "summary": "Customer Lifetime Value calculator",
        "description": "Calculates CLV and projects referral program revenue impact.",
        "responses": {
          "200": {
            "description": "HTML calculator page"
          }
        }
      }
    },
    "/tools/buzz-score": {
      "get": {
        "operationId": "getBuzzScore",
        "summary": "Word-of-mouth readiness score",
        "description": "Scores a business's current word-of-mouth readiness and provides actionable improvement recommendations.",
        "responses": {
          "200": {
            "description": "HTML assessment page"
          }
        }
      }
    },
    "/tools/qr-generator": {
      "get": {
        "operationId": "getQrGenerator",
        "summary": "QR code generator",
        "description": "Generates downloadable QR codes for any URL.",
        "responses": {
          "200": {
            "description": "HTML generator page"
          }
        }
      }
    }
  }
}