> ## 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/getDpSupportSkuInfoByGroup — DP SKUs

> Retrieve physical SIM SKUs for a distribution partner, organized by continent. Returns a map keyed by continent name, matching the eSIM grouped SKU format.

Returns SKUs for a distribution partner (DP) organized by continent — the same grouping format as [eSIM SKUs by Continent](/api-reference/get-skus-by-continent).

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

## Request parameters

<ParamField query="token" type="string" required>Session token.</ParamField>
<ParamField query="dpId" type="integer" required>Distribution partner ID.</ParamField>
<ParamField query="sign" type="string" required>Request signature.</ParamField>

## Response

Same structure as [eSIM SKUs by Continent](/api-reference/get-skus-by-continent): a `continent` array and a `data` map of continent name → array of SKU objects (with `skuid`, `countryCode`, `imageUrl`, `display`, `note`, `search`, `continentCode`).

## Continent keys

| Key             | Region                      |
| --------------- | --------------------------- |
| `Common`        | Multi-country / global SKUs |
| `Asia`          | Asia-Pacific                |
| `Europe`        | Europe                      |
| `Africa`        | Africa                      |
| `Latin America` | Latin America               |
| `North America` | North America               |
| `Oceania`       | Oceania                     |

## Example

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

  ```json Success theme={null}
  {
    "code": "0",
    "message": "success",
    "data": {
      "continent": ["Common", "Asia"],
      "data": {
        "Common": [
          { "skuid": 156, "countryCode": 99918, "display": "Africa", "continentCode": 7 }
        ],
        "Asia": [
          { "skuid": 40, "countryCode": 158, "display": "Taiwan", "continentCode": 1 }
        ]
      }
    }
  }
  ```
</CodeGroup>
