# x402 Agent Suite Pro – Router Endpoint

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

Routes HTTP requests through the x402 payment-gated infrastructure router, enabling AI agents to access a suite of 24 paid agent tools after on-chain micropayment settlement.

## Facts

- Endpoint: POST https://x402-agent-suite-production.up.railway.app/api/router/route
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agent-suite-pro-router-endpoint-14128406
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gA7tbt0-K51U5shx75Qpc

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-router-endpoint-14128406 -d '<json body>'
```

Example prompt: Route a GET request through the x402 agent suite router to check if it's allowed — this should go through x402 payment settlement at $0.02 USDC and come back with an authorization summary.

## When to prefer this

Choose this endpoint when your AI agent needs to access any of the 24 x402-gated infrastructure services (buy advisor, guard, proxy, MPP, attestations, pipeline orchestration, audition coach) and requires programmatic payment settlement via the x402 protocol. Best suited for agent fleets that need a single routing layer with built-in micropayment authorization rather than calling individual endpoints separately.

## Known failure modes

- Payment not settled — x402 token missing or invalid, returns 402 Payment Required
- Invalid HTTP method provided — only GET, HEAD, DELETE accepted
- Malformed input object — missing required 'type' or 'method' fields
- Downstream tool unavailable — router cannot reach the requested agent suite service
- Insufficient USDC balance — micropayment of $0.02 cannot be completed

## 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 an 'ok' boolean indicating request success, an 'allowed' boolean indicating whether the gated action is permitted after x402 payment settlement, and a 'summary' string describing the outcome of the routed request.

## 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-router-endpoint-14128406/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)
