---
title: "Get Bug Report"
method: GET
path: "/admin/bug-reports/{report_id}"
tags: ["Bug Reports"]
---

# Get Bug Report

`GET /admin/bug-reports/{report_id}`

## Path parameters

- `report_id` string, required — The ID of the bug report

## Response `200`

Successful Response

- BugReportResponse
  - `id` string, required
  - `title` string, required
  - `reporter_id` string, required
  - `reporter_email` string, nullable
  - `annotations` BugReportAnnotation[], required
    - `comment` string, required
    - `x` number, required
    - `y` number, required
    - `width` number, required
    - `height` number, required
    - `selector` string, nullable
    - `test_id` string, nullable
    - `element_html` string, nullable
  - `context` BugReportContext, required — Everything the client could observe at the moment the report was sent.
    - `url` string, required
    - `route` string, required
    - `user_agent` string, required
    - `viewport_width` integer, required
    - `viewport_height` integer, required
    - `document_width` integer, required
    - `document_height` integer, required
    - `scroll_x` integer
    - `scroll_y` integer
    - `device_pixel_ratio` number
    - `is_mobile` boolean
    - `app_version` string, nullable
    - `posthog_replay_url` string, nullable
    - `sentry_replay_id` string, nullable
    - `console` ConsoleEntry[]
      - `level` 'log' | 'info' | 'warn' | 'error' | 'debug', required
      - `message` string, required
      - `at` string, date-time, required
    - `network` NetworkEntry[]
      - `method` string, required
      - `url` string, required
      - `status` integer, nullable
      - `duration_ms` integer, nullable
      - `at` string, date-time, required
      - `response_body` string, nullable
  - `screenshot_url` string, nullable
  - `status` 'open' | 'resolved', required
  - `created_at` string, date-time, required
  - `resolved_at` string, date-time, nullable

## Other responses

- `400` — Malformed identifier
- `404` — Resource not found
- `422` — Validation Error

---

[API](https://skmtc.dev/excellence-ai/apis/excellence-learning.md) · [All operations](https://skmtc.dev/excellence-ai/apis/excellence-learning/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/excellence-ai/excellence-learning/revisions/c407f3b5a05b/schema)
