Destination Experiences
With Amadeus Self-Service APIs, you can find data on over two million places and 150,000 activities and show travelers the best things to see and do. In the Destination Experiences category, we have two APIs available for that.
APIs | Description |
---|---|
Tours and Activities | Find the best tours, activities, and tickets in any city or neighborhood. Includes a deep link to book with the provider. |
City Search | Finds cities that match a specific word or string of letters. |
Offer tours, activities, and attraction tickets
The Tours and Activities API is built in partnership with MyLittleAdventure. Tours and Activities API enables you to offer users the best activities in any destination, complete with a photo, description, price, and link to book the activity directly with the provider.
For the API, we partnered with MyLittleAdventure which aggregates offers from over 45 of the world’s top activity platforms, such as Viator, GetYourGuide, Klook and Musement and applies an algorithm to identify duplicate activities across providers, compare them and return the best one.
You can now help your users find the best things to do in over 8,000 destinations worldwide and book more than 300,000 unique activities including sightseeing tours, day trips, skip-the-line museum tickets, food tours, hop-on-hop-off bus tickets and much more.
Search by radius
You can search activities for a specific location by providing a latitude and longitude. The API returns activities within a 1km radius, but you can also define a custom radius.
Search by a square
You can search activities within a given area by providing the coordinates: North, West, South, and East.
Response
Let’s look at a sample response from the Tours and Activities API:
As you can see, the API returns a unique activity Id along with the activity name, short description, geolocation, customer rating, image, price and deep link to the provider page to complete the booking.
Type
is a literal with a fixed value.id
is a unique value for this activity, that you can use in the next endpoint.name
andshortDescription
contains the information about the activity.geoCode
is a structure that contains geolocation information: latitude and longitude of the location.rating
is a rating of the activity.pictures
andbooking link
are external links to check the relevant pictures and to go to the booking URL from the activity provider.price
is the price of the fare, which can be alpha-numeric. Ex- 500.20 or 514.13A,A
signifies additional collection.
Retrieve by Id
Keep the unique Id of each activity and retrieve it with the last endpoint as below.
Find a city by keywords
If you are unsure of the exact spelling of a city, you can reach out to the City Search API. This API uses a keyword, which is a string containing a minimum of 3 and a maximum of 10 characters, to search for a city whose name contains this keyword. It is not critical whether you enter the entire city name or only a part of it. For example, Paris
, Par
or ari
will all return Paris
in the search results.
There are two optional parameters to help you make the query more precise - countryCode
and max
. The countryCode
is a string for the ISO 3166 Alpha-2 code of the country where you need to locate a city, for example, FR
for France. The max
is an integer that defines the maximum number of search results.
You can also include a list of airports for each city returned in the search results. To do this, you need to add AIRPORTS
to the include field, which is an array of strings defining additional resources for your search.
Let's check out the results for keyword PAR
. We will limit the search scope to FR
and the number of results to two.
The results are probably rather predictable:
First of all we see the French capital at the top of the list. The second result refers to the town Le Touquet-Paris-Plage, whose official name contains three letters that match our keyword. If we want to see more results, we can always adjust the max
number of results.
The main difference between the Airport & City Search API and City Search API is that the Airport & City Search API only shows cities that have an airport, while the City Search API retrieves any city that matches a keyword.