> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mightynetworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Query details of a specific comment by its ID



## OpenAPI

````yaml https://api.mn.co/admin/v1/spec.json get /admin/v1/networks/{network_id}/posts/{post_id}/comments/{id}/
openapi: 3.1.0
info:
  version: 1.0.0
  title: The Mighty Networks Admin API
  description: An API for managing your Mighty Networks network
servers:
  - url: https://api.mn.co
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Members
    description: Manage members of your network
  - name: Courseworks
    description: Manage course content (lessons, quizzes, sections)
  - name: Reactions
    description: Manage reactions on comments
  - name: Mute
    description: Mute posts for users
  - name: Comments
    description: Manage comments on posts
  - name: Invites
    description: Invites allow you to invite users to your network
  - name: Tags
    description: Manage tags for your network
  - name: Spaces
    description: >-
      Spaces are the organizational units within a Network where content and
      members are organized
  - name: Plans
    description: Manage plans in your network
  - name: PasswordResets
    description: Manage member password resets
  - name: Badges
    description: Manage badges for your network
  - name: Rsvps
    description: Manage event RSVPs for your network
  - name: Options
    description: Manage dropdown custom field options
  - name: Answers
    description: Manage member responses to custom fields
  - name: Subscriptions
    description: >-
      Manage payment subscriptions - recurring payments from members to hosts
      for plans
  - name: Purchases
    description: Manage purchases and subscriptions for your network
  - name: Posts
    description: Posts also include Articles.
  - name: Polls
    description: >-
      Polls and Questions allow members to share opinions and engage with each
      other
  - name: Networks
    description: >-
      Networks are the top-level organizational unit under which other resources
      are nested
  - name: Me
    description: Metadata about the requesting user
  - name: Events
    description: Events are scheduled gatherings that members can RSVP to and engage with
  - name: CustomFields
    description: Manage custom fields for your network
  - name: Collections
    description: Manage collections in your network
  - name: Assets
    description: Manage assets for your network
  - name: AbuseReports
    description: Manage abuse reports for your network
paths:
  /admin/v1/networks/{network_id}/posts/{post_id}/comments/{id}/:
    get:
      tags:
        - Comments
      summary: Query details of a specific comment by its ID
      operationId: show_comment
      parameters:
        - name: post_id
          in: path
          required: true
          description: The ID of the post
          schema:
            type: integer
            format: uint64
        - name: id
          in: path
          required: true
          description: The ID of the comment
          schema:
            type: integer
            format: uint64
        - $ref: '#/components/parameters/networkId'
      responses:
        '200':
          description: Details about the requested comment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommentResponse'
        '404':
          description: Post or comment not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  parameters:
    networkId:
      name: network_id
      in: path
      description: The Network's unique integer ID, or subdomain
      required: true
      schema:
        oneOf:
          - type: integer
            description: Unique numeric network ID
            format: uint64
          - type: string
            description: Network subdomain
            format: /^[a-z][a-z0-9-]+$/
  schemas:
    CommentResponse:
      description: >-
        Comments are created by users on posts, chats, and other commentable
        content
      type: object
      required:
        - author_id
        - cheer_count
        - created_at
        - depth
        - id
        - permalink
        - reply_count
        - replyable
        - space_id
        - targetable_id
        - targetable_type
        - text
        - updated_at
      properties:
        id:
          type: integer
          format: uint64
          description: The record's integer ID
          example: '1234'
        created_at:
          type: string
          format: date-time
          description: The date and time the record was created
          example: '2026-07-14T19:59:54+00:00'
        updated_at:
          type: string
          format: date-time
          description: The date and time the record was last modified
          example: '2026-07-14T19:59:54+00:00'
        targetable_id:
          type: integer
          format: uint64
          description: The ID of the item being commented on (e.g., post ID)
        targetable_type:
          type: string
          description: The type of item being commented on (e.g., 'Post')
        text:
          type: string
          description: The formatted comment text with HTML and links
        replyable:
          type: boolean
          description: Whether this comment can be replied to
        depth:
          type: integer
          format: uint64
          description: The nesting depth of this comment (1 for top-level, 2+ for replies)
        cheer_count:
          type: integer
          format: uint64
          description: The number of cheers (likes) this comment has received
        reply_count:
          type: integer
          format: uint64
          description: The number of replies to this comment
        reply_to_id:
          type: integer
          format: uint64
          description: The ID of the parent comment if this is a reply
        author_id:
          type: integer
          format: uint64
          description: The ID of the user who created the comment
        space_id:
          type: integer
          format: uint64
          description: The ID of the space where the comment was created
        files:
          type: array
          description: An array of file/asset objects attached to the comment
          items:
            $ref: '#/components/schemas/AssetResponse'
        embedded_link:
          $ref: '#/components/schemas/EmbeddedLinkResponse'
          description: Embedded link preview data
        permalink:
          type: string
          format: url
          description: The comment's unique address within the network
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: An error message explaining the problem encountered
    AssetResponse:
      description: File or media asset attached to content
      type: object
      required:
        - id
        - type
      properties:
        id:
          type: integer
          format: uint64
          description: The record's integer ID
          example: '1234'
        url:
          type: string
          format: url
          description: URL to access the asset
        type:
          type: string
          description: The type of asset (Asset, StaticAsset, etc.)
        name:
          type: string
          description: Original filename of the asset
    EmbeddedLinkResponse:
      description: Embedded link preview data for rich link previews
      type: object
      required:
        - id
        - url
      properties:
        id:
          type: integer
          format: uint64
          description: The record's integer ID
          example: '1234'
        url:
          type: string
          format: url
          description: The URL of the embedded link
        title:
          type: string
          description: The title of the linked content
        description:
          type: string
          description: Description of the linked content
        favicon_url:
          type: string
          format: url
          description: URL to the favicon of the linked site
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````