---
title: "List extension reports"
method: GET
path: "/api/v1/extension/reports/"
tags: ["Extension Reports"]
---

# List extension reports

`GET /api/v1/extension/reports/`

Return a paginated list of Integrito report-data records owned by the authenticated user, ordered by ID descending.

## Query parameters

- `page` integer
- `size` integer

## Response `200`

A paginated list of Integrito report-data records.

- object
  - `success` boolean
  - `data` object
    - `reports` IntegritoReportData[]
      - `id` string, nullable — Numeric report ID serialised as a string.
      - `text_id` string, nullable — ID of the associated text, serialised as a string.
      - `item_id` string, nullable — External item identifier set by the API consumer. Unique per owning user; `null` when no value was provided.
      - `plagiarism` number, float, nullable — Plagiarism percentage (0–100), or `null` when not yet checked.
      - `plagiarism_error` string, nullable — Error message from the plagiarism check, or `null` when no error occurred.
      - `ai` number, float, nullable — AI-detection score (0–100), or `null` when not yet checked.
      - `ai_error` string, nullable — Error message from the AI check, or `null` when no error occurred.
      - `checking` boolean — Whether the record is currently in a checking state.
      - `created_at` string, nullable — Creation Unix timestamp in milliseconds, serialised as a string.
      - `updated_at` string, nullable — Last-update Unix timestamp in milliseconds, serialised as a string. `null` until the record is updated.
  - `pagination` object — Standard pagination envelope.
    - `currentPage` integer
    - `numItemsPerPage` integer
    - `totalCount` integer

## Other responses

- `403` — Authentication or authorization failed because the token is missing, invalid, blocked, or not allowed to access the resource.

---

[API](https://skmtc.net/plagiarismcheck/apis/plagiarismcheck-org-api.md) · [All operations](https://skmtc.net/plagiarismcheck/apis/plagiarismcheck-org-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/plagiarismcheck/plagiarismcheck-org-api/revisions/034b4999350e/schema)
