Skip to main content
GET
Permission Required: project:read-runs
Retrieve a paginated list of reviewed bugs for your project. This endpoint returns the project-wide bug review feed (bugs that have been reviewed and tracked across runs). To list bugs detected during a single run, use List Run Bugs instead.
Returns 403 if the project does not have the bug_review feature enabled.

Query Parameters

string
default:"active"
Filter by status: active, archived, or all
Free-text search across bug title, description, and reproduction steps
string
Filter by severity: low, medium, high, or critical
string
Filter by bug category (e.g., ui, gameplay, performance)
string
Field to sort by (e.g., created_at, severity, occurrence_count)
string
Sort direction: asc or desc
integer
default:"0"
Page number (0-indexed)
integer
default:"20"
Results per page (1-100)

Response

BugSummary[]
required
Array of bug summary objects
object
required
Pagination metadata (page, page_size, total_count, total_pages)

BugSummary Object

string
required
Unique bug identifier (consistent across runs)
string
required
Project the bug belongs to
string
required
Short bug title
string
required
Detailed description of the bug
string
required
Steps to reproduce the bug
string
required
Severity level: low, medium, high, critical
string
required
Bug category (e.g., ui, gameplay, performance)
string
required
Detection confidence: low, medium, high
string[]
required
Tags assigned to the bug
object
Additional bug-specific metadata, or null
string
required
Bug status: active or archived
boolean
required
Whether reporting for this bug is suppressed
integer
required
Number of times this bug has been observed across runs
string
required
ISO 8601 timestamp when the bug was first reviewed
string
Who created/reviewed the bug

Authorizations

X-Api-Key
string
header
required

API key for authentication

Path Parameters

projectId
string
required

The project ID. You can copy it from the project settings page or the project URL in the dashboard.

Query Parameters

status
enum<string>
default:active

Filter by status

Available options:
active,
archived,
all

Free-text search across title/description/reproduction steps

severity
enum<string>

Filter by severity

Available options:
low,
medium,
high,
critical
category
string

Filter by bug category

sort_by
string

Field to sort by

sort_order
enum<string>

Sort direction

Available options:
asc,
desc
page
integer
default:0

Page number (0-indexed)

page_size
integer
default:20

Results per page (1-100)

Required range: 1 <= x <= 100

Response

Successful response

data
object[]
pagination
object