# Reloadpi eSIM Purchase Schema Info

> Reloadpi eSIM 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-14).

Returns the exact request format, required fields, pricing range, and example payload for purchasing an eSIM via POST /esims/purchase

## Facts

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

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-e27e993b
```

Example prompt: Can you pull up the Reloadpi eSIM purchase schema so I know exactly what fields and format I need to send when buying an eSIM — including an example request and the pricing range?

## When to prefer this

Use this endpoint before attempting to call POST /esims/purchase to discover the exact required fields, validate your intended payload structure, and see a working example. Prefer this over guessing schema fields or checking external docs.

## Known failure modes

- Endpoint unavailable (503) if Reloadpi API is down
- Payment failure (402) if the $0.001 USDC micropayment is not processed
- Unexpected empty or malformed response if schema documentation is stale

## How this service works

Reloadpi — eSIM purchase schema and instructions. Returns the exact request format, pricing range, and example for POST /esims/purchase. The purchase charges the final price shown by /esims/offers.

## Output

Returns the complete request schema for POST /esims/purchase including required fields, data types, pricing range, and a concrete example payload showing how to structure an eSIM purchase request.

## 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-e27e993b/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)
