Skip to main content
GET
Error

Authorizations

Authorization
string
header
required

API token obtained from the Tokens endpoint or CLI device login. Include as Authorization: Bearer <token>. Requests made with a managed CLI session also include X-Strix-Workspace: <organization_id> to pin a process to the workspace it started in; recovery endpoints report the current workspace after a concurrent switch.

Query Parameters

page
integer
default:1

Page number of the result set. The first page is 1.

Required range: x >= 1
limit
integer
default:20

Maximum number of items per page. The default is 20 and the maximum is 100.

Required range: 1 <= x <= 100

Match repository, PR title, or PR number.

status
string

Comma-separated review statuses. Use pending, running, completed, posting, posted, or failed.

group
enum<string>

Filter by disposition group. open = the PR is still open with nothing demanding action (includes runs currently in flight). attention = failed runs, plus open PRs with open findings. merged_open = the PR merged while it still has open findings (run a re-review to verify them against the base branch). passed = merged/closed with nothing open. Deprecated names keep their original semantics: active/running = runs in flight, completed = terminal with nothing unresolved.

Available options:
open,
attention,
merged_open,
passed,
active,
running,
completed
pr_state
enum<string>

Filter by the pull request's own lifecycle. open also matches reviews whose PR state is unknown (older rows).

Available options:
open,
merged,
closed
repository_full_name
string

Filter by repository (owner/name).

date_from
string

ISO date lower bound (created_at).

date_to
string

ISO date upper bound (created_at).

sort_by
enum<string>
default:created_at

Sort by created_at or updated_at.

Available options:
created_at,
updated_at
sort_order
enum<string>
default:desc

Sort direction. Use asc for oldest first or desc for newest first.

Available options:
asc,
desc
include_counts
boolean
default:false

Include exact counts for all review groups and lanes.

Response

Paginated PR reviews.

items
object[]
required
meta
object
required
counts
object

Review counts per disposition group. The deprecated keys keep their original semantics: active/running = runs currently in flight, completed = terminal reviews with nothing unresolved (regardless of the PR's own state).