Skip to main content
GET
/
api
/
v1
/
esim
/
regions
eSIM regions
curl --request GET \
  --url https://api.dancity.app/api/v1/esim/regions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "eSIM regions fetched successfully",
  "data": {
    "regions": [
      {
        "code": "ES",
        "name": "Spain",
        "type": "country",
        "flagUrl": null,
        "iso": null
      },
      {
        "code": "EU-42",
        "name": "Europe (40+ areas)",
        "type": "multi-country",
        "flagUrl": null,
        "iso": null
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Merchant API key from the Dancity dashboard.

Query Parameters

type
enum<number>

Filter regions: 1 = single-country only, 2 = multi-country/regional only. Omit to return all regions.

Available options:
1,
2
Example:

1

Response

OK