# Get information requests Information requests describes additional information that is collected during the booking flow. These are usually presented as additional questions to be answered by the guest. Endpoint: GET /v1/experiences/{experienceId}/information-requests Version: 0.1.0 Security: OAuth2 ## Path parameters: - `experienceId` (string, required) The ID of the experience. ## 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 requests 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) - `items.type` (string, required) What type of response is expected from the guest. This will be extended in the future with additional types, eg. MULTI_CHOICE. Enum: "TEXT" - `items.required` (boolean, required) Indicates whether this information request is required to be answered. - `items.scope` (any, required) Defines at what scope this information is collected. If the scope is BOOKING, the information is collected once per booking, eg. "Something something". If the scope is TICKET, the information is collected for each ticket in the booking, eg. "What size of bicycle do you want?". Enum: "BOOKING", "TICKET" - `items.label` (string, required) The display label for the information request.