> ## Documentation Index
> Fetch the complete documentation index at: https://developers.mioesim.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /api_esim/getIccidSupportSku — SKUs for an ICCID

> Retrieve the products (SKUs) available for renewal on a SIM card by ICCID. Use skuid values with getIccidSupportPackageInfo to fetch purchasable plans.

Given an ICCID, this endpoint returns which products (SKUs) the card supports for plan purchases or renewals. Use the returned `skuid` values with [Get ICCID Packages](/api-reference/get-iccid-packages) to get available plans.

```
GET https://bpm.mioesim.com/api_esim/getIccidSupportSku
```

## Request parameters

<ParamField query="token" type="string" required>Session token.</ParamField>
<ParamField query="iccid" type="string" required>The ICCID of the SIM card.</ParamField>
<ParamField query="sign" type="string" required>Request signature.</ParamField>

## Response

Returns a `data` array of SKU objects with `skuid`, `display`, and `countryCode` — same format as [List SKUs](/api-reference/get-skus).

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl "https://bpm.mioesim.com/api_esim/getIccidSupportSku?token=YOUR_TOKEN&iccid=934801019851134300&sign=YOUR_SIGN"
  ```

  ```json Success theme={null}
  {
    "code": "0",
    "message": "success",
    "data": [
      { "skuid": 45, "display": "Austria", "countryCode": "40" }
    ]
  }
  ```
</CodeGroup>
