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

# List Conversation Messages

> List messages in a thread (most recent first).

Only public (`visibility='everyone'`), non-deleted messages are returned —
family-private messages are never exposed. 404 if the thread isn't in your org.



## OpenAPI

````yaml /openapi.json get /v1/conversations/{conversation_id}/messages
openapi: 3.1.0
info:
  title: EquateIt Public API
  description: >-
    REST API for EquateIt tutoring organisations. Pipe your sessions, invoices,
    payments, tutor earnings, students, and more into your own tools. Most
    endpoints are reads; a focused set of writes (each gated by a *:write scope)
    create or update data, including creating student/tutor/parent accounts.


    Authenticate every request with an org API key:

        Authorization: Token token=ei_live_...

    Mint keys in the EquateIt app under Settings → Developers.
  version: 1.0.0
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: General
  - name: Sessions
  - name: Tutors
  - name: Students & Parents
  - name: Billing
  - name: Curriculum
  - name: Coursework
  - name: Operations
  - name: Pricing
  - name: Bookings
  - name: Blog
  - name: Reports
paths:
  /v1/conversations/{conversation_id}/messages:
    get:
      tags:
        - General
      summary: List Conversation Messages
      description: >-
        List messages in a thread (most recent first).


        Only public (`visibility='everyone'`), non-deleted messages are returned
        —

        family-private messages are never exposed. 404 if the thread isn't in
        your org.
      operationId: >-
        list_conversation_messages_v1_conversations__conversation_id__messages_get
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            title: Conversation Id
        - name: since
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: created_at >= this ISO timestamp
            title: Since
          description: created_at >= this ISO timestamp
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Records per page (default 50, max 100)
            default: 50
            title: Limit
          description: Records per page (default 50, max 100)
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_Message_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Page_Message_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Message'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PageMeta'
      type: object
      required:
        - data
        - meta
      title: Page[Message]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Message:
      properties:
        id:
          type: string
          title: Id
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        sender_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Sender Id
        content:
          anyOf:
            - type: string
            - type: 'null'
          title: Content
        message_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Message Type
        visibility:
          anyOf:
            - type: string
            - type: 'null'
          title: Visibility
        reply_to_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Reply To Id
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
      title: Message
      description: >-
        One message in a thread. Only `visibility='everyone'` (non-deleted)
        messages

        are exposed by the read endpoints — family-private
        (`student_only`/`parent_only`)

        messages are never returned.
    PageMeta:
      properties:
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Count
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
      type: object
      required:
        - limit
        - offset
      title: PageMeta
      description: |-
        Pagination envelope metadata. `count` is the size of the returned page;
        `total` (when present) is the full result-set size for offset paging.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````