# Covid-19 safety info Deprecated Do not use this endpoint. It has been *deprecated* and the information for activities *is no longer maintained*. Customers starting to travel again want to enjoy safe activities. For this reason, activity providers are encouraged to identify Covid-19 health and safety measures for their activities. If Covid-19 safety information has not been set at an activity level, country-level information will be provided instead. To retrieve Covid-19 safety measures for an activity, make the following request: ```bash curl -X GET '{baseUrl}/activities/{activityUuid}/safety-information' \ -H 'X-Musement-Application: {applicationValue}' \ -H 'X-Musement-Version: 3.4.0' \ -H 'Authorization: Bearer {accessToken}' ``` The response will contain a list of Covid-19 safety measures: ```json [ { "id": 1, "is_active": true, "slug": "visitors-limited" }, { "id": 2, "is_active": true, "slug": "government-regulations-compliant" }, { "id": 3, "is_active": true, "slug": "social-distancing" }, { "id": 4, "is_active": false, "slug": "regular-disinfection" }, [...] ] ``` Any safety measure with an `is_active` property value of `true` is active for the activity. Responses do not contain a description of the safety measure. You may use the table below to understand the meaning of each `slug` property: | Slug | Description | | --- | --- | | contactless-payment | Contactless payment is available for tips and extras | | equipment-sanitized | All gear/equipment is sanitized between use | | free-venue-mask | Free face masks are provided at the venue/by the tour operator | | government-regulations-compliant | The activity complies with government regulations | | greenpass | EU Digital COVID Certificate required for people aged 12 and above | | guest-face-mask | Visitors are required to bring and wear masks | | guide-face-mask | Guides and all other staff are required to wear masks | | hand-sanitizers | Hand sanitizers are provided for staff and visitors | | online-tickets | Tickets can only be purchased online | | pcr-test-required | PCR test documents are required by all visitors | | regular-disinfection | Areas frequented by visitors are regularly disinfected | | social-distancing | Social distancing is enforced | | staff-covid-check | Staff are regularly tested for COVID-19 | | staff-temp-check | Staff have their temperatures checked regularly | | temperature-screening | Temperature screening is compulsory for all visitors | | vaccination-or-negative | Proof of vaccination or negative COVID test may be required, please confirm the local requirements before your visit | | visitors-limited | Visitor numbers are limited to reduce crowds |