{
  "info": {
    "description": "Discovery, status, public history and bounded read-only tools. No transaction authority.",
    "title": "GAIP Read-Only Agent API",
    "version": "0.1.0"
  },
  "openapi": "3.1.0",
  "paths": {
    "/history.json": {
      "get": {
        "operationId": "getHistory",
        "responses": {
          "200": {
            "description": "Public evidence feed"
          }
        }
      }
    },
    "/mcp": {
      "get": {
        "operationId": "getMcpMetadata",
        "responses": {
          "200": {
            "description": "Payment-disabled Staged MCP catalogue"
          }
        }
      }
    },
    "/receipts/{receipt_id}": {
      "get": {
        "operationId": "getReceipt",
        "parameters": [
          {
            "in": "path",
            "name": "receipt_id",
            "required": true,
            "schema": {
              "format": "uuid",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Receipt"
          },
          "404": {
            "description": "Not found"
          }
        }
      }
    },
    "/status.json": {
      "get": {
        "operationId": "getStatus",
        "responses": {
          "200": {
            "description": "Status"
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://www.gaipagents.com"
    }
  ]
}