# Coin Railz Instant Agent Wallet Creator

> Coin Railz Instant Agent Wallet Creator is a paid API for AI agents from coinrailz.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Creates an MPC-secured USDC wallet (Circle Developer-Controlled Wallet) for an AI agent instantly via a paid API call

## Facts

- Endpoint: POST https://coinrailz.com/x402/service/instant-agent-wallet
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coin-railz-instant-agent-wallet-creation-7f8a1c0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-9ZBXR6ChfglCbunSaGGL

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 coin-railz-instant-agent-wallet-creation-7f8a1c0a -d '<json body>'
```

Example prompt: Set up a new MPC-secured Circle USDC wallet for my AI agent with ID 'agent-trading-bot-001', labeled 'Trading Bot Primary Wallet', and fund it with 10 USDC to start.

## When to prefer this

Use this endpoint when you need to programmatically create a new Circle MPC-secured USDC wallet specifically for an AI agent identity, and want developer-controlled (not user-controlled) wallet infrastructure with instant provisioning. Prefer this over generic wallet APIs when you need Circle's MPC custody model and the x402 micropayment protocol for agent-native crypto infrastructure.

## Known failure modes

- Missing or invalid agentId returns a 400 validation error
- Payment of 1 USDC not fulfilled causes a 402 Payment Required response
- Circle API backend unavailable causes a 503 or timeout
- Duplicate agentId may conflict with an existing wallet depending on service logic
- Invalid initialFundingAmount (e.g. negative) may return a 400 error

## How this service works

Create MPC-secured USDC wallets instantly - Circle Developer-Controlled Wallets for AI agents (Premium B2B2C Infrastructure)

## Output

Returns a Circle wallet ID, the new on-chain wallet address, and the blockchain network the wallet was created on — all tied to the provided agentId and ready for autonomous USDC transactions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "agentId"
 ],
 "properties": {
  "agentId": {
   "type": "string",
   "description": "Unique AI agent identifier"
  },
  "description": {
   "type": "string",
   "description": "Wallet description/label (optional)"
  },
  "initialFundingAmount": {
   "type": "number",
   "description": "Initial USDC funding amount (optional)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "network": {
   "type": "string",
   "description": "Blockchain network"
  },
  "walletId": {
   "type": "string",
   "description": "Circle wallet ID"
  },
  "walletAddress": {
   "type": "string",
   "description": "New wallet address"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coin-railz-instant-agent-wallet-creation-7f8a1c0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
