# Reloadpi Voucher Purchase Schema Info

> Reloadpi Voucher Purchase Schema Info is a paid API for AI agents from api.reloadpi.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the request format, recipient fields, priceType handling, and example payload required to POST a voucher purchase order

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/vouchers/purchase/info
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-reloadpi-com-bef40bd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nlGgeCWJad14Til3VXP3t

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 api-reloadpi-com-bef40bd5
```

Example prompt: Show me the request format and required fields I need to submit a voucher purchase on Reloadpi, including how priceType works and what a sample POST body looks like.

## When to prefer this

Use this endpoint before attempting to submit a voucher purchase order when you need to understand the correct request structure, required recipient fields, or how priceType affects the payload format. Prefer this over guessing the schema or relying on outdated documentation.

## Known failure modes

- Endpoint returns 402 if payment of $0.001 USDC is not provided
- Endpoint may return 404 or 500 if the documentation resource is unavailable
- Network timeout if the API host is unreachable

## How this service works

Reloadpi — Voucher purchase schema. Returns request format, recipient fields, priceType handling, and example for POST /vouchers/purchase.

## Output

Returns the complete request schema for POST /vouchers/purchase, including required and optional fields, recipient data requirements, how to handle fixed vs range priceType values, and an example JSON payload ready for use.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-reloadpi-com-bef40bd5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.reloadpi.com](https://www.zero.xyz/host/api.reloadpi.com/llms.txt)
