# Council of AI — Evidence Bundle (GSPC Board / AI Claim Verification)

> Council of AI — Evidence Bundle (GSPC Board / AI Claim Verification) is a paid API for AI agents from councilof.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a signed OSCAL evidence bundle for a specific AI compliance obligation (DORA, CRA, article-50, article-53) so callers can verify AI claims against the current GSPC board.

## Facts

- Endpoint: GET https://councilof.ai/api/evidence-bundle
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/council-of-ai-evidence-bundle-gspc-board-ai-claim-verification-cad29101
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vXexRc97ifA4_rJ69z2SB

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-evidence-bundle-gspc-board-ai-claim-verification-cad29101
```

Example prompt: Pull the Council of AI evidence bundle for our AI product under the DORA obligation — I need to verify whether the signed cards on the GSPC board show compliance.

## When to prefer this

Choose this endpoint when you need a machine-readable, cryptographically signed OSCAL evidence bundle tied to a specific EU/UK/DORA/CRA compliance obligation for an AI subject. Prefer it over the free CSOAI door endpoint when you need full evidence card detail and OSCAL assessment results rather than just board totals. Use it for audit pipelines, regulatory submissions, or agent-driven compliance checks where verifiable signed output is required.

## Known failure modes

- Missing required 'obligation' query parameter returns a validation error
- Unsupported obligation enum value (outside article-50, article-53, dora, cra) returns an error
- Subject not found on the GSPC board returns an empty cards object
- Payment of $250 USDC not supplied or rejected by x402 protocol blocks access
- Invalid bundle version (not '1') may return an error or unexpected result
- Network or upstream signing service outage results in a 5xx error

## How this service works

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

## Output

A JSON evidence bundle (schema csoai.evidence-bundle/0.1) containing: a manifest card identifying the bundle surface, a 'cards' object with any signed compliance cards on the GSPC board for the queried subject and obligation, and an OSCAL assessment-results object. Empty cells remain empty. The bundle is cryptographically signed and tied to the current GSPC board state.

## 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": [
      "obligation",
      "bundle"
     ],
     "properties": {
      "bundle": {
       "type": "string",
       "const": "1"
      },
      "subject": {
       "type": "string"
      },
      "obligation": {
       "enum": [
        "article-50",
        "article-53",
        "dora",
        "cra"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "bundle",
  "schema": "csoai.evidence-bundle/0.1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/council-of-ai-evidence-bundle-gspc-board-ai-claim-verification-cad29101/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)
