> ## 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/getIccidSupportSkuGroup — SKUs by continent

> Retrieve SKUs available for renewal on a specific SIM card, organized by continent. Useful for building region-based renewal selection UIs for customers.

Returns the same SKU data as [ICCID SKUs](/api-reference/get-iccid-skus) but organized by continent — matching the format of [eSIM SKUs by Continent](/api-reference/get-skus-by-continent).

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

## 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

Same structure as [eSIM SKUs by Continent](/api-reference/get-skus-by-continent): `continent` array and `data` map of continent → SKU array.

## Example

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

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