Operations related to subscriptions.
Download OpenAPI description
Overview
Languages
Servers
Production server
https://api.tellisim.com/
- Production serverhttps://api.tellisim.com/v3/sims
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.tellisim.com/v3/sims?page_size=string&page=string&is_esim=true&label=Green&key=YOUR_API_KEY_HERE'Successful response containing a list of SIMs
Contains an array of SIM objects
The Integrated Circuit Card Identifier of the eSIM
Example: "8937103400004164763"
The Local Profile Assistant associated with the eSIM if the SIM is an eSIM
Example: "LPA:1$rsp-eu.redteamobile.com$0F222CA0C9B2F3A99457DADC94A4958C"
The unique identifier for the eSIM
Example: "5a15183b-ca25-4725-b8a8-807990f98e03"
The timestamp when the SIM was created
Example: "2025-08-11T14:43:15.761Z"
Response
application/json
{ "error": false, "data": [ { … } ], "next_page": "MQ==" }
- Production serverhttps://api.tellisim.com/v3/sims/{iccid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.tellisim.com/v3/sims/{iccid}?key=YOUR_API_KEY_HERE'Response
application/json
{ "error": true, "data": { "iccid": "8937103400004164763", "label": "Blue", "lpa": "LPA:1$rsp-eu.redteamobile.com$0F222CA0C9B2F3A99457DADC94A4958C", "used": false, "esim_id": "5a15183b-ca25-4725-b8a8-807990f98e03", "created_at": "2025-08-11T14:43:15.761Z", "is_esim": true } }
Request
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
Security
ApiKeyAuth
- Production serverhttps://api.tellisim.com/v3/sims/{iccid}/smdp-info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.tellisim.com/v3/sims/{iccid}/smdp-info?key=YOUR_API_KEY_HERE'Response
application/json
{ "error": false, "data": { "iccid": "8948010000031326267", "state_history": [ … ], "current_status": "Enable" } }
