---
title: "List comments"
method: GET
path: "/v3/comments"
tags: ["Tags and Comments"]
---

# List comments

`GET /v3/comments`

Retrieve a paginated list of comments in your organization. Use query parameters to filter by asset, creator, or creation time.<br><br>This endpoint does not cost any credits to execute.

## Query parameters

- `organization_id` string, uuid, required — The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information.
- `page_size` integer — Number of comments to return per page.
- `page_token` string — Pagination token from a previous response to retrieve the next page of results.
- `order_by` 'create_time_asc' | 'create_time_desc' — Sort order. Supported values: create_time_asc, create_time_desc.
- `asset_id` string — Filter comments by asset identifier (host IP, certificate fingerprint, or web property hostname:port).
- `created_by` string, uuid — Filter comments by the user ID of the user who created the comment.
- `created_before` string, date-time — Filter comments created before this RFC3339 timestamp.
- `created_after` string, date-time — Filter comments created after this RFC3339 timestamp.

## Headers

- `X-Organization-ID` string, uuid — The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. Note: The header parameter is supported for atypical use cases; we recommend always providing this field via the query parameter.

## Response `200`

Comments retrieved successfully

- ResponseEnvelopeCommentsList
  - `result` CommentsList
    - `comments` Comment[], nullable, required — The list of comments.
      - `asset_id` string, required — The identifier of the commented asset (host IP, certificate SHA-256 fingerprint, or web property domain/IP:port).
      - `asset_type` 'host' | 'certificate' | 'web_property' | 'unknown', required — The inferred type of the asset.
      - `body` string, required — The comment body text.
      - `created_at` string, date-time, required — RFC3339 timestamp when the comment was created.
      - `created_by` string, uuid, required — The user ID of the user who created the comment.
      - `id` string, uuid, required — The unique ID of the comment.
      - `platform_ref` string, required — A direct URL to the asset in the Censys platform.
      - `updated_at` string, date-time, required — RFC3339 timestamp when the comment was last updated.
    - `next_page_token` string — Token to retrieve the next page of results. Omitted when there are no more results.
    - `total_size` integer, required — Total number of comments matching the filters.

## Other responses

- `401` — Request does not contain a valid Authorization token
- `403` — User does not have permission to access this data
- `422` — Invalid input
- `500` — Internal server error

---

[API](https://skmtc.net/censys/apis/censys-platform-api.md) · [All operations](https://skmtc.net/censys/apis/censys-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/censys/censys-platform-api/revisions/261c916bf05b/schema)
