Skip to main content
GET
/
bugs
/
{bugId}
curl -X GET "https://nunu.ai/api/v1/bugs/bug_8a1b2c3d" \
  -H "X-Api-Key: YOUR_API_TOKEN"
{
  "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": 2,
  "created_at": "2026-04-01T10:00:00.000000+00:00",
  "created_by": "reviewer@example.com",
  "occurrences": [
    {
      "id": "occ_1",
      "multiplayer_run_id": "lkkg6t5612m",
      "player_index": 0,
      "test_step": 3,
      "turn": 12,
      "detected_at": "2026-04-01T09:55:01.000000+00:00",
      "reviewed_at": "2026-04-01T10:00:00.000000+00:00",
      "reviewed_by": "reviewer@example.com",
      "review_comment": "confirmed",
      "title": "Inventory icon flickers when opening menu",
      "test_name": "Inventory smoke",
      "test_version": 4,
      "test_plan_name": "Nightly Smoke",
      "severity": "medium",
      "category": "ui"
    }
  ]
}

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 single reviewed bug along with every occurrence detected across runs.
Returns 403 if the project does not have the bug_review feature enabled.

Path Parameters

bugId
string
required
The bug identifier (returned in the List Reviewed Bugs response)

Response

The response includes every field on the BugSummary object, plus a list of occurrences describing each individual detection.
occurrences
BugOccurrenceSummary[]
required
Per-run occurrences of this bug
curl -X GET "https://nunu.ai/api/v1/bugs/bug_8a1b2c3d" \
  -H "X-Api-Key: YOUR_API_TOKEN"
{
  "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": 2,
  "created_at": "2026-04-01T10:00:00.000000+00:00",
  "created_by": "reviewer@example.com",
  "occurrences": [
    {
      "id": "occ_1",
      "multiplayer_run_id": "lkkg6t5612m",
      "player_index": 0,
      "test_step": 3,
      "turn": 12,
      "detected_at": "2026-04-01T09:55:01.000000+00:00",
      "reviewed_at": "2026-04-01T10:00:00.000000+00:00",
      "reviewed_by": "reviewer@example.com",
      "review_comment": "confirmed",
      "title": "Inventory icon flickers when opening menu",
      "test_name": "Inventory smoke",
      "test_version": 4,
      "test_plan_name": "Nightly Smoke",
      "severity": "medium",
      "category": "ui"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

API key for authentication

Path Parameters

bugId
string
required

Bug ID

Response

Successful response

id
string
project_id
string
title
string
description
string
reproduction_steps
string
severity
enum<string>
Available options:
low,
medium,
high,
critical
category
string
confidence
enum<string>
Available options:
low,
medium,
high
tags
string[]
details
object
status
enum<string>
Available options:
active,
archived
suppress_reporting
boolean
occurrence_count
integer
created_at
string<date-time>
created_by
string | null
occurrences
object[]