Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.konbiniapi.com/llms.txt

Use this file to discover all available pages before exploring further.

What it does

Returns a public Reddit comment with author info, scores, reply presence, and media when available.

Tool details

FieldValue
Tool namereddit_get_comment
PlatformReddit
REST endpointGET /v1/reddit/posts/{postId}/comments/{commentId}
Result typeDetail tool

Parameters

ParameterTypeRequiredDescription
postIdstringYesReddit post ID (e.g. 1tgywrw or t3_1tgywrw)
commentIdstringYesReddit comment ID (e.g. okpklb6 or t1_okpklb6)
projection_presetstringNoDefaults to minimal. Allowed values: full, minimal, identity, engagement, content.
data_fieldsstring[]NoAdds top-level keys from data on top of the selected projection_preset.

Example

{
  "name": "reddit_get_comment",
  "arguments": {
    "postId": "DM8Q1ABC123",
    "commentId": "7526720000000000000",
    "projection_preset": "minimal",
    "data_fields": [
      "entityId",
      "published",
      "content",
      "url"
    ]
  }
}

Available data fields

  • @context
  • type
  • id
  • url
  • entityId
  • content
  • published
  • isPinned
  • isSponsored
  • hasReplies
  • likeCount
  • voteCount
  • attributedTo
  • inReplyTo
  • image
  • attachment

Response notes

Successful calls return a JSON object with a top-level data field and, when available, metadata.creditsUsed and metadata.creditsRemaining. See response format, pagination, and credits.