# PennyRail Router Execute Network

> PennyRail Router Execute Network is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Routes a natural-language or product-ID-based task to the appropriate PennyRail micro-service and executes it via on-chain USDC settlement

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/router/execute/network
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pennyrail-router-execute-network-c8d643ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PMCZmyP8CFxIl6AtNWwqb

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 pennyrail-router-execute-network-c8d643ce -d '<json body>'
```

Example prompt: Use PennyRail to run this task — 'summarize the following text into three bullet points: [text]' — and route it to the best matching product on the network.

## When to prefer this

Choose this endpoint when you want to dynamically route a task to the best-matching PennyRail micro-service without knowing the exact product ahead of time, or when you have a specific PennyRail product ID and want to execute it directly with automatic USDC micro-payment settlement. Prefer it over manual API lookup when the task is expressed in natural language and the correct downstream service is uncertain.

## Known failure modes

- Intent cannot be matched to any PennyRail product — returns an error or empty resolution
- Product ID not found or deprecated — results in a resolution failure
- Input string malformed or rejected by the resolved product
- Payment authorization fails or USDC balance insufficient — transaction not settled
- Network or upstream micro-service timeout — partial or no result returned

## How this service works

Machine-readable settlement service

## Output

A free-form JSON object whose shape depends on the resolved PennyRail product — may include the task output, status, product metadata, and settlement confirmation fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "string",
   "description": "Input passed to the resolved PennyRail product."
  },
  "intent": {
   "type": "string",
   "description": "Natural-language task. Omit when productId is supplied."
  },
  "productId": {
   "type": "string",
   "description": "Optional exact PennyRail product id returned by find/quote."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-router-execute-network-c8d643ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
