# Reloadpi eSIM Offer Details

> Reloadpi eSIM 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 eSIM data plan by its offer ID, including price, region, duration, and data limits

## Facts

- Endpoint: GET https://api.reloadpi.com/api/catalog/esims/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-98981fae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cB8yRQCwXXqrq-xx_UF67

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-98981fae
```

Example prompt: Can you pull up the full details for eSIM offer ESIM-AD-10D-ULE-NOROAM on Reloadpi — I want to see the price, region, duration in days, and whether it includes unlimited data?

## When to prefer this

Use this endpoint when you already have a specific eSIM offer ID (e.g. from a catalog browse or search result) and need the complete details — price, region, duration, and data limits — before presenting options to a user or initiating a purchase. Prefer this over the catalog browse endpoint when you need authoritative, up-to-date details for a single known offer.

## Known failure modes

- Invalid or unknown offerId returns a 404 or error response
- Malformed offerId format may return a 400 bad request
- Payment failure (402) if USDC balance is insufficient
- Offer may be temporarily unavailable or deprecated

## How this service works

Reloadpi — Get full details for a specific eSIM data plan by ID, including its final price — the exact USDC charged at purchase

## Output

Returns a JSON object containing the eSIM offer's price (number), region (string), offerId (string), provider (string), duration in days (number), and whether data is unlimited (boolean)

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "offerId": "ESIM-AD-10D-ULE-NOROAM"
  }
 }
}
```

## 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": "eSIM offer ID e.g. ESIM-AD-10D-ULE-NOROAM"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "price": {
       "type": "number",
       "description": "Exact x402 purchase amount in minor units (divide by priceCurrencyDivisor)"
      },
      "dataGB": {
       "type": "number"
      },
      "country": {
       "type": "string",
       "description": "ISO country code; empty for multi-country regional bundles"
      },
      "offerId": {
       "type": "string"
      },
      "regions": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Region tags e.g. [\"North America\"]"
      },
      "durationDays": {
       "type": "number"
      },
      "roamingCount": {
       "type": "number",
       "description": "Number of covered countries"
      },
      "dataUnlimited": {
       "type": "boolean"
      },
      "priceCurrency": {
       "type": "string"
      },
      "roamingCountries": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "ISO codes of all covered countries e.g. [\"CA\",\"US\",\"MX\"]"
      },
      "priceCurrencyDivisor": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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