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

# List Render Options

> Retrieve available render options for message content

## Overview

Retrieve available render options for message content. Render options define how different types of content (text, tables, charts, etc.) are displayed in messages.


## OpenAPI

````yaml GET /chats/render-options
openapi: 3.1.0
info:
  title: Ledgerbeam API
  description: >-
    Conversational analytics API for querying data using natural language,
    managing resources, and interacting with data sources
  version: 1.0.0
  contact:
    name: Ledgerbeam Support
    email: support@ledgerbeam.com
  license:
    name: MIT
servers:
  - url: https://api.ledgerbeam.com/v1
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /chats/render-options:
    get:
      summary: List render options
      description: Retrieve available render options for message content
      operationId: listRenderOptions
      responses:
        '200':
          description: Render options retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RenderOption'
components:
  schemas:
    RenderOption:
      type: object
      properties:
        id:
          type: integer
          description: Render option ID
          example: 1
        name:
          type: string
          description: Render option name
          example: Text
        key:
          type: string
          description: Render option key
          example: text
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: API key for authentication

````