---
title: "List feedback records with filters"
method: GET
path: "/v1/feedback-records"
tags: ["Feedback Records"]
---

# List feedback records with filters

`GET /v1/feedback-records`

Lists feedback records for a required tenant_id with optional additional filters and pagination

## Query parameters

- `tenant_id` string, required — Tenant ID (required for isolation). NULL bytes not allowed.
- `submission_id` string — Filter by submission ID (e.g. UUID from webhook idempotency). NULL bytes not allowed.
- `source_type` string — Filter by source type. NULL bytes not allowed.
- `source_id` string — Filter by source ID (NULL bytes not allowed)
- `field_id` string
- `field_group_id` string — Filter by field group ID (for ranking/matrix questions). NULL bytes not allowed.
- `field_type` 'text' | 'categorical' | 'nps' | 'csat' | 'ces' | 'rating' | 'number' | 'boolean' | 'date' — Filter by field type. NULL bytes not allowed.
- `value_id` string — Filter by the source system's stable option id. NULL bytes not allowed.
- `user_id` string — Filter by user ID. NULL bytes not allowed.
- `since` string, date-time — Filter by collected_at >= since (ISO 8601 format). Must be between 1970-01-01 and 2080-12-31.
- `until` string, date-time — Filter by collected_at <= until (ISO 8601 format). Must be between 1970-01-01 and 2080-12-31.
- `limit` integer — Number of results to return (max 1000)
- `cursor` string

## Response `200`

OK

- ListFeedbackRecordsOutputBody
  - `data` FeedbackRecordData[], required — List of feedback records
    - `collected_at` string, date-time, required — When the feedback was collected
    - `created_at` string, date-time, required — When this record was created
    - `field_id` string, required — Identifier for the question/field
    - `field_label` string — The actual question text
    - `field_group_id` string — Stable identifier grouping related fields (for ranking, matrix, grid questions)
    - `field_group_label` string — Human-readable question text for the group
    - `field_type` 'text' | 'categorical' | 'nps' | 'csat' | 'ces' | 'rating' | 'number' | 'boolean' | 'date', required — Type of field
    - `id` string, uuid, required — UUIDv7 primary key
    - `language` string — ISO language code. NULL bytes not allowed.
    - `metadata` object — Additional context
    - `sentiment` 'very_negative' | 'negative' | 'neutral' | 'positive' | 'very_positive' | 'mixed' — Sentiment polarity inferred from value_text (sentiment enrichment). Read-only; absent until the record is enriched.
    - `sentiment_score` number, double — Signed sentiment polarity from -1.0 (very negative) to 1.0 (very positive) (sentiment enrichment). Read-only; absent until the record is enriched.
    - `emotions` string[] — Emotions inferred from value_text (emotion enrichment); multi-label from a fixed set. Read-only; absent until the record is enriched, and never an empty array.
    - `source_id` string — Reference to survey/form/ticket ID
    - `source_name` string — Human-readable name
    - `source_type` string, required — Type of feedback source
    - `submission_id` string, required — Identifier for the logical submission this record belongs to (required).
    - `tenant_id` string, required — Tenant/organization identifier. NULL bytes not allowed.
    - `translation_lang_key` string — BCP-47 target locale that value_text_translated was produced in (language enrichment). Read-only; absent until the record is enriched.
    - `updated_at` string, date-time, required — When this record was last updated
    - `user_id` string — User ID (e.g., anonymous ID or email hash)
    - `value_boolean` boolean — Boolean response
    - `value_date` string, date-time — Date response
    - `value_number` number, double — Numeric response
    - `value_text` string — Text response. NULL bytes not allowed.
    - `value_id` string — Stable id of the selected option in the source system (e.g. a survey choice id), stored alongside value_text for durable option identity. Opaque to Hub. Absent for free-text/non-choice answers. NULL bytes not allowed.
    - `value_text_translated` string — value_text translated into the tenant's configured target language (language enrichment). Read-only; absent until the record is enriched.
  - `limit` integer, required — Limit used in query
  - `next_cursor` string — Opaque cursor for the next page (keyset paging). Present only when there may be more results. Use as the cursor query param for the next page.

## Other responses

- `400` — Bad Request (e.g. invalid cursor)
- `default` — Error

---

[API](https://skmtc.net/formbricks/apis/formbricks-hub-api.md) · [All operations](https://skmtc.net/formbricks/apis/formbricks-hub-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/formbricks/formbricks-hub-api/revisions/8d06d9728138/schema)
