Reloadpi — eSIM purchase schema and instructions
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.
1000 (raw units)
price
8
calls / 30d
4
unique payers
2026-09-11
updated
Provider
api.reloadpi.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8a598A28a435Fe44D31854251b1c88d0781ea822",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"body": {
"offerId": "ESIM-AT-1D-UNLIMITED-NOROAM"
},
"bodyParams": {
"iccid": {
"description": "For top-up/recharge of existing eSIM only",
"required": false,
"type": "string"
},
"offerId": {
"description": "eSIM offer ID from GET /esims/offers",
"required": true,
"type": "string"
}
},
"contentType": "application/json",
"endpoint": "POST /api/catalog/esims/purchase",
"method": "POST",
"payment": "x402 — exact USDC amount, fetched live per offerId",
"priceRange": "$4.00–$1,092 depending on plan — the browse price is the exact amount charged",
"response": {
"iccid": "8944422711118437246",
"ok": true,
"pollUrl": null,
"qrCode": "base64encodedpng",
"qrCodeUrl": "data:image/png;base64,...",
"status": "SUCCESS",
"transactionId": "zendit-uuid"
},
"workflow": [
"1. GET /api/catalog/esims/offers to browse plans",
"2. GET /api/catalog/esims/offers/:offerId for exact price",
"3. POST /api/catalog/esims/purchase — x402 will return 402 with exact USDC amount, then pay and retry"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.reloadpi.com/api/catalog/esims/purchase/info" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.reloadpi.com/api/catalog/esims/purchase/info");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.reloadpi.com/api/catalog/esims/purchase/info")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4901.json, and this resource appears in /discovery/resources and /discovery/search.