Skip to main content
GET
/
insight
/
paginated
Get Records Paginated
curl --request GET \
  --url https://api.example.com/insight/paginated \
  --header 'Authorization: Bearer <token>'
{
  "records": [
    {
      "id": "<string>",
      "name": "<string>",
      "size_mb": 123,
      "creation_date": "2023-11-07T05:31:56Z",
      "modified_date": "2023-11-07T05:31:56Z",
      "status": "Uploaded",
      "is_archived": true,
      "is_public": true,
      "participants_count": 123,
      "respondents_count": 123,
      "respondent_names": [
        "<string>"
      ],
      "has_reports": true,
      "duration_sec": 123,
      "file_extension": "<string>",
      "file_name": "<string>",
      "type": "text",
      "project": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "has_more": true,
  "remaining_size_mb": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
limit
integer
default:50
search
string | null
status
string[] | null
type
string[] | null
archived
boolean | null

Response

Successful Response

Paginated response for records list.

records
RecordItem · object[]
required
total
integer
required
page
integer
required
limit
integer
required
has_more
boolean
required
remaining_size_mb
number | null