eSIMs ModuleCompatible Devices

Compatible Devices

To get a list of compatible devices, you need to send a GET request to the /api/compatible-devices endpoint.

There are no required parameters for this endpoint.

Example

Here is an example of how you can get a list of compatible devices using Roamify eSIM API.

curl --request GET \
--url 'https://api-dev.getroamify.com/api/compatible-devices' \
--header 'Authorization: Bearer Access Token' \
--header 'Content-Type: application/json'

Sample Response

{
	"status": "success",
	"data": [
		{
			"model": "Samsung Galaxy Note 20 / Note 20 Plus / Note 20 Ultra",
			"deviceType": "smartphone",
			"os": "android",
			"brand": "Samsung",
			"name": "Samsung Galaxy Note 20 series"
		},
		{
			"model": "Rakuten BIG / Rakuten BIG-S",
			"deviceType": "smartphone",
			"os": "android",
			"brand": "Rakuten",
			"name": "Rakuten BIG series"
		}
    ]
}