# Reloadpi - List Countries with Prepaid Mobile Top-Up Availability

> Reloadpi - List Countries with Prepaid Mobile Top-Up Availability 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 a list of all countries where prepaid mobile top-up and airtime recharge services are available via Reloadpi

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/topups/countries
- 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-ebe637fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CBIrM3C1QesoS-sN53ieW

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

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

## When to prefer this

Use this endpoint when you need to discover which countries are eligible for prepaid mobile top-up before searching for specific top-up offers, or to validate whether a target country is supported before attempting a recharge transaction. Prefer this over the voucher countries endpoint when the use case is specifically about mobile airtime rather than gift cards.

## Known failure modes

- API returns empty list if service is temporarily unavailable
- HTTP 402 if payment of $0.001 USDC is not provided via x402 protocol
- HTTP 500 on internal server error
- Truncated or partial list if upstream provider data is incomplete

## How this service works

Reloadpi — List all countries where prepaid mobile top-ups are available

## Output

An array of country objects, each containing a two-letter ISO country code and country name, covering 150+ countries where Reloadpi supports prepaid mobile top-up and airtime recharge services.

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

## More

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