{
  "openapi": "3.1.0",
  "info": {
    "title": "Vectoken Public Discovery API",
    "version": "1.0.0",
    "description": "Public discovery document for 向量智元 Vectoken. The public website exposes discovery metadata and links to the model platform console. Protected product APIs, if enabled for a customer, are provisioned through the console or business contact process."
  },
  "servers": [
    {
      "url": "https://www.vectoken.cn"
    }
  ],
  "paths": {
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog",
        "description": "Returns RFC 9727 API discovery metadata.",
        "responses": {
          "200": {
            "description": "API catalog",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "AI-readable site summary",
        "responses": {
          "200": {
            "description": "Text summary for AI agents",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/auth.md": {
      "get": {
        "summary": "Agent authentication and registration notes",
        "responses": {
          "200": {
            "description": "Markdown authentication notes",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
