{
  "openapi": "3.1.0",
  "info": {
    "title": "Collabstr Public API",
    "version": "1.0.0",
    "description": "Read-only public discovery surface for Collabstr — vetted influencer marketplace. Authenticated payment-aware endpoints are advertised here for MPP/x-payment-info discovery.",
    "contact": {
      "email": "support@collabstr.com",
      "url": "https://collabstr.com/auth.md"
    },
    "license": {
      "name": "Terms of Service",
      "url": "https://collabstr.com/terms"
    }
  },
  "servers": [
    {
      "url": "https://collabstr.com",
      "description": "Public discovery host"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "summary": "Compact LLM ingestion index",
        "operationId": "getLlmsIndex",
        "responses": {
          "200": {
            "description": "Markdown index",
            "content": {
              "text/markdown": {}
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Full-content LLM ingestion file",
        "operationId": "getLlmsFullIndex",
        "responses": {
          "200": {
            "description": "Markdown index",
            "content": {
              "text/markdown": {}
            }
          }
        }
      }
    },
    "/top-influencers/{niche}": {
      "get": {
        "summary": "Top creators by niche",
        "operationId": "getTopByNiche",
        "parameters": [
          {
            "name": "niche",
            "in": "path",
            "required": true,
            "schema": {"type": "string"}
          }
        ],
        "responses": {
          "200": {
            "description": "HTML page listing top creators",
            "content": {"text/html": {}}
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-Key"
      }
    }
  }
}
