# bozaaagh USDC Invoice Generator (x402 v2, Base Mainnet)

> bozaaagh USDC Invoice Generator (x402 v2, Base Mainnet) is a paid API for AI agents from 107-189-20-242.sslip.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Creates a USDC-on-Base payment invoice with line items, returning an invoice ID, total, and payment URL — payable via x402 v2 protocol.

## Facts

- Endpoint: POST https://107-189-20-242.sslip.io/x402/invoice
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bozaaagh-usdc-invoice-generator-x402-v2-base-mainnet-03d26990
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C7_8EYfF90LBWEkaxZcTk

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 bozaaagh-usdc-invoice-generator-x402-v2-base-mainnet-03d26990 -d '<json body>'
```

Example prompt: Create a USDC invoice on Base for two items — one for SRT subtitle generation at $0.01 and one for Persian-to-English translation at $0.01 — with memo 'AI services batch' and send it to wallet address 0xABC123.

## When to prefer this

Choose this endpoint when you need to programmatically generate a USDC payment invoice on Base mainnet using the x402 v2 protocol, especially for micro-payment workflows around AI services like subtitle generation or Persian/English translation. It is purpose-built for pay-per-call crypto billing at $0.01 per call and is ideal when you want a shareable invoice URL rather than a direct on-chain push transaction.

## Known failure modes

- Missing or empty 'items' array returns a 400 validation error
- Invalid 'payTo' wallet address causes invoice creation failure
- Network or node errors on Base mainnet may cause timeouts
- Malformed request body returns schema validation error
- x402 facilitator unavailability may cause service disruption

## How this service works

x402-paid micro endpoints: SRT subtitle generation, Persian<->English AI translation, USDC-on-Base invoice creation. Pay per call with USDC on Base via x402 v2.

## Output

Returns a JSON object with an invoice ID (string), total amount in USDC (number), and an invoiceUrl (string) the payer can visit to complete the USDC payment on Base mainnet via x402 v2.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "memo": {
   "type": "string"
  },
  "items": {
   "type": "array"
  },
  "payTo": {
   "type": "string",
   "description": "Recipient address (default our bounty wallet)"
  },
  "client": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  },
  "total": {
   "type": "number"
  },
  "invoiceUrl": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bozaaagh-usdc-invoice-generator-x402-v2-base-mainnet-03d26990/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 107-189-20-242.sslip.io](https://www.zero.xyz/host/107-189-20-242.sslip.io/llms.txt)
