Accommodation Loyalty Programmes

Information about loyalty programmes supported by Duffel Stays.

logo_url_png_small
string

The URL of the loyalty programme's logo.

Example: "https://assets.duffel.com/img/stays/loyalty-programmes/transparent-logo/duffel_hotel_group_rewards.png"
logo_url_svg
string

The URL of the loyalty programme's logo.

Example: "https://assets.duffel.com/img/stays/loyalty-programmes/full-color-logo/duffel_hotel_group_rewards-square.svg"
name
string

The name of the loyalty programme.

Example: "Duffel Hotel Group Rewards"
reference
enum

The reference of this loyalty programme. This can be used to identify supported loyalty programmes on an Accommodation or Rate.

Possible values: "wyndham_rewards", "choice_privileges", "marriott_bonvoy", "best_western_rewards", "world_of_hyatt", "hilton_honors", "ihg_one_rewards", "leaders_club", "stash_rewards", "omni_select_guest", "i_prefer", "accor_live_limitless", "my_6", "jumeirah_one", "global_hotel_alliance_discovery", or "duffel_hotel_group_rewards"

Lists all the loyalty programmes supported by Duffel Stays.

Endpoint

GET https://api.duffel.com/stays/loyalty_programmes

Request

curl -X GET --compressed "https://api.duffel.com/stays/loyalty_programmes" \
-H "Accept-Encoding: gzip" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Duffel-Version: v1" \
-H "Authorization: Bearer <YOUR_ACCESS_TOKEN>"

Response

{
"data": [
{
"reference": "duffel_hotel_group_rewards",
"name": "Duffel Hotel Group Rewards",
"logo_url_svg": "https://assets.duffel.com/img/stays/loyalty-programmes/full-color-logo/duffel_hotel_group_rewards-square.svg",
"logo_url_png_small": "https://assets.duffel.com/img/stays/loyalty-programmes/transparent-logo/duffel_hotel_group_rewards.png"
}
]
}