# Reloadpi Voucher Countries List

> Reloadpi Voucher Countries List is a paid API for AI agents from api.reloadpi.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns a list of all countries where digital vouchers and gift cards are available on the Reloadpi platform

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/vouchers/countries
- Price: $0.004/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-9a03d81d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HQyqtNNyN4x-Zei_H9xoK

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-9a03d81d
```

Example prompt: Show me all the countries where I can buy digital gift cards and vouchers through Reloadpi.

## When to prefer this

Use this endpoint when you need to discover which countries are supported before searching for vouchers or gift cards, or when you need to validate whether a specific country has digital voucher availability. This is the correct starting point for geographic filtering in a voucher purchasing workflow, prior to calling the voucher search or brand listing endpoints.

## Known failure modes

- Network timeout or server error returns 5xx with no country list
- Authentication or payment failure (x402 payment required) returns 402 if payment not provided
- Empty response body if catalog has no active countries
- Rate limiting may return 429 if called too frequently

## How this service works

Reloadpi — List all countries where digital vouchers and gift cards are available

## Output

A JSON array of country objects, each containing a two-letter ISO country code and full country name, representing every market where Reloadpi's digital voucher and gift card catalog is 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": {
      "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-9a03d81d/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)
