# Images The Musement API does not return images directly. However, multiple endpoints contain URLs to images. For example, the `/activities/{activityUuid}` endpoint contains a `cover_image_url` property: ```json { [...] "cover_image_url": "https://images-sandbox.musement.com/cover/0001/09/exclusive-guided-tour-in-milan-la-scala-duomo-square-and-galleria_header-8301.jpeg?w=540", [...] } ``` Visiting the URL in the property will load an image: ![Piazza del Duomo in Milan](/assets/image_example.8fa813837fab1c36194685681bcec768237ea9c769f3aad0c8c62571ba8468b6.cec71662.jpeg) Some endpoints contain multiple image URLs. The `/activities/{activityUuid}/media` endpoint returns an array which contains image URLs: ```json [ [...] { "id": 8243, "title": "Exclusive Guided Tour in Milan: La Scala, Duomo Square and Galleria", "url": "https://images-sandbox.musement.com/default/0001/09/exclusive-guided-tour-in-milan-la-scala-duomo-square-and-galleria_header-8243.jpeg?w=750&h=500", "type": "image", "is_cover": false }, { "id": 8244, "title": "Exclusive Guided Tour in Milan: La Scala, Duomo Square and Galleria", "url": "https://images-sandbox.musement.com/default/0001/09/exclusive-guided-tour-in-milan-la-scala-duomo-square-and-galleria_header-8244.jpeg?w=750&h=500", "type": "image", "is_cover": false }, [...] ] ``` Note that the base URL of the images changes depending on the API environment you use. You can use query parameters to modify the resulting image for any given URL. For example, you can apply an *80% sepia filter* to an image by adding the `sepia=80` query parameter and value to an image URL: ``` https://images-sandbox.musement.com/cover/0001/09/exclusive-guided-tour-in-milan-la-scala-duomo-square-and-galleria_header-8301.jpeg?w=540&sepia=80 ``` ![Piazza del Duomo in Milan with a sepia filter](/assets/sepia_example.4e0c93bae18fb01045edadfc890645ae72336ddc069095352380074316c26715.cec71662.jpeg) For a complete list of image parameters, please refer to [IMGIX documentation](https://docs.imgix.com/apis/rendering).