---
title: "Get a comment"
method: GET
path: "/v2/comments/{commentId}"
tags: ["comments"]
---

# Get a comment

`GET /v2/comments/{commentId}`

Fetches a single comment by its Blotato ID. The comment may be an inbound reply left by the user's audience on one of their posts, or an outbound comment the user posted through Blotato.

## Path parameters

- `commentId` string, required

## Response `200`

Default Response

- object
  - `accountId` string, required — ID of the social account this comment belongs to.
  - `authorId` string, nullable, required — Platform-native id of the comment author.
  - `createdAt` string, required
  - `errorCode` integer, nullable, required — Set only when status is `failed`.
  - `errorMessage` string, nullable, required — Set only when status is `failed`.
  - `id` string, required
  - `isAuthor` boolean, required — `true` if the user's own connected account authored this comment.
  - `parentCommentId` string, nullable, required — Blotato id of the parent comment when this comment is a reply. null for top-level comments.
  - `platform` 'facebook' | 'instagram', required
  - `platformCommentId` string, nullable, required — Platform-native id of the comment.
  - `platformPostId` string, required — Platform-native id of the parent post being commented on.
  - `postId` string, nullable, required — Blotato ID of the post (if published through Blotato).
  - `status` 'deleted' | 'failed' | 'posted' | 'processing' | 'queued', required
  - `text` string, required

## Other responses

- `403` — Forbidden
- `404` — Not found
- `500` — Server error

---

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