Skip to main content
GET
/
reviews
List Reviews
curl --request GET \
  --url https://api.flightlinehq.com/v1/reviews
{
  "data": [
    {
      "created_at": "2026-05-30T17:00:00Z",
      "document_count": 3,
      "label": "Smith refinance",
      "reference_id": "LN-2026-04-8812",
      "report_available": true,
      "review_id": "9b2c1f3a-4d5e-6789-abcd-ef0123456789",
      "review_type": "mortgage_v1",
      "sandbox": false,
      "status": "completed",
      "updated_at": "2026-05-30T17:05:00Z"
    }
  ],
  "next_cursor": "MjAyNi0wNS0zMFQxNzowMDowMCswMDowMHw5YjJjMWYzYQ=="
}

Headers

authorization
string | null
X-Api-Key
string | null

Query Parameters

limit
integer
default:20

Maximum reviews to return (1-100).

Required range: 1 <= x <= 100
cursor
string | null

Opaque pagination cursor from a previous response's 'next_cursor'. Omit for the first page.

Response

Successful Response

The GET /reviews response: a cursor-paginated page of reviews.

Reviews are returned newest first (stable order over (created_at DESC, id DESC)). next_cursor is an opaque token: when non-null, pass it back as the cursor query param to fetch the next page; when null, this is the last page. Cursors are opaque by contract; treat them as a black box and do not parse them.

data
ReviewResource · object[]

This page of reviews, newest first.

next_cursor
string | null

Opaque cursor for the next page. Pass it back as the cursor query param to continue; null when there are no more reviews.

Example:

"MjAyNi0wNS0zMFQxNzowMDowMCswMDowMHw5YjJjMWYzYQ=="