# Get experiences Get all experiences for the company. Endpoint: GET /v1/experiences Version: 0.1.0 Security: OAuth2 ## 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" ## Query parameters: - `cursor` (string) The cursor for pagination. An empty string indicates the start of the list. - `limit` (integer) The maximum number of experiences to return. ## Response 200 fields (application/json): - `next` (string) The cursor for the next page. An empty string indicates the end of the list. - `items` (array) - `items.id` (string, required) The unique identifier for the experience. - `items.type` (string, required) The type of experience. Enum: "MULTI_SESSION", "SINGLE_SESSION" - `items.state` (string, required) The state of the experience. Enum: "ACTIVE", "ARCHIVED", "DELETED" - `items.name` (string, required) The name of the experience. - `items.created_at` (string, required) Timestamp of when the experience was created. - `items.updated_at` (string, required) Timestamp of when the experience was last updated. - `items.description` (string) A detailed description of the experience. The description is in markdown format, and can include rich text, links, and lists. - `items.tag_ids` (array) Array of tag IDs that are associated with the experience. Tags can be used to categorize and filter experiences. - `items.media` (array) Media attached to the experience. - `items.metadata` (object) A set of key-value pairs that are attached to the experience for storing additional information. - `items.metadata.example_key` (string) Example of a metadata key.