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

# Get a session

> Retrieves a single session, including its full conversation history.
This is the only endpoint that populates the `messages` array — all
other endpoints return `messages: null`.




## OpenAPI

````yaml /api/openapi.yaml get /v1/sessions/{session_id}
openapi: 3.1.0
info:
  title: Traversal Sessions API
  version: 1.0.0
  description: >
    The V1 Sessions API lets you launch investigations, send follow-up
    questions,

    and retrieve results programmatically. Sessions are the same investigation

    primitive that powers the Traversal web application.


    All endpoints require a Bearer token. The authenticated user must have at

    least the `MEMBER` role within the organization, and the V1 API must be

    enabled for that organization — otherwise endpoints return `403 Forbidden`.
servers:
  - url: https://api.traversal.com
    description: Traversal API
security:
  - bearerAuth: []
tags:
  - name: Sessions
    description: Create, list, retrieve, and continue investigation sessions.
paths:
  /v1/sessions/{session_id}:
    get:
      tags:
        - Sessions
      summary: Get a session
      description: |
        Retrieves a single session, including its full conversation history.
        This is the only endpoint that populates the `messages` array — all
        other endpoints return `messages: null`.
      operationId: getSession
      parameters:
        - $ref: '#/components/parameters/SessionId'
      responses:
        '200':
          description: The session, with conversation history.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionWithMessages'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    SessionId:
      name: session_id
      in: path
      required: true
      description: The unique identifier of the session.
      schema:
        type: string
        format: uuid
  schemas:
    SessionWithMessages:
      allOf:
        - $ref: '#/components/schemas/Session'
        - type: object
          properties:
            messages:
              type: array
              items:
                $ref: '#/components/schemas/Message'
    Session:
      type: object
      required:
        - id
        - status
        - input
        - created_at
      properties:
        id:
          type: string
          format: uuid
          description: Unique session identifier.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        status:
          $ref: '#/components/schemas/SessionStatus'
        title:
          type:
            - string
            - 'null'
          description: Human-readable session title.
          example: Elevated error rate in checkout service
        input:
          type: string
          description: The original incident description or question.
          example: >-
            Our checkout service started returning 500 errors at
            2024-03-15T14:30:00Z. Error rate jumped from 0.1% to 15%.
        created_at:
          type: string
          format: date-time
          description: When the session was created (UTC).
          example: '2024-03-15T14:35:00Z'
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When the session was last updated (UTC).
          example: '2024-03-15T14:38:12Z'
        messages:
          type:
            - array
            - 'null'
          description: >-
            Conversation history. Only populated on `GET
            /v1/sessions/{session_id}`.
          items:
            $ref: '#/components/schemas/Message'
    Message:
      type: object
      required:
        - id
        - role
        - markdown_content
        - created_at
      properties:
        id:
          type: string
          description: Unique message identifier.
          example: msg-001-uuid
        role:
          type: string
          enum:
            - user
            - assistant
          description: The author of the message.
        markdown_content:
          type: string
          description: Message content in Markdown.
          example: |-
            ## Investigation Summary

            I investigated the elevated error rate...
        created_at:
          type: string
          format: date-time
          description: When the message was created (UTC).
          example: '2024-03-15T14:38:12Z'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
          properties:
            message:
              type: string
              description: Human-readable explanation of the error.
            retry_after:
              type:
                - integer
                - 'null'
              description: |
                Suggested seconds to wait before retrying. Present on `429`
                and `409` responses. When set, the response also includes a
                standard `Retry-After` HTTP header with the same value.
    SessionStatus:
      type: string
      enum:
        - running
        - idle
        - follow_up_running
        - failed
      description: |
        - `running` — a new investigation is in progress.
        - `idle` — investigation is complete and ready for follow-ups.
        - `follow_up_running` — a follow-up message is being processed.
        - `failed` — the investigation or follow-up errored or timed out.
  responses:
    Unauthorized:
      description: Missing, invalid, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: >-
        V1 API not enabled for the organization, or the authenticated user has
        insufficient role.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Session does not exist or does not belong to your organization.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    InternalServerError:
      description: An unexpected error occurred on the server.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: |
        Bearer token in the `Authorization` header — for example,
        `Authorization: Bearer trv_ak_your_api_key_here`. Each key is bound to a
        specific user and organization.

````