# Reloadpi Topup Purchase Schema Info

> Reloadpi Topup 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, required fields (msisdn), and example payload for the POST /topups/purchase endpoint

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/topups/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-3b86b871
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BV-riDZ3bJfzcxJdZgH5D

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-3b86b871
```

Example prompt: What fields do I need to include when submitting a mobile top-up purchase on Reloadpi — show me the required format and a real example of the POST body, especially around the msisdn.

## When to prefer this

Use this endpoint before attempting to call POST /topups/purchase to understand the exact request format, required fields, and example payload. Ideal for agents that need to dynamically discover how to structure a top-up purchase request rather than relying on hardcoded assumptions about the schema.

## Known failure modes

- No input parameters required so failures are rare; service unavailability returns 5xx
- x402 payment failure if USDC micropayment is not properly handled
- Malformed response if the API schema has changed and the info endpoint is stale

## How this service works

Reloadpi — Topup purchase schema. Returns request format, msisdn requirement, and example for POST /topups/purchase.

## Output

Returns the expected request format for POST /topups/purchase, including required fields such as msisdn (mobile phone number), field types, constraints, and a worked example of a valid purchase payload. Useful for building or validating a top-up purchase request before submitting it.

## 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-3b86b871/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)
