Skip to main content
GET
/
product-offerings
/
countries
List Travel eSIM countries
curl --request GET \
  --url https://apiv2.example.com/product-offerings/countries \
  --header 'X-Api-Key: <api-key>'
{
  "countries": [
    {
      "code": "US",
      "name": "United States"
    }
  ],
  "regions": [
    {
      "region": "EUROPE",
      "countries": [
        "SE",
        "DE",
        "FR"
      ]
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Query Parameters

customerType
enum<string>
required

Filter by customer type. The type of customer.

Available options:
CONSUMER,
BUSINESS

Response

A list of countries and regions available across product offerings.

countries
object[]
required
regions
object[]
required