# Shoppi Mobile Top-Up Supported Countries

> Shoppi Mobile Top-Up Supported Countries is a paid API for AI agents from shoppi-backend.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the list of ISO country codes where mobile top-up services are available

## Facts

- Endpoint: GET https://shoppi-backend.onrender.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/shoppi-backend-onrender-com-1aff14ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uOKAOUiO8yDHPkcNeuXHY

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-1aff14ff
```

Example prompt: Can you show me the full list of countries where I can send a mobile top-up or airtime recharge through Shoppi?

## When to prefer this

Use this endpoint when you need to validate whether a specific country is supported before attempting a mobile top-up, or when building a country picker UI for a top-up flow. Prefer this over hardcoding country lists as it reflects live catalog availability.

## Known failure modes

- Service temporarily unavailable due to Render.com cold start (503 or timeout on first request)
- Empty or partial list returned if upstream provider catalog is degraded
- Payment failure if x402 micropayment of $0.001 USDC is not properly handled

## How this service works

Returns the list of supported country codes for mobile top-up services.

## Output

An array of objects each containing a 'code' field with an ISO 3166-1 alpha-2 country code (e.g. {"code":"NG"}, {"code":"US"}), representing all countries where mobile top-up services are supported on the platform.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array",
 "items": {
  "type": "object",
  "required": [
   "code"
  ],
  "properties": {
   "code": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shoppi-backend-onrender-com-1aff14ff/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)
