# Aegis Batch Route — x402 Agent Service Router

> Aegis Batch Route — x402 Agent Service Router is a paid API for AI agents from aegis.borisinc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Batch-routes multiple agent requests to verified, trust-scored x402-payable services in a single call, returning routing URLs, trust receipts, and margin-aware pricing.

## Facts

- Endpoint: POST https://aegis.borisinc.com/route/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/aegis-batch-route-x402-agent-service-router-83a542a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-gtj-gBA9R5XxYmwMdSuF

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 aegis-batch-route-x402-agent-service-router-83a542a3 -d '<json body>'
```

Example prompt: I need to find and route to the best verified x402-payable services for transcription and weather lookup in one shot — use Aegis to batch those two requests, check their trust scores, and give me the routing URLs and what each will cost.

## When to prefer this

Choose this endpoint when an agent needs to discover, trust-check, and route to multiple x402-payable services in a single round-trip, especially when cost transparency (margin vs upstream pricing) and signed trust receipts are required before spending. Prefer over single-route calls when orchestrating multi-step agent workflows where several capabilities must be procured simultaneously. Best suited for agents operating in the x402 micropayment ecosystem that need verified, purchase-history-backed trust signals rather than self-reported API listings.

## Known failure modes

- Unrecognized or unverified service in batch — no trusted route found, partial batch failure
- Payment failure — insufficient USDC balance or x402 payment rejected
- Upstream service unavailable — routing URL returned but service unreachable
- Malformed batch request — missing required service identifiers returns 400-equivalent error
- Trust score below threshold — service exists but receipt not signed, routing declined

## How this service works

Search 2,400+ x402 services ranked by delivery-verified trust. Free discovery, paid trust checks, payment routing with failover. We buy from sellers to prove they deliver.

## Output

Returns a structured JSON object per batched request containing: the routed upstream service URL, a signed trust receipt confirming real-purchase verification, margin in USD, upstream cost in USD, and total route price in USD, plus any data returned by the upstream service.

## 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": [],
     "properties": {
      "url": {
       "type": "string",
       "description": "target service URL"
      },
      "need": {
       "type": "string",
       "description": "procure: natural-language need"
      },
      "budget": {
       "type": "number",
       "description": "procure: max total USD"
      },
      "capability": {
       "type": "string",
       "description": "or a capability to route by"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "receipt": {
   "signed": true
  },
  "routing": "https://best-service.example.com",
  "margin_usd": 0.002,
  "upstream_usd": 0.01,
  "route_price_usd": 0.012
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aegis-batch-route-x402-agent-service-router-83a542a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aegis.borisinc.com](https://www.zero.xyz/host/aegis.borisinc.com/llms.txt)
