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

# List Content Formats

> Lists formats supported by the existing API, including Hook + CTA Daily Shorts.



## OpenAPI

````yaml /openapi.yaml get /formats
openapi: 3.0.3
info:
  title: Deploy Panther Monitoring API
  version: 1.0.0
  description: >-
    Public API for monitoring Deploy Panther content generation and deployment
    operations.
  license:
    name: Proprietary
    url: https://www.deploypanther.com/terms
servers:
  - url: https://www.deploypanther.com/api/v1
    description: Production Server
security:
  - bearerAuth: []
paths:
  /formats:
    get:
      summary: List Content Formats
      description: >-
        Lists formats supported by the existing API, including Hook + CTA Daily
        Shorts.
      operationId: listContentFormats
      responses:
        '200':
          description: Supported content formats
          content:
            application/json:
              schema:
                type: object
                required:
                  - formats
                properties:
                  formats:
                    type: array
                    items:
                      $ref: '#/components/schemas/Format'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Format:
      type: object
      required:
        - id
        - label
        - platform
        - content_type
        - description
      properties:
        id:
          $ref: '#/components/schemas/FormatId'
        label:
          type: string
        platform:
          type: string
          enum:
            - x
            - linkedin
            - reddit
            - multi
        content_type:
          type: string
          enum:
            - text
            - video
        description:
          type: string
        avg_generation_time_sec:
          type: integer
        success_rate_7d:
          type: number
          minimum: 0
          maximum: 1
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    FormatId:
      type: string
      enum:
        - x_viral_teardown
        - linkedin_proof_breakdown
        - reddit_automation
        - reaction_hook_video
        - hook_cta_shorts
        - lead_gen_reel
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````