{
  "openapi": "3.1.0",
  "info": {
    "title": "CircleCI Public API",
    "version": "3.0.0",
    "description": "Discovery-oriented endpoints that expose machine-readable API context for AI agents."
  },
  "servers": [
    {
      "url": "https://circleci.com"
    }
  ],
  "paths": {
    "/.well-known/api-catalog": {
      "get": {
        "summary": "Get the RFC 9727 API catalog",
        "responses": {
          "200": {
            "description": "API catalog in RFC 9264 linkset format",
            "content": {
              "application/linkset+json": {}
            }
          }
        }
      }
    },
    "/docs/api/v3/index.md": {
      "get": {
        "summary": "Get the V3 API reference as markdown, with the conventions in full",
        "responses": {
          "200": {
            "description": "Every V3 operation, and a link to the file holding its detail",
            "content": {
              "text/markdown": {}
            }
          }
        }
      }
    },
    "/docs/api/v3/llms.txt": {
      "get": {
        "summary": "List every file of the V3 API reference",
        "responses": {
          "200": {
            "description": "llms.txt index of the reference documents",
            "content": {
              "text/plain": {}
            }
          }
        }
      }
    },
    "/fullopenapi.json": {
      "get": {
        "summary": "Get the full CircleCI Public API OpenAPI specification",
        "responses": {
          "200": {
            "description": "OpenAPI specification in JSON format",
            "content": {
              "application/json": {}
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Get concise site context for AI assistants",
        "responses": {
          "200": {
            "description": "Markdown content",
            "content": {
              "text/markdown": {}
            }
          }
        }
      }
    }
  }
}
