# Get SIM SMDP information This endpoint retrieves the SM-DP+ (Subscription Manager Data Preparation) information for a specific SIM by its ICCID. The response includes the state history of the eSIM profile with the following possible states: - BPP Installation: The process of downloading and installing the eSIM profile via a Bootstrap Provisioning Platform (BPP) - Enable: eSIM is switched on from device settings, allowing it to connect to the mobile network - Disable: eSIM is turned off via device settings, temporarily preventing it from being used - Delete: eSIM profile is completely removed from the device Endpoint: GET /v3/sims/{iccid}/smdp-info Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `iccid` (string, required) The ICCID of the SIM ## Response 200 fields (application/json): - `error` (boolean) - `data` (object) - `data.iccid` (string, required) The ICCID of the SIM Example: "8937103400004164763" - `data.state_history` (array, required) History of state changes for the eSIM profile - `data.state_history.state` (string) The state of the eSIM profile Enum: "BPP Installation", "Enable", "Disable", "Delete" - `data.state_history.modification_result` (string) Result of the state modification Example: "SUCCESS" - `data.state_history.modified_at` (string) Timestamp when the state was modified Example: "2025-10-28T20:23:59.000Z" - `data.current_status` (string) Current status of the eSIM profile Enum: "BPP Installation", "Enable", "Disable", "Delete" ## Response 401 fields (application/json): - `error` (boolean, required) Indicates whether an error occurred during the request Example: true - `message` (string, required) Error message describing the unauthorized access Example: "Unauthorized: API key is missing"