# Get experience Get an experience by its ID. Endpoint: GET /v1/experiences/{experienceId} Version: 0.1.0 Security: OAuth2 ## Path parameters: - `experienceId` (string, required) ## Header parameters: - `Accept-Language` (string, required) Combination of language and country/region. The format is a lowercase ISO 639-1 language code followed by an optional hyphen and an uppercase ISO 3166-1 country code. If no value matches what is available in the host's Storefront, an error response is returned. You can optionally provide multiple language-country pairs with a priority, separated by commas based on content negotation. Example: "en-GB; q=1.0, en-US; q=0.8" ## Response 200 fields (application/json): - `id` (string, required) The unique identifier for the experience. - `type` (string, required) The type of experience. Enum: "MULTI_SESSION", "SINGLE_SESSION" - `state` (string, required) The state of the experience. Enum: "ACTIVE", "ARCHIVED", "DELETED" - `name` (string, required) The name of the experience. - `created_at` (string, required) Timestamp of when the experience was created. - `updated_at` (string, required) Timestamp of when the experience was last updated. - `description` (string) A detailed description of the experience. The description is in markdown format, and can include rich text, links, and lists. - `tag_ids` (array) Array of tag IDs that are associated with the experience. Tags can be used to categorize and filter experiences. - `media` (array) Media attached to the experience. - `metadata` (object) A set of key-value pairs that are attached to the experience for storing additional information. - `metadata.example_key` (string) Example of a metadata key.