Amadeus · Arazzo Workflow

Amadeus City Tours and Activities

Version 1.0.0

Resolve a city to coordinates, list bookable tours and activities nearby, then fetch one in detail.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket InsightsArazzoWorkflows

Provider

amadeus

Workflows

city-tours-and-activities
Resolve a city's coordinates and discover bookable tours and activities.
Looks up a city's coordinates, lists tours and activities nearby, and fetches the first one in detail.
3 steps inputs: cityKeyword outputs: activityCount, activityName, bookingLink
1
resolveCity
Resolve the city keyword to coordinates via the locations reference data, matching on CITY subtype.
2
listActivities
List the bookable tours and activities around the resolved city coordinates.
3
getActivityDetail
Retrieve the first activity by its id for full detail including price and booking link.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amadeus City Tours and Activities
  summary: Resolve a city to coordinates, list bookable tours and activities nearby, then fetch one in detail.
  description: >-
    Powers a destination activities experience. The workflow resolves a city
    keyword to coordinates via the locations reference data, lists the bookable
    tours and activities around those coordinates, then retrieves the first
    activity by its id for full detail including price and booking link. Each
    request is inlined so the city-to-activities flow can be read and executed
    without opening the underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: locationApi
  url: ../openapi/amadeus-location-api-openapi.yml
  type: openapi
- name: retrieveApi
  url: ../openapi/amadeus-retrieve-api-openapi.yml
  type: openapi
- name: searchApi
  url: ../openapi/amadeus-search-api-openapi.yml
  type: openapi
workflows:
- workflowId: city-tours-and-activities
  summary: Resolve a city's coordinates and discover bookable tours and activities.
  description: >-
    Looks up a city's coordinates, lists tours and activities nearby, and
    fetches the first one in detail.
  inputs:
    type: object
    required:
    - cityKeyword
    properties:
      cityKeyword:
        type: string
        description: Free-text keyword for the city (e.g. Barcelona).
  steps:
  - stepId: resolveCity
    description: >-
      Resolve the city keyword to coordinates via the locations reference data,
      matching on CITY subtype.
    operationId: getAirportCitySearch
    parameters:
    - name: subType
      in: query
      value: CITY
    - name: keyword
      in: query
      value: $inputs.cityKeyword
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      latitude: $response.body#/data/0/geoCode/latitude
      longitude: $response.body#/data/0/geoCode/longitude
  - stepId: listActivities
    description: >-
      List the bookable tours and activities around the resolved city
      coordinates.
    operationId: ListActivities
    parameters:
    - name: latitude
      in: query
      value: $steps.resolveCity.outputs.latitude
    - name: longitude
      in: query
      value: $steps.resolveCity.outputs.longitude
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstActivityId: $response.body#/data/0/id
      activityCount: $response.body#/meta/count
  - stepId: getActivityDetail
    description: >-
      Retrieve the first activity by its id for full detail including price and
      booking link.
    operationId: GETActivity
    parameters:
    - name: activityId
      in: path
      value: $steps.listActivities.outputs.firstActivityId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      activityName: $response.body#/data/name
      bookingLink: $response.body#/data/bookingLink
  outputs:
    activityCount: $steps.listActivities.outputs.activityCount
    activityName: $steps.getActivityDetail.outputs.activityName
    bookingLink: $steps.getActivityDetail.outputs.bookingLink

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/amadeus-city-tours-and-activities-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.