# Reloadpi Voucher Offer Details

> Reloadpi Voucher Offer Details 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).

Retrieves full details for a specific voucher or gift card offer by its unique offer ID

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/vouchers/offers/:offerId
- 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-5925821b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Aw3gbTSMTIbKyGISXhSh

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-5925821b
```

Example prompt: Can you pull up the full details for Reloadpi voucher offer ID '1-800-BASKETS_US_002_EGIFT' — I need to see the brand, price, denomination, and which country it's available in?

## When to prefer this

Use this endpoint when you already have a specific voucher offer ID and need complete details about that offer (price, denomination, brand, country, currency). Prefer this over the search endpoint when you want authoritative, complete metadata for a known offer ID rather than browsing or filtering across many offers.

## Known failure modes

- Invalid or non-existent offerId returns a 404 not found error
- Malformed offerId format may return a 400 bad request
- Offer may be discontinued or temporarily unavailable
- Payment of 0.001 USDC via x402 required; missing payment returns 402
- Network timeout or server error returns 5xx response

## How this service works

Reloadpi — Get full details for a specific voucher or gift card offer by ID

## Output

Returns a JSON object containing the offer's brand name, price, denomination, currency, country of availability, and offer ID for the requested voucher or gift card.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "offerId"
     ],
     "properties": {
      "offerId": {
       "type": "string",
       "description": "Voucher offer ID e.g. 1-800-BASKETS_US_002_EGIFT"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brand": {
       "type": "string"
      },
      "price": {
       "type": "number"
      },
      "country": {
       "type": "string"
      },
      "offerId": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "denomination": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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