# Reloadpi Voucher Brands Catalog

> Reloadpi Voucher Brands Catalog 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).

Lists all available voucher and gift card brands (e.g. Amazon, Google Play, Netflix) supported by the Reloadpi platform

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/vouchers/brands
- 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-472391e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x0JO8cLlF1QnAvNLlk2Gi

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-472391e7
```

Example prompt: Show me all the voucher and gift card brands available on Reloadpi — I want to see if they carry Amazon, Google Play, and Netflix.

## When to prefer this

Use this endpoint when you need to discover which voucher or gift card brands are available before searching for specific offers or making a purchase. It is the best starting point for catalog exploration when you don't yet know a specific brand ID.

## Known failure modes

- Network timeout or service unavailability returning 5xx errors
- Empty or truncated brand list if catalog data is temporarily unavailable
- Rate limiting or payment failure (402) if x402 micropayment not properly handled

## How this service works

Reloadpi — List all available voucher brands including Amazon, Google Play, Netflix and more

## Output

Returns an array of voucher brand objects, each containing a brand ID and brand name (e.g. Amazon, Google Play, Netflix). The full list covers 5000+ brands across 150+ countries.

## 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": {
      "brands": {
       "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-472391e7/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)
