# Reloadpi Voucher Search Filter Options

> Reloadpi Voucher Search Filter Options 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).

Returns available filter options (brands, countries, categories) for searching the voucher and gift card catalog

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/vouchers/filters
- 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-627ae1fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_alQCQMAPdZKUg8gVlWMU0

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-627ae1fd
```

Example prompt: What brands, countries, and categories can I use to filter the Reloadpi voucher catalog before searching for a gift card?

## When to prefer this

Use this endpoint before calling the voucher search endpoint to discover what valid filter values are available for brands, countries, and categories — avoids invalid filter errors and helps build dynamic filter UIs or agent decision trees.

## Known failure modes

- Service unavailable — 5xx error if Reloadpi API is down
- Empty arrays returned if catalog filters are temporarily unpopulated
- Payment required — 402 if x402 payment header is missing or invalid
- Unexpected schema changes if catalog is being updated

## How this service works

Reloadpi — Get available filter options for voucher search including brands, countries and categories

## Output

Returns three arrays: a list of available brand names (e.g. Amazon, Netflix, Google Play), a list of supported country codes or names, and a list of voucher categories — all usable as filter parameters when searching the voucher catalog.

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

## More

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