---
title: "Get list of conversation messages"
method: GET
path: "/api/v4/messaging/conversations/{conversation_id}/messages"
tags: ["Messaging"]
---

# Get list of conversation messages

`GET /api/v4/messaging/conversations/{conversation_id}/messages`

Returns a paginated list of all messages in a conversation.

## Path parameters

- `conversation_id` string, uuid, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

OK

- object
  - `messages` Message[]
    - `id` string, uuid — The unique identifier of the message.
    - `conversation` ConversationShort
      - `id` string, uuid — The unique identifier of the conversation.
    - `direction` 'inbound' | 'outbound' | 'whisper' — Direction of the message.
    - `user` UserShort
      - `id` integer — The unique identifier of the user.
      - `name` string — The name of the user.
      - `email` string, email — The email address of the user.
    - `target_user` UserShort
      - `id` integer — The unique identifier of the user.
      - `name` string — The name of the user.
      - `email` string, email — The email address of the user.
    - `content_type` 'audio' | 'contact' | 'document' | 'image' | 'location' | 'text' | 'video' | 'voice' — The message content type.
    - `content_data` union — Content payload. Structure varies by content type.
      - MessageContentDataText — Payload for text messages.
        - `text` string — Text content of the message.
      - MessageContentDataMedia — Payload for audio, document, image, video, or voice messages.
        - `url` string, uri — Media URL.
        - `filename` string, nullable — Name of the media file when applicable.
        - `size` integer, nullable — Size of the media file in bytes.
        - `caption` string, nullable — Optional caption for the media file.
    - `status` 'initial' | 'accepted' | 'uploading' | 'waiting' | 'ready' | 'sent' | 'delivered' | 'seen' | 'whispered' | 'failed' — Status of the message.
    - `status_reason` string, nullable — Additional information when the message status is failed.
    - `created_at` string, date-time — Date and time the message was created.
    - `updated_at` string, date-time — Date and time the message was last updated.
  - `metadata` Metadata — Pagination metadata for list responses.
    - `total` integer — The total number of items available for the requested resource.
    - `next_cursor` string, nullable — Cursor for fetching the next page of results when cursor-based pagination is supported.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `429` — Too many requests

---

[API](https://skmtc.net/voiso/apis/voiso-api.md) · [All operations](https://skmtc.net/voiso/apis/voiso-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voiso/voiso-api/revisions/3d34cfd8f064/schema)
