# Reloadpi – List Mobile Top-Up Regions

> Reloadpi – List Mobile Top-Up Regions 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 a list of available geographic regions for mobile top-up and airtime services

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/topups/regions
- 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-e3ad2ad1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4U-U3kELTBsrvGwk6tsod

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

Example prompt: Can you show me all the available regions where I can send a prepaid mobile top-up through Reloadpi?

## When to prefer this

Use this endpoint as a first step before searching or filtering mobile top-up offers — it provides the valid region IDs needed to narrow down top-up searches by geography. Prefer this over the country-level endpoint when you need a higher-level regional grouping rather than individual country listings.

## Known failure modes

- API key or payment authentication failure (402 payment required if x402 credentials are missing)
- Service temporarily unavailable (503/500 server error)
- Empty regions array if catalog is under maintenance
- Rate limiting if too many requests are made in quick succession

## How this service works

Reloadpi — List available regions for mobile top-up services

## Output

An array of region objects, each containing an 'id' (string identifier) and 'name' (human-readable region label), representing all geographic regions where Reloadpi mobile top-up services are available.

## 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",
     "properties": {
      "regions": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "string"
         },
         "name": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-reloadpi-com-e3ad2ad1/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)
