eSIM International List
API to get eSIM international list of IAK prepaid products.
Path
Method | Path |
---|---|
POST | api/esiminternationallist/:type |
Path Parameters
Attributes | Type | Description | Mandatory |
---|---|---|---|
type | String | Product type. List of type: local regional global | No |
Request Body
Attributes | Type | Description | Mandatory |
---|---|---|---|
username | String | Your registered phone number | Yes |
sign | String | Signature. Value: md5(username+api_key+'esim-inter') | Yes |
lang | String | Language. List of language: en id | No |
{
"username" : "123123123",
"sign" : "6bc194c0d23c18a12f5d6919aa72bc30",
"lang" : "id"
}
Response
Attributes | Type | Description | Mandatory |
---|---|---|---|
list | Array | eSIM List | Yes |
list.name | String | Name Type | Yes |
list.type | String | Product Type | Yes |
list.countries | Array | Country/Region List | Yes |
list.countries.name | String | Name Country/Region | Yes |
list.countries.code | String | Code Country/Region | Yes |
list.countries.icon_url | String | URL icon for each country | Yes |
rc | String | Response code. See response code list | Yes |
message | String | Message | Yes |
status | Double | Status. List of status: 0:PROCESS 1:SUCCESS 2:FAILED | Yes |
{
"data": {
"list": [
{
"name": "Local",
"type": "local",
"countries": [
{
"name": "Afganistan",
"code": "AFG",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/afg.svg"
},
{
"name": "Albania",
"code": "ALB",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/alb.svg"
},
{
"name": "Aljazair",
"code": "DZA",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/dza.svg"
},
{
"name": "Andorra",
"code": "AND",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/and.svg"
},
{
"name": "Anguilla",
"code": "AIA",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/aia.svg"
},
{
"name": "Antigua dan Barbuda",
"code": "ATG",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/atg.svg"
},
{
"name": "Argentina",
"code": "ARG",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/arg.svg"
}
]
},
{
"name": "Asia & Australia",
"type": "regional",
"countries": [
{
"name": "Australia",
"code": "AUS",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/aus.svg"
},
{
"name": "Bangladesh",
"code": "BGD",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/bgd.svg"
},
{
"name": "Tiongkok",
"code": "CHN",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/chn.svg"
}
]
},
{
"name": "Europe",
"type": "regional",
"countries": [
{
"name": "Albania",
"code": "ALB",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/alb.svg"
},
{
"name": "Andorra",
"code": "AND",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/and.svg"
},
{
"name": "Austria",
"code": "AUT",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/aut.svg"
}
]
},
{
"name": "Global",
"type": "global",
"countries": [
{
"name": "Afganistan",
"code": "AFG",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/afg.svg"
},
{
"name": "Albania",
"code": "ALB",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/alb.svg"
},
{
"name": "Aljazair",
"code": "DZA",
"icon_url": "https://cdn.mobilepulsa.net/img/logo/countries/dza.svg"
}
]
}
],
"rc": "00",
"message": "SUCCESS",
"status": 1
}
}
Live Testing
Request URL
https://prepaid.iak.dev/api/esiminternationallist
Request Method
Request Header
Content-Type: application/json
Body
Result
Table of Contents