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

# Read one conversation answer record

> One conversation answer record by ``message_id`` under ``route_name``, caller-scoped.

An api-door record is readable by the caller that invoked the turn or by an admin; a
channel-door record is admin-only. A missing record or one on another route is a 404; a
record that exists but is not the caller's is a 403. An admin reads the whole record;
the caller reads the caller-safe projection, which withholds the internal detail of the
route key's run.



## OpenAPI

````yaml /openapi.json get /api/conversations/{route_name}/messages/{message_id}
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/conversations/{route_name}/messages/{message_id}:
    get:
      tags:
        - conversations
      summary: Read one conversation answer record
      description: >-
        One conversation answer record by ``message_id`` under ``route_name``,
        caller-scoped.


        An api-door record is readable by the caller that invoked the turn or by
        an admin; a

        channel-door record is admin-only. A missing record or one on another
        route is a 404; a

        record that exists but is not the caller's is a 403. An admin reads the
        whole record;

        the caller reads the caller-safe projection, which withholds the
        internal detail of the

        route key's run.
      operationId: get_api_conversations_route_name_messages_message_id
      parameters:
        - in: path
          name: route_name
          required: true
          schema:
            type: string
        - in: path
          name: message_id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Malformed request.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Forbidden.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````