page_size | string | | Maximum number of responses. Default value is 25. Maximum value is 1000. If your typeform has fewer than 1000 responses, you can retrieve all of the responses in a single request by adding the page_size parameter. If your typeform has more than 1000 responses, use the since/until or before/after query parameters to narrow the scope of your request. |
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 T as a delimiter between the date and time (2020-03-20T14:00:59). |
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 T as a delimiter between the date and time (2020-03-20T14:00:59). |
after | string | | Limit request to responses submitted after the specified token. Could not be used together with sort parameter, as it sorts responses in the order that our system processed them (submitted_at). This ensures that you can traverse the complete set of responses without repeating entries. |
before | string | | Limit request to responses submitted before the specified token. Could not be used together with sort parameter, as it sorts responses in the order that our system processed them (submitted_at). This ensures that you can traverse the complete set of responses without repeating entries. |
included_response_ids | string | | Limit request to the specified responseid values. Use a comma-separated list to specify more than one responseid value. |
excluded_response_ids | string | | Comma-separated list of response_ids to be excluded from the response. |
completed | string | | Limit responses only to those which were submitted. This parameter changes since/until filter, so if completed=true, it will filter by submittedat, otherwise - landedat. |
sort | string | | Responses order in {fieldID},{asc |
query | string | | Limit request to only responses that include the specified string. The string will be escaped and it will be matched aganist all answers fields, hidden fields and variables values. |
fields | string | | Show only specified fields in answers section. If response does not have answers for specified fields, there will be null. Use a comma-separated list to specify more than one field value. |
answered_fields | string | | Limit request to only responses that include the specified fields in answers section. Use a comma-separated list to specify more than one field value - response will contain at least one of the specified fields. |