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

# Get a conversation

> Returns one authorized conversation using the roomId and uuid values returned by GET /api/v2/logs.



## OpenAPI

````yaml get /api/v2/conversation/{roomId}/{uuid}
openapi: 3.0.0
info:
  version: 2.0.0
  title: Vida API
  description: Vida API Documentation
servers:
  - url: https://api.vida.dev
    description: Vida Production
    variables:
      baseUrl:
        default: api.vida.dev
        description: Production API Root
security: []
tags:
  - name: Agents
  - name: Inbound Email
    description: Control which senders may create inbound email work for an Agent.
  - name: Features
    description: Inspect capabilities available within an account hierarchy.
  - name: Conversation Logs
    description: Query conversation activity and calculate account-level metrics.
  - name: Computer Agents
    description: Set up, configure, inspect, and manage Vida Computer Agents.
  - name: Computer Agent Sessions
    description: View and reset Computer Agent sessions.
  - name: Accounts
  - name: Agent Templates
    description: Create, manage, and apply reusable Agent configurations.
paths:
  /api/v2/conversation/{roomId}/{uuid}:
    get:
      tags:
        - Conversations
      summary: Get a conversation
      description: >-
        Returns one authorized conversation using the roomId and uuid values
        returned by GET /api/v2/logs.
      parameters:
        - name: roomId
          in: path
          required: true
          schema:
            type: string
          description: Conversation room ID returned by the log entry.
          example: '2236859:2550714'
        - name: uuid
          in: path
          required: true
          schema:
            type: string
          description: Conversation lookup value returned by the log entry.
          example: bf0011ed-8175-458a-8fba-1e62ddc77567:1770763782
        - name: targetAccountId
          in: query
          description: >-
            Selected account that owns the conversation. Include this when the
            API token can access more than one account.
          required: false
          schema:
            type: integer
          example: 3026480
      responses:
        '200':
          description: Conversation returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Success
                  conversation:
                    description: >-
                      Chronological conversation events, including messages and
                      recorded Computer Agent tool activity when present.
                    type: array
                    items:
                      type: object
                      additionalProperties: true
        '403':
          description: The authenticated user cannot access this conversation.
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: token
      description: Vida API Token

````