> ## 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/getIccidSupportPackageInfo — ICCID packages

> Get available data plans for a SIM card identified by ICCID. Returns package details including priceid and apiCode, scoped to plans the card can activate.

Returns the data plans available for purchase or renewal on a specific card. The response format mirrors [Get Packages](/api-reference/get-packages) and includes the same `priceid` and `apiCode` fields for ordering.

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

## 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 [Get Packages](/api-reference/get-packages): a `data` object with `skuid`, `displayEn`, `esimPackageDtoList` (with `priceid`, `flows`, `unit`, `days`, `price`, `apiCode`, etc.), and `countryImageUrlDtoList`.

## Example

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

  ```json Success theme={null}
  {
    "code": "0",
    "message": "success",
    "data": {
      "skuid": 45,
      "displayEn": "Austria",
      "esimPackageDtoList": [
        {
          "flows": 1, "days": 3, "unit": "GB",
          "price": 2.66, "priceid": 441,
          "flowType": 0, "supportDaypass": 0,
          "apiCode": "40-0-3-1-G"
        }
      ],
      "supportCountry": ["Austria"]
    }
  }
  ```
</CodeGroup>
