{
  "status": "live",
  "openapi": "3.0.3",
  "info": {
    "title": "AI Web App Store Catalog API",
    "version": "1.0.0",
    "description": "Live Performability (P) surface for the AI Web App Store. Browse approved AI Web App listings — free catalog, no paid checkout in v1."
  },
  "servers": [
    {
      "url": "https://www.aiwebappstore.com",
      "description": "Production storefront"
    }
  ],
  "paths": {
    "/api/v1/catalog/index.json": {
      "get": {
        "operationId": "listCatalog",
        "summary": "List approved catalog items",
        "responses": {
          "200": {
            "description": "Catalog payload",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/catalog/{slug}.json": {
      "get": {
        "operationId": "getApp",
        "summary": "Get a single app by slug",
        "parameters": [
          {
            "name": "slug",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "App payload"
          }
        }
      }
    },
    "/api/v1/shelves/{shelf}.json": {
      "get": {
        "operationId": "listShelf",
        "summary": "List apps on a named shelf",
        "parameters": [
          {
            "name": "shelf",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "featured",
                "games",
                "verified-fair",
                "what-were-playing",
                "new",
                "apps",
                "tools"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Shelf payload"
          }
        }
      }
    }
  },
  "vcap": {
    "visibility": "https://www.theaiwebapp.com/irl/ai-web-app-store",
    "citability": "https://www.theaiwebapp.com/irl/ai-web-app-store/llms.txt",
    "actionability": "https://www.aiwebappstore.com/mcp.json",
    "performability": "https://www.aiwebappstore.com/openapi.json",
    "storefront": "https://www.aiwebappstore.com"
  }
}
