# Reloadpi Voucher Countries List

> Reloadpi Voucher Countries List is a paid API for AI agents from shoppi-backend.onrender.com, paid per call via x402, $0.004000/call, status unknown (last checked 2026-09-14).

Returns the list of all countries where digital vouchers and gift cards are available for purchase

## Facts

- Endpoint: GET https://shoppi-backend.onrender.com/api/catalog/vouchers/countries
- Price: $0.004000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shoppi-backend-onrender-com-6be11b6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J_rPSgkVAnExTR4msoKni

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 shoppi-backend-onrender-com-6be11b6a
```

Example prompt: Can you show me all the countries where I can buy digital vouchers and gift cards through Reloadpi?

## When to prefer this

Use this endpoint when you need to determine geographic availability of digital vouchers and gift cards before querying specific brands or offers, or when building a country selector UI for a gift card purchase flow. Prefer this over the brand catalog endpoint when you only need the supported country list without full product details.

## Known failure modes

- Service unavailable on Render free tier (cold start timeout)
- Empty or partial list if catalog data is incomplete
- HTTP 402 if payment header is missing or invalid
- HTTP 500 if upstream Reloadpi catalog service is down

## How this service works

Lists the countries available for voucher catalog availability and filtering.

## Output

A list of countries (likely with country codes and names) where digital vouchers and gift cards are available, covering 150+ countries across various regions globally.

## 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/shoppi-backend-onrender-com-6be11b6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shoppi-backend.onrender.com](https://www.zero.xyz/host/shoppi-backend.onrender.com/llms.txt)
