---
title: "Get Message"
method: GET
path: "/messages/{message_id}"
tags: ["Messages"]
---

# Get Message

`GET /messages/{message_id}`

Endpoint to list messages with optional filters, pagination, and sorting.

## Path parameters

- `message_id` string, uuid, required

## Response `200`

Successful Response

- Message
  - `id` string, uuid
  - `date_created` string, date-time
  - `date_updated` string, date-time
  - `question` string, required — The question asked in the message.
  - `answer` string, required — The answer provided in response to the question.
  - `sources` object[] — The list of sources contributing to this answer.
  - `conversation_id` string, uuid, required — The ID of the conversation to which the message belongs.
  - `was_answered` boolean — Flag indicating whether the question was answered or not.
  - `reaction` 'thumbs_up' | 'thumbs_down' | 'no_reaction' — An enumeration.
  - `show_data_collection` boolean — Flag indicating whether to show data collection form.
  - `user_id` string, uuid, required — The ID of the user associated with the message.
  - `agent_conversation_id` string, uuid — The ID of the agent associated with the message.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/dante-ai/apis/dante-ai-api.md) · [All operations](https://skmtc.net/dante-ai/apis/dante-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dante-ai/dante-ai-api/versions/38b6c9a4246d/schema)
