# Reloadpi Voucher & Gift Card Offers Catalog

> Reloadpi Voucher & Gift Card Offers Catalog is a paid API for AI agents from shoppi-backend.onrender.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Search and browse gift card and voucher offers from 5000+ brands across 150+ countries, with filtering by brand, country, and category

## Facts

- Endpoint: GET https://shoppi-backend.onrender.com/api/catalog/vouchers/offers
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shoppi-backend-onrender-com-fe4fbdf7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RSqEEtsPzqCXIkZABlksr

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-fe4fbdf7
```

Example prompt: Can you show me gift card and voucher offers for Amazon in the US from the Reloadpi catalog — show me the first 10 results?

## When to prefer this

Use this endpoint when you need to discover available gift card or voucher offers from a broad global catalog spanning 5000+ brands and 150+ countries. Prefer this over brand-specific APIs when you need cross-brand browsing, regional availability checks, or denomination discovery. Ideal for agents building gifting workflows, comparing voucher options, or checking what prepaid cards are available for a specific brand or region.

## Known failure modes

- No matching offers for given brand/country combination — returns empty list
- Invalid country code returns empty results or error
- Payment not included or rejected — returns 402 Payment Required
- Rate limiting or server unavailability on Render free tier — returns 503 or timeout
- Invalid query parameter types cause schema validation errors

## How this service works

Fetches available voucher offers from the shoppi catalog API.

## Output

Returns a paginated list of voucher/gift card offer objects, each containing offer ID, brand name, brand image URL, fixed or variable price details (including currency, face value, margin, FX rate, currency divisor), country code, region tags, product type (VOUCHER), price type (FIXED/RANGE), and sub-type categories (e.g. General Merchandise, Entertainment).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "brand": "Amazon",
   "limit": 10,
   "offset": 0,
   "country": "US"
  }
 }
}
```

## 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": {
      "brand": {
       "type": "string",
       "description": "Brand name filter e.g. Amazon"
      },
      "limit": {
       "type": "number",
       "description": "Results per page"
      },
      "offset": {
       "type": "number",
       "description": "Pagination offset"
      },
      "country": {
       "type": "string",
       "description": "ISO country code e.g. US"
      },
      "category": {
       "type": "string",
       "description": "Category filter e.g. shopping"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "total": {
       "type": "number"
      },
      "offers": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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