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

# Get Delivery Detail

> Retrieve full delivery detail including briefing content. Also available at /v1/briefings/{id}/deliveries/{delivery_id}.

Retrieve the full detail of a specific delivery, including the generated briefing content. The content is Markdown for most briefings, but may be HTML for certain briefing types.

Use the delivery ID to retrieve citation sources via [Get Delivery References](/api-reference/briefing/delivery-references).


## OpenAPI

````yaml GET /v1/briefings/deliveries/{delivery_id}
openapi: 3.0.1
info:
  title: LinqAlpha API
  description: >-
    Linq helps finance professionals make informed decisions using
    Retrieval-Augmented Generation (RAG)-enhanced answers. By leveraging
    cutting-edge Large Language Models (LLM) and supplementary technology, Linq
    provides the most optimized responses based on your queries.
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: https://api.linqalpha.com
security:
  - ApiKeyAuth: []
tags:
  - name: Search
    description: Search and generate responses
  - name: Data
    description: Data retrieval and mapping
  - name: Feedback
    description: Conversation feedback
  - name: RMS
    description: Research Management System
  - name: Source Management
    description: Source batch and file management
  - name: MCP
    description: >-
      LinqAlpha MCP — Financial data tools for AI assistants via Model Context
      Protocol
  - name: Connectors
    description: Customer Connectors — customer-owned MCP connector management
  - name: Briefing
    description: Briefing Agent — automated market briefings with scheduling and delivery
  - name: Status
    description: Sync status — check organization, document, and container sync progress
paths:
  /v1/briefings/deliveries/{delivery_id}:
    get:
      tags:
        - Briefing
      summary: Get Delivery Detail
      description: >-
        Retrieve full delivery detail including briefing content. Also available
        at /v1/briefings/{id}/deliveries/{delivery_id}.
      operationId: getBriefingDeliveryDirect
      parameters:
        - name: delivery_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Delivery detail with content
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    nullable: true
                  payload:
                    $ref: '#/components/schemas/BriefingDeliveryDetail'
components:
  schemas:
    BriefingDeliveryDetail:
      type: object
      properties:
        id:
          type: string
          description: Delivery ID
        status:
          type: string
          enum:
            - pending
            - sent
            - failed
            - resynced
            - skipped
          description: Delivery status
        delivered_at:
          type: string
          nullable: true
          description: ISO 8601 timestamp when delivered
        scheduled_at:
          type: string
          nullable: true
          description: ISO 8601 timestamp when scheduled
        email_title:
          type: string
          nullable: true
          description: Email subject line
        tickers:
          type: array
          items:
            type: string
          description: Ticker symbols included
        frequency:
          type: string
          nullable: true
          enum:
            - daily
            - weekly
            - monthly
          description: Schedule frequency
        content:
          type: string
          nullable: true
          description: >-
            Full briefing content. Markdown for most briefings; may be HTML for
            certain briefing types.
        chat_session_id:
          type: string
          nullable: true
          description: >-
            Chat session ID from this delivery's generation (informational; the
            on-demand endpoints do not accept it as input).
        created_at:
          type: string
          description: ISO 8601 creation timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````