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

# Pipelines get comments

> Get list of comments of an opportunity / ticket



## OpenAPI

````yaml GET /pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments
openapi: 3.0.0
info:
  title: Fliqr AI API
  version: '1.1'
  description: >-
    REST API for Fliqr AI. Authenticate every request with the `X-ACCESS-TOKEN`
    header.
servers:
  - url: https://app.fliqr.ai/api
    description: Production
security:
  - APIKeyHeader: []
tags:
  - name: Accounts
  - name: Contacts
  - name: AI Agents
  - name: Pipelines
  - name: Ecommerce
  - name: Appointment Management
  - name: Templates
paths:
  /pipelines/{pipeline_id}/opportunities/{opportunity_id}/comments:
    get:
      tags:
        - Pipelines
      summary: Pipelines Get Comments
      description: Get list of comments of an opportunity / ticket
      operationId: pipelinesGetComments
      parameters:
        - name: pipeline_id
          in: path
          required: true
          schema:
            type: number
        - name: opportunity_id
          in: path
          required: true
          schema:
            type: number
        - name: offset
          in: query
          required: false
          description: >-
            Specifies the starting position of the first record to return in a
            paginated response.
          schema:
            type: integer
            default: 0
        - name: limit
          in: query
          required: false
          description: Sets the maximum number of records to return per request.
          schema:
            type: integer
            default: 100
      responses:
        default:
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/OpportunityComment'
components:
  schemas:
    OpportunityComment:
      type: object
      properties:
        id:
          type: number
          format: int64
        data:
          type: string
        created_at:
          type: string
          example: '2028-02-08 12:34:56'
          description: UTC
        created_by:
          type: number
          description: Admin ID
      xml:
        name: OpportunityComment
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN
      description: >-
        API access token from your Fliqr AI dashboard (**Settings → API**). Send
        it in the `X-ACCESS-TOKEN` header on every request.

````