Documentation Index
Fetch the complete documentation index at: https://api-docs.nunu.ai/llms.txt
Use this file to discover all available pages before exploring further.
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
Filter by status: active, archived, or all
Free-text search across bug title, description, and reproduction steps
Filter by severity: low, medium, high, or critical
Filter by bug category (e.g., ui, gameplay, performance)
Field to sort by (e.g., created_at, severity, occurrence_count)
Sort direction: asc or desc
Response
Array of bug summary objects
Pagination metadata (page, page_size, total_count, total_pages)
BugSummary Object
Unique bug identifier (consistent across runs)
Project the bug belongs to
Detailed description of the bug
Steps to reproduce the bug
Severity level: low, medium, high, critical
Bug category (e.g., ui, gameplay, performance)
Detection confidence: low, medium, high
Additional bug-specific metadata, or null
Bug status: active or archived
Whether reporting for this bug is suppressed
Number of times this bug has been observed across runs
ISO 8601 timestamp when the bug was first reviewed
Who created/reviewed the bug
curl -X GET "https://nunu.ai/api/v1/bugs?status=active&severity=high&page=0&page_size=20" \
-H "X-Api-Key: YOUR_API_TOKEN"
{
"data": [
{
"id": "bug_8a1b2c3d",
"project_id": "test",
"title": "Inventory icon flickers when opening menu",
"description": "When the inventory menu is opened quickly after a level transition, the inventory icon briefly flickers in and out.",
"reproduction_steps": "1. Complete a level. 2. Press the inventory button immediately after the transition.",
"severity": "medium",
"category": "ui",
"confidence": "high",
"tags": ["ui", "menu"],
"details": null,
"status": "active",
"suppress_reporting": false,
"occurrence_count": 4,
"created_at": "2026-04-01T10:00:00.000000+00:00",
"created_by": "reviewer@example.com"
}
],
"pagination": {
"page": 0,
"page_size": 20,
"total_count": 1,
"total_pages": 1
}
}
API key for authentication
status
enum<string>
default:active
Available options:
active,
archived,
all
Free-text search across title/description/reproduction steps
Available options:
low,
medium,
high,
critical
Available options:
asc,
desc
Required range: 1 <= x <= 100