> ## 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.

# List Briefing Schedules

> Retrieve all briefing schedules for the authenticated user.

Retrieve all briefing schedules for the authenticated user.

Each briefing includes its topic, tickers, schedule configuration, and next delivery time. Use this to display an overview of all active and inactive briefings.

## Response

Returns a flat array of briefing objects. The `tickers` field contains resolved ticker symbols and `next_delivery_at` shows when the next briefing will be generated.


## OpenAPI

````yaml GET /v1/briefings
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:
    get:
      tags:
        - Briefing
      summary: List Briefings
      description: Retrieve all briefing schedules for the authenticated user.
      operationId: listBriefings
      responses:
        '200':
          description: List of briefings
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    nullable: true
                  payload:
                    type: array
                    items:
                      $ref: '#/components/schemas/Briefing'
components:
  schemas:
    Briefing:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
          nullable: true
        topic:
          type: string
        tickers:
          type: array
          items:
            type: string
        language:
          type: string
          nullable: true
        scheduled_time:
          type: string
          description: >-
            Time in h:mm AM/PM format, echoing the value provided on
            create/update (e.g. '9:00 AM')
        timezone:
          type: string
          description: IANA timezone
        frequency:
          type: string
          enum:
            - daily
            - weekly
            - monthly
        scheduled_day_of_week:
          type: integer
          nullable: true
        scheduled_day_of_month:
          type: integer
          nullable: true
        next_delivery_at:
          type: string
          nullable: true
        is_active:
          type: boolean
        source_type:
          type: string
        attach_pdf:
          type: boolean
        created_at:
          type: string
        updated_at:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````