Lookup responses
Typeform Lookup Responses is an advanced AI tool that enables users to efficiently search and retrieve specific responses from their Typeform forms using customizable queries and filters. Designed to streamline data management, this tool integrates seamlessly with the Typeform API, providing quick access to targeted form submissions.
Features
- Search responses by applying precise query filters across all answer fields and hidden variables.
- Supports retrieval of up to 1000 responses per request with pagination options.
- Allows filtering responses based on submission date and time using 'since' and 'until' parameters.
- Enables traversal through responses via 'after' and 'before' tokens to avoid duplicate entries.
- Easy integration with Typeform’s API with clear input schema for form identification and query customization.
Benefits
- Save time by quickly locating relevant form responses without manual searching.
- Improve data analysis accuracy by filtering responses based on specific criteria.
- Enhance workflow automation with seamless integration into existing data pipelines.
- Avoid data duplication and ensure completeness using pagination and token-based traversal.
- Access detailed form response data to make informed business or research decisions.
Description
Search for responses with the query property. See the docs here
Parameters
7 parameters
| Name | Type | Description |
|---|---|---|
| formIdrequired | string | Unique ID for the form, which you can find in your form URL. For example, in the URL, |
| queryrequired | string | Limit request to only responses that include the specified string. The string will be escaped and it will be matched against all answers fields, hidden fields and variables values. |
| pageSize | integer | Maximum number of responses. Maximum value is 1000. If your typeform has more than 1000 responses, use the |
| since | string | Limit request to responses submitted since the specified date and time. Could be passed as int (timestamp in seconds) or in ISO 8601 format, UTC time, to the second, with |
| until | string | Limit request to responses submitted until the specified date and time. Could be passed as int (timestamp in seconds) or in ISO 8601 format, UTC time, to the second, with |
| after | string | Limit request to responses submitted after the specified token. Could not be used together with |
| before | string | Limit request to responses submitted before the specified token. Could not be used together with |