---
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[]
- `source_type` string[]
- `source_id` string[]
- `field_id` string[]
- `field_group_id` string[]
- `field_type` FieldType[]
- `value_id` string[]
- `user_id` string[]
- `source_name` string[]
- `language` string[]
- `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.
- `created_since` string, date-time
- `created_until` string, date-time
- `value_number_min` number, double
- `value_number_max` number, double
- `value_date_min` string, date-time
- `value_date_max` string, date-time
- `sentiment` SentimentValue[]
- `emotions` EmotionValue[]
- `sentiment_score_min` number, double
- `sentiment_score_max` number, double
- `has_sentiment` boolean
- `has_emotions` boolean
- `has_translation` boolean
- `sort` 'collected_at' | 'created_at'
- `order` 'asc' | 'desc'
- `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 — The type of a feedback field, which determines which value_* member carries the answer. Mirrors the field_type_enum database type; keep the three in sync.
    - `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 label inferred from value_text by the sentiment enrichment: the five ordinal levels plus a distinct "mixed". Server-generated and read-only.
    - `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` EmotionValue[] — 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. Returned for an unknown enum value (sentiment, emotions, field_type, sort, order), an inverted range whose *_min/*_since exceeds its *_max/*_until, a malformed cursor, or a cursor issued for a different sort/order.
- `401` — Unauthorized (missing or invalid API key)
- `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/113a9be98fc1/schema)
