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

# Retorna um comentário

> Retorna um comentário específico através do ID.



## OpenAPI

````yaml GET /api/v1/comments/{id}
openapi: 3.1.0
info:
  title: MemberKit
  description: ''
  version: 1.0.0
servers: []
security:
  - apikey-query-api_key: []
tags:
  - name: academies
  - name: courses
  - name: lessons
  - name: memberships
  - name: classrooms
  - name: rankings
  - name: users
  - name: scores
  - name: quizzes
  - name: hooks
  - name: comments
paths:
  /api/v1/comments/{id}:
    get:
      tags:
        - comments
      summary: Retorna um comentário
      description: Retorna um comentário específico através do ID.
      parameters:
        - name: id
          in: path
          description: ID do comentário.
          required: true
          example: 0
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Comment'
          headers: {}
      deprecated: false
      security:
        - apikey-query-api_key: []
components:
  schemas:
    Comment:
      type: object
      properties:
        id:
          type: integer
        content:
          type: string
        status:
          type: string
        parent_id:
          type:
            - integer
            - 'null'
        classroom_id:
          type: integer
        created_at:
          type: string
        updated_at:
          type: string
        lesson:
          type: object
          properties:
            id:
              type: integer
              description: ID
            title:
              type: string
            url:
              type: string
              format: uri
            course:
              type: object
              properties:
                id:
                  type: integer
                name:
                  type: string
              required:
                - id
                - name
          required:
            - id
            - title
            - url
            - course
        user:
          $ref: '#/components/schemas/User'
      required:
        - id
        - content
        - status
        - parent_id
        - user
        - lesson
        - classroom_id
        - created_at
        - updated_at
    User:
      type: object
      properties:
        id:
          type: integer
        full_name:
          type: string
        email:
          type: string
          format: email
        profile_image_url:
          type:
            - string
            - 'null'
        sign_in_count:
          type: integer
        current_sign_in_at:
          type:
            - string
            - 'null'
          format: date-time
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - full_name
        - email
        - profile_image_url
        - sign_in_count
        - current_sign_in_at
        - created_at
        - updated_at
  securitySchemes:
    apikey-query-api_key:
      type: apiKey
      in: query
      name: api_key

````