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

# List conversation messages

> Returns the complete typed timeline newest first. Reading has no side effects. A blocked conversation's timeline is unavailable until it is unblocked in the inbox.



## OpenAPI

````yaml /openapi/creator.yaml get /conversations/{conversationId}/messages
openapi: 3.1.0
info:
  title: Passionfroot Creator API
  version: 1.0.0-alpha
  description: >
    Access a creator's own partners, collaborations, placements, catalog,
    proposals, and conversations.

    The API is in alpha. Every operation is restricted to the creator account
    that owns the API key.
servers:
  - url: https://workspace.passionfroot.me/api/creators/v1
security:
  - bearerAuth: []
tags:
  - name: Placements
  - name: Partners
  - name: Collaborations
  - name: Conversations
  - name: Catalog
  - name: Requests
  - name: Proposals
paths:
  /conversations/{conversationId}/messages:
    get:
      tags:
        - Conversations
      summary: List conversation messages
      description: >-
        Returns the complete typed timeline newest first. Reading has no side
        effects. A blocked conversation's timeline is unavailable until it is
        unblocked in the inbox.
      operationId: listCreatorConversationMessages
      parameters:
        - $ref: '#/components/parameters/ConversationId'
        - $ref: '#/components/parameters/CreatedAfter'
        - $ref: '#/components/parameters/Limit250'
        - $ref: '#/components/parameters/Cursor'
      responses:
        '200':
          description: A page of timeline events.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessagePage'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    ConversationId:
      name: conversationId
      in: path
      required: true
      schema:
        type: string
    CreatedAfter:
      name: createdAfter
      in: query
      description: Include messages created on or after this date or timestamp.
      schema:
        type: string
    Limit250:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 50
    Cursor:
      name: cursor
      in: query
      description: Opaque cursor returned by the previous page.
      schema:
        type: string
  schemas:
    MessagePage:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Message'
        pagination:
          $ref: '#/components/schemas/Pagination'
    Message:
      type: object
      required:
        - id
        - type
        - actor
        - collaborationId
        - createdAt
      properties:
        id:
          type: string
        type:
          type: string
          description: Public timeline event type.
        actor:
          type: string
          enum:
            - creator
            - brand
            - system
        collaborationId:
          type:
            - string
            - 'null'
        createdAt:
          type: string
          format: date-time
        text:
          type: string
          description: May contain basic HTML.
        comment:
          type: string
        attachments:
          type: array
          items:
            $ref: '#/components/schemas/Attachment'
        proposal:
          anyOf:
            - $ref: '#/components/schemas/Proposal'
            - type: 'null'
        stats:
          type: object
          properties:
            viewCount:
              type:
                - integer
                - 'null'
            likeCount:
              type:
                - integer
                - 'null'
            commentCount:
              type:
                - integer
                - 'null'
            shareCount:
              type:
                - integer
                - 'null'
            contentUrl:
              type:
                - string
                - 'null'
            contentTitle:
              type:
                - string
                - 'null'
            platform:
              type:
                - string
                - 'null'
    Pagination:
      type: object
      required:
        - hasMore
      properties:
        nextCursor:
          type:
            - string
            - 'null'
        hasMore:
          type: boolean
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
    Attachment:
      type: object
      required:
        - fileName
        - fileSize
        - mimeType
        - downloadUrl
      properties:
        fileName:
          type: string
        fileSize:
          type: integer
        mimeType:
          type: string
        downloadUrl:
          type:
            - string
            - 'null'
          format: uri
          description: Signed URL that expires after one hour.
    Proposal:
      type: object
      required:
        - proposalId
        - collaborationId
        - requestId
        - status
        - createdBy
        - priceCents
        - budgetCents
        - currency
        - packageName
        - placements
      properties:
        proposalId:
          type:
            - string
            - 'null'
        collaborationId:
          type: string
        requestId:
          type: string
        status:
          type: string
          enum:
            - offer_pending
            - pending
            - accepted
            - rejected
            - cancelled
        createdBy:
          type: string
          enum:
            - creator
            - brand
        priceCents:
          type:
            - integer
            - 'null'
          description: Creator earnings if accepted. Mutually exclusive with `budgetCents`.
        budgetCents:
          type:
            - integer
            - 'null'
          description: >-
            Brand's disclosed gross budget. Mutually exclusive with
            `priceCents`.
        currency:
          type:
            - string
            - 'null'
        packageName:
          type: string
        comment:
          type: string
        placements:
          type: array
          items:
            $ref: '#/components/schemas/ProposalPlacement'
    ProposalPlacement:
      type: object
      required:
        - date
        - postType
        - platform
      properties:
        date:
          type: string
        postType:
          type:
            - string
            - 'null'
        platform:
          type:
            - string
            - 'null'
  responses:
    BadRequest:
      description: Invalid parameters or body.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing, invalid, expired, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The key lacks access or the required scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found or not owned by this creator.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Too many requests, please try again later.
  headers:
    RetryAfter:
      description: Seconds to wait before retrying.
      schema:
        type: integer
        minimum: 1
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Passionfroot API key
      description: Create an API key from Settings → API in an approved Creator workspace.

````