# x402 Agent Suite Pro – Evidence Locker Export

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

Exports evidence locker records via a paid x402-gated HTTP request, returning an allowed/summary payload after on-chain payment settlement.

## Facts

- Endpoint: POST https://x402-agent-suite-production.up.railway.app/api/evidence-locker/export
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agent-suite-pro-evidence-locker-export-e80f743f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IadizLxdvDe4GGRZQX_lp

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-evidence-locker-export-e80f743f -d '<json body>'
```

Example prompt: Export my evidence locker records using a GET request through the x402 Agent Suite — I need the full allowed status and summary after the payment settles.

## When to prefer this

Choose this endpoint when you need to programmatically export evidence locker data from the x402 Agent Suite and are operating in an x402-compatible payment environment (0.1 USDC per call). Prefer this over generic storage or file-export APIs when your pipeline is already integrated with x402 payment settlement and you need the specific ok/allowed/summary response structure for compliance or audit workflows.

## Known failure modes

- Payment not settled — x402 402 response returned, access denied until micropayment confirmed
- Invalid HTTP method supplied — only GET, HEAD, DELETE are accepted; POST/PUT will fail schema validation
- Missing required 'input' object or 'type'/'method' fields — returns validation error
- Network timeout on Railway deployment — endpoint may be cold-started, causing latency spike
- Insufficient USDC balance — payment facilitation fails, export blocked

## 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

A JSON object with three fields: 'ok' (boolean indicating request success), 'allowed' (boolean indicating whether the payment-gated access was granted), and 'summary' (a human-readable string describing the exported evidence locker content or settlement outcome).

## 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-evidence-locker-export-e80f743f/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)
