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

# Get Conversation by URN

> Retrieves a single conversation with all its messages

## Overview

Retrieves a single conversation with all its messages. Use this endpoint to show the full conversation history for a specific lead.

## Conversation URN

The `conversationUrn` is a unique identifier for each conversation. You can get this ID from the **Get Conversations** endpoint.

## Response

Returns complete conversation details including:

* Full lead information
* Complete message history
* Message sender (lead or your account)
* Timestamps for each message
* Associated campaign information

## Use Cases

* Display full conversation thread in a custom interface
* Export conversation history
* Analyze message patterns
* Build custom conversation management tools


## OpenAPI

````yaml GET /v1/conversations/{conversationUrn}
openapi: 3.1.0
info:
  title: WaLead API
  description: >-
    WaLead Public API for managing LinkedIn outreach campaigns, leads, and
    analytics
  version: 1.0.0
  contact:
    name: WaLead Support
    url: https://walead.ai
servers:
  - url: https://app-api.walead.ai/api
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /v1/conversations/{conversationUrn}:
    get:
      summary: Get Conversation by URN
      description: Retrieves a single conversation with all its messages
      parameters:
        - name: conversationUrn
          in: path
          description: Conversation URN identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Conversation retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationDetail'
        '400':
          description: Conversation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid API Key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ConversationDetail:
      type: object
      properties:
        conversationUrn:
          type: string
          description: Unique conversation identifier
        lead:
          type: object
          description: Lead information
        messages:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              content:
                type: string
              sender:
                type: string
                enum:
                  - lead
                  - account
              sentAt:
                type: string
                format: date-time
          description: Array of messages in the conversation
        campaignId:
          type: string
          description: Associated campaign ID
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Generate from your WaLead dashboard.

````