# x402 Agent Suite Pro – Compliance Ledger

> x402 Agent Suite Pro – Compliance Ledger is a paid API for AI agents from x402-agent-suite-production.up.railway.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-13).

Checks whether an HTTP request type is allowed under compliance rules and returns an authorization verdict with a summary after x402 micropayment settlement.

## Facts

- Endpoint: POST https://x402-agent-suite-production.up.railway.app/api/compliance/ledger
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agent-suite-pro-compliance-ledger-52f278eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oAvgx89lwxdeQ4R01_qIb

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 x402-agent-suite-pro-compliance-ledger-52f278eb -d '<json body>'
```

Example prompt: Check the compliance ledger to see if a GET request is allowed under current policy, and give me a summary of the authorization decision.

## When to prefer this

Choose this endpoint when you need a structured compliance authorization verdict (allowed/not allowed) for a specific HTTP request method, especially within an x402-enabled AI agent pipeline that requires per-call micropayment enforcement. Prefer this over generic policy engines when your agent fleet needs a lightweight, low-latency compliance gate with a human-readable summary, and when you are already operating within the x402 payment infrastructure ecosystem.

## Known failure modes

- Payment not settled — x402 payment flow incomplete, no compliance verdict returned
- Invalid or unsupported HTTP method submitted (only GET, HEAD, DELETE accepted)
- Method field missing from input — returns validation error
- Network timeout on Railway-hosted service — no response
- Ledger unavailable or policy configuration error — may return ok:false with error summary

## How this service works

24 paid x402 infrastructure APIs for AI agent fleets: buy advisor, audition coach, guard, proxy, MPP, attestations, and pipeline orchestration.

## Output

Returns a JSON object with three fields: 'ok' (boolean indicating successful ledger response), 'allowed' (boolean indicating whether the request type is permitted), and 'summary' (a human-readable string explaining the compliance decision). Response is returned after x402 micropayment of $0.12 USDC is settled.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "allowed",
      "summary"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "allowed": {
       "type": "boolean"
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "allowed": true,
  "summary": "Paid response after x402 settlement"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-agent-suite-pro-compliance-ledger-52f278eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-suite-production.up.railway.app](https://www.zero.xyz/host/x402-agent-suite-production.up.railway.app/llms.txt)
