> ## 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/getPhysicalSIMDpInfo — List DP providers

> Retrieve the list of physical SIM distribution partners (DPs) available on your account. The returned dpId is required when placing physical SIM card orders.

Physical SIM cards are distributed through partner networks called DPs (distribution partners). Call this endpoint to get the available DPs and their IDs, which you need when placing physical SIM orders.

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

## Request parameters

<ParamField query="token" type="string" required>Session token.</ParamField>
<ParamField query="sign" type="string" required>Request signature.</ParamField>

## Response fields

<ResponseField name="data" type="array">
  List of DP objects.

  <Expandable title="DP fields">
    <ResponseField name="id" type="integer">DP identifier. Use this as `dpId` when ordering.</ResponseField>
    <ResponseField name="realName" type="string">DP name (e.g. `"FIROAM GLOBAL"`).</ResponseField>
    <ResponseField name="iconUrl" type="string">DP logo image URL.</ResponseField>
  </Expandable>
</ResponseField>

## Example

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

  ```json Success theme={null}
  {
    "code": "0",
    "message": "success",
    "data": [
      {
        "id": 9,
        "realName": "FIROAM GLOBAL",
        "iconUrl": "http://img.mioesim.com/phoneImage/202405//a9675e73.jpg"
      }
    ]
  }
  ```
</CodeGroup>
