Countries are the primary way to get the supported streaming services and addons (such as list of available Apple TV and Prime Video channels) in a region.

Each country object contains the country code, name and the list of supported streaming services.

Details of the streaming services include localized logos, homepages, theme colors, and available streaming options and addons.

Country

interface Country {
    countryCode: string;
    name: string;
    services: Service[];
}

Properties

countryCode: string

ISO 3166-1 alpha-2 code of the country.

Country

name: string

Name of the country.

Country

services: Service[]

Array of the supported services in the country, ordered by popularity.

Country