Skip to content

Musement API (3.5.0)

For merchant or affiliate partners wishing to use the Musement API.

Authentication

See the Authentication section for details on how to authenticate with the API.

Release notes

2024-06-18

Endpoints

  • GET /activities/{activityUuid}/dates/{date}
    • Changed default min_buy value from -1 to 1

2024-02-21

Endpoints

  • Added GET /orders/{orderUuid}/refunds
    • Returns an array of paid refunds for an order

2024-02-20

Endpoints

  • GET /activities/{activityUuid}/dates/{date}
    • Added availability, max_buy and min_buy properties to timeslots. For more info, check out our guide
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://partner-api.musement.com/_mock/reference/openapi
Sandbox server
https://sandbox.musement.com/api/v3
Production server
https://api.musement.com/api/v3

Searching activities

A collection of endpoints which can be used to search the catalog for relevant activities.

Operations

Activity info

A collection of endpoints which can be used to provide information to customers about a specific activity.

Operations

Pickups

Some activities require selecting a pickup location as part of the booking flow.

Operations

Dates

A collection of endpoints for selecting available dates and products.

Operations

Carts

A collection of endpoints for managing a customer's cart during the booking flow.

Operations

Customer info

When making a reservation, different steps must be taken to provide information about the customers. This collection includes endpoints for submitting info about the lead booker, extra customer data and participant info.

Operations

Orders

A collection of endpoints for managing orders as part of the booking flow.

Operations

Payments

A collection of endpoints regarding payment during the booking flow. Partners have multiple payment options at their disposal, depending on agreements with the Strategic partnerships team.

Operations

Cancellations

It is possible to cancel reservations, provided that the activity in question is refundable.

Operations

Activities

Activities can be any tour, attraction or experience that customers can reserve via the Musement API.

Operations

Categories

Categories group activities based on similar characteristics.

Operations

Cities

Cities are different types of destinations: islands, natural landmarks, beaches, actual cities and more.

Operations

Countries

A collection of endpoints related to countries in the Musement catalog.

Operations

Lists

Lists are collections of Musement activities and third-party destinations grouped together based on editorial themes.

Operations

Venues

Venues are popular attractions or landmarks.

Operations

Additional searches

A collection of additional endpoints which can be used to search parts of the catalog.

Operations

Carts

A collection of cart endpoints which are not strictly necessary for the booking flow.

Operations

Remove cart

Request

Once a cart has been removed, it can no longer be accessed.

Returns an error if the cart cannot be removed due to a connected order.

Path
cartUuidstring(uuid)required

The UUID of the cart.

Headers
X-Musement-Applicationstring(Application value)

A partner's application value, used for analyzing API usage and to identify areas of improvement.

X-Musement-Versionstring^[0-9]+?.[0-9]+?.[0-9]+?$

The API version to use for the request.

When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.

Example: 3.4.0
curl -i -X DELETE \
  'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}' \
  -H 'X-Musement-Application: string' \
  -H 'X-Musement-Version: 3.4.0'

Responses

Success

Bodyapplication/json
boolean
Response
application/json
true

Get bundles for cart

Request

Bundles are recommendations of other activities to purchase together with the activities in the current cart.

Recommendations are based on activities which are often purchased together by other customers. Sometimes a bundle may contain a promotional discount which can be applied to one or both activities in cart.

Path
cartUuidstring(uuid)required

The UUID of the cart.

Headers
Accept-Languagestring(Language code)

The value of this parameter might affect the language of the content in the response, provided a translation in the requested language is available.

Default en-US
X-Musement-Applicationstring(Application value)

A partner's application value, used for analyzing API usage and to identify areas of improvement.

X-Musement-Currencystring(Currency code)

A valid currency code from the /currencies endpoint. Default value may vary depending on the X-Musement-Market header value.

Default USD
X-Musement-Marketstring(Musement market)

Musement markets contain a modified catalog of activities and prices. Partners are expected to use their assigned market code to view their customized catalog.

An invalid X-Musement-Market value will return a 400 status code response.

Default us
X-Musement-Versionstring^[0-9]+?.[0-9]+?.[0-9]+?$

The API version to use for the request.

When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.

Example: 3.4.0
curl -i -X GET \
  'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/bundles' \
  -H 'Accept-Language: en-US' \
  -H 'X-Musement-Application: string' \
  -H 'X-Musement-Currency: USD' \
  -H 'X-Musement-Market: us' \
  -H 'X-Musement-Version: 3.4.0'

Responses

Bundles for cart

Bodyapplication/jsonArray [
activitiesArray of objects(Activity)unique

Activities which can be bundled with the current activity.

Example: [{"bundled_price":{"currency":"EUR","formatted_iso_value":"€25.00","formatted_value":"€ 25.00","value":25},"cover_image_url":"https://images-sandbox.musement.com/cover/0001/19/9-11-memorial-museum-tickets_header-18896.jpeg?w=540","original_retail_price_without_service_fee":{"currency":"EUR","formatted_iso_value":"€25.00","formatted_value":"€ 25.00","value":25},"original_retail_price":{"currency":"EUR","formatted_iso_value":"€25.00","formatted_value":"€ 25.00","value":25},"retail_price":{"currency":"EUR","formatted_iso_value":"€25.00","formatted_value":"€ 25.00","value":25},"retail_price_without_service_fee":{"currency":"EUR","formatted_iso_value":"€25.00","formatted_value":"€ 25.00","value":25},"reviews_avg":4.6,"service_fee":{"currency":"EUR","formatted_iso_value":"€0.00","formatted_value":"€ 0.00","value":0},"title":"9-11 Memorial and Museum tickets","uuid":"11471ae8-2046-11e7-9cc9-06a7e332783f"}]
bundle_typestring

The type of bundle defines how its discount can affect prices:

  • from_second: the bundle discount only applies to the price of the activity in the bundle.
  • no_discount: the bundle offers no discount.
  • on_everything: the bundle discount applies to the combined price of both activities.
Enum"from_second""no_discount""on_everything"
Example: "no_discount"
discountinteger>= 0

A discount which can be applied based on the discount_type and bundle_type property values.

discount_typestring

This property defines how to treat the discount property:

  • absolute: as a specific currency amount.
  • percentage: as a percentage.
Enum"absolute""percentage"
Example: "percentage"
rule_idstring

The bundle's ID.

Example: "247"
]
Response
application/json
[ { "discount": 0, "discount_type": "percentage", "bundle_type": "no_discount", "rule_id": "247", "activities": [] } ]

Remove item from cart

Request

Use this endpoint to remove an item from cart.

This endpoint will return a 403 status code if the cart is part of a completed order.

Path
cartUuidstring(uuid)required

The UUID of the cart.

cartItemUuidstring(uuid)required

The UUID of the cart item.

Headers
X-Musement-Applicationstring(Application value)

A partner's application value, used for analyzing API usage and to identify areas of improvement.

X-Musement-Versionstring^[0-9]+?.[0-9]+?.[0-9]+?$

The API version to use for the request.

When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.

Example: 3.4.0
curl -i -X DELETE \
  'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}' \
  -H 'X-Musement-Application: string' \
  -H 'X-Musement-Version: 3.4.0'

Responses

Item removed successfully

Response
No content

Metadata

Metadata is used for configuring several activity properties.

Operations

Reviews

Customers may leave reviews about their experience with an activity. Reviews consist of a numeric rating and optional written comment.

Operations

Vouchers

A collection of endpoints to use at the end of the booking flow to retrieve reserved tickets and vouchers.

Operations

Webhooks

A collection of webhook requests that Musement's API can make to a partner's service.

Webhooks

Activities

A collection of deprecated endpoints for activities.

Operations

Carts

A collection of deprecated endpoints for carts.

Operations

Cities

A collection of deprecated endpoints for cities.

Operations

Verticals

Verticals are a type of macro category which group various parts of the catalog together based on similar characteristics.

They are considered deprecated.

Operations

Cities

A collection of endpoints for cities that were removed from the API.

Operations

Countries

A collection of endpoints for countries that were removed from the API.

Operations

Events

A collection of endpoints for events, an older term for activities, that were removed from the API.

Operations

Misc

A collection of various endpoints that were removed from the API.

Operations

Venues

A collection of endpoints for venues that were removed from the API.

Operations