# Reloadpi Get Mobile Top-Up Offer Details

> Reloadpi Get Mobile Top-Up 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-14).

Retrieves full details for a specific prepaid mobile top-up or airtime offer by its offer ID, including price, amount, currency, country, and operator.

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/topups/offers/:offerId
- 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/api-reloadpi-com-9eea22bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WRtLUlrrLvES6mRavqQ_Z

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-9eea22bf
```

Example prompt: Can you pull up the full details for the Reloadpi mobile top-up offer with ID AIRTELTIGO_GH_025 — I want to see the price, amount, currency, and operator info?

## When to prefer this

Use this endpoint when you already have a specific top-up offer ID (e.g. from a catalog search) and need the full structured details of that offer — price, amount, operator, and country — before presenting or purchasing it. Prefer this over search endpoints when the offer ID is already known.

## Known failure modes

- Invalid or unknown offerId returns a 404 not found error
- Malformed offerId format may return a 400 bad request
- Service unavailable returns a 503 error
- Payment not processed (x402 flow) results in access denied
- Offer may have been deprecated or removed from catalog

## How this service works

Reloadpi — Get full details for a specific mobile top-up offer by ID

## Output

Returns a JSON object with the offer's ID, price (in the relevant currency), recharge amount, country, currency code, and operator name for the specified top-up offer.

## 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": "Top-up offer ID e.g. AIRTELTIGO_GH_025"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "price": {
       "type": "number"
      },
      "amount": {
       "type": "number"
      },
      "country": {
       "type": "string"
      },
      "offerId": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "operator": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

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