---
title: "GET /api/reports"
method: GET
path: "/api/reports"
tags: ["reports"]
---

# GET /api/reports

`GET /api/reports`

Get a list of comment reports

## Query parameters

- `cursor` string — Non inclusive cursor from which to fetch the reports based on sort
- `limit` integer — The number of reports to return
- `sort` 'asc' | 'desc' — The sort order of the reports
- `status` 'pending' | 'resolved' | 'closed'

## Response `200`

List of comment reports

- object
  - `results` object[], required
    - `id` string, uuid, required
    - `commentId` string, required — Hex format string, e.g. `0x1234567890abcdef`
    - `reportee` string, required — Hex format string, e.g. `0x1234567890abcdef`
    - `message` string, required
    - `createdAt` string, nullable, required
    - `updatedAt` string, nullable, required
    - `status` 'pending' | 'resolved' | 'closed', required
  - `pagination` object, required
    - `limit` integer, required
    - `hasNext` boolean, required
    - `hasPrevious` boolean, required
    - `startCursor` string — Hex format string, e.g. `0x1234567890abcdef`
    - `endCursor` string — Hex format string, e.g. `0x1234567890abcdef`

## Other responses

- `400` — Bad request
- `401` — When user is not authenticated

---

[API](https://skmtc.net/ethcomments/apis/ethereum-comments-protocol-indexer-api.md) · [All operations](https://skmtc.net/ethcomments/apis/ethereum-comments-protocol-indexer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ethcomments/ethereum-comments-protocol-indexer-api/versions/9627e9d1ff21/schema)
