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

# Retrieve message

> Retrieve a message.



## OpenAPI

````yaml GET /v1/threads/{thread_id}/messages/{message_id}
openapi: 3.0.0
info:
  title: ZeroBot API
  version: 1.0.0
  description: API reference for ZeroBot
servers:
  - url: https://api.zerobot.ai
security: []
paths:
  /v1/threads/{thread_id}/messages/{message_id}:
    get:
      summary: Retrieve a message
      description: Retrieve a message.
      parameters:
        - name: thread_id
          description: The ID of the thread to which this message belongs.
          in: path
          required: true
          schema:
            type: string
        - name: message_id
          description: The ID of the message to retrieve.
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: object
                    description: The message object matching the specified ID.

````