> ## 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/getDpSupportSkuInfo — List SKUs for a DP

> Retrieve the list of product SKUs supported by a physical SIM distribution partner (DP). Requires the dpId returned by the List DP Providers endpoint.

Get all SKUs available for a specific distribution partner. Use the `dpId` from [List DP Providers](/api-reference/get-dp-info).

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

## Request parameters

<ParamField query="token" type="string" required>Session token.</ParamField>
<ParamField query="dpId" type="integer" required>Distribution partner ID from [List DP Providers](/api-reference/get-dp-info).</ParamField>
<ParamField query="sign" type="string" required>Request signature.</ParamField>

## Response fields

<ResponseField name="data" type="array">
  Array of SKU objects with `skuid` (Integer), `display` (String), and `countryCode` (String).
</ResponseField>

## Example

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

  ```json Success theme={null}
  {
    "code": "0",
    "message": "success",
    "data": [
      { "skuid": 124, "display": "Asia 30", "countryCode": "99115" },
      { "skuid": 123, "display": "Asia 4", "countryCode": "99112" }
    ]
  }
  ```
</CodeGroup>
