# Council of AI — Batch Receipts Reader (GSPC Board)

> Council of AI — Batch Receipts Reader (GSPC Board) is a paid API for AI agents from councilof.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves a time-windowed batch of signed AI claim receipts from the GSPC board, with optional free preview mode returning only count and hash.

## Facts

- Endpoint: GET https://councilof.ai/api/receipts/batch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/council-of-ai-batch-receipts-reader-gspc-board-12dd6901
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TQGetWy8VJYzcI6dxzTPw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability council-of-ai-batch-receipts-reader-gspc-board-12dd6901
```

Example prompt: Pull the Council of AI GSPC board receipts from January 1 2025 to January 31 2025 and tell me how many claims were recorded and what the batch hash is — use preview mode to keep it free.

## When to prefer this

Use this endpoint when you need to audit, verify, or monitor a time-bounded set of AI claim receipts from the GSPC board. Use the free preview mode (preview=1) when you only need the count and hash for integrity checks without paying per-call. Prefer this over the free CSOAI door endpoint when you need the actual receipt leaf data or Merkle roots within a specific time window rather than just live board totals.

## Known failure modes

- Missing required 'from' query parameter returns a 400 error
- Invalid ISO-8601 datetime format for 'from' or 'to' causes a parse error
- Payment not provided or invalid results in 402 Payment Required (except preview mode which is free)
- 'to' before 'from' may return an empty batch or error
- Batch cap of 200 items means large windows may be truncated

## How this service works

Explore the current GSPC measurements, see the published change record, verify signed evidence, and access the supported public feeds.

## Output

Returns a JSON object with a 'batch' containing: item count, capped list of receipt leaves, Merkle roots, and the time window. Also includes a batch-level SHA-256 hash and a manifest card with an optional ed25519 signature. In preview mode, only count, time span, and hash are returned without leaf data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from"
     ],
     "properties": {
      "to": {
       "type": "string",
       "format": "date-time",
       "description": "Window end (ISO-8601). Defaults to now."
      },
      "from": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (ISO-8601). Required."
      },
      "preview": {
       "type": "string",
       "const": "1",
       "description": "Free: count, span and the sha256 of the batch bytes, without the leaves"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "batch",
  "batch": {
   "cap": 200,
   "count": 0,
   "items": [],
   "roots": [],
   "window": {
    "to": "<iso>",
    "from": "<iso>"
   }
  },
  "schema": "csoai.receipts.batch/0.1",
  "batch_sha256": "<64-hex>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/council-of-ai-batch-receipts-reader-gspc-board-12dd6901/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from councilof.ai](https://www.zero.xyz/host/councilof.ai/llms.txt)
