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

# List Models

> List all available LLM models supported by Promptwatch



## OpenAPI

````yaml /v1/openapi.json get /models
openapi: 3.0.0
info:
  title: Promptwatch API
  description: API for customer integrations with Promptwatch monitoring platform
  version: 1.0.1
  contact:
    name: Promptwatch Support
    email: team@promptwatch.com
    url: https://promptwatch.com
  license:
    name: Commercial
    url: https://promptwatch.com/terms-and-conditions
servers:
  - url: https://server.promptwatch.com/api/v1
    description: Promptwatch API
security: []
tags:
  - name: Authentication
    description: API key validation and authentication
  - name: Models
    description: Available LLM models
  - name: Monitors
    description: Monitor management and data
  - name: Visibility
    description: Visibility data and insights
  - name: Citations
    description: Citation analytics and source tracking
  - name: Prompts
    description: Prompt management and operations
  - name: Analytics
    description: Analytics data and insights
  - name: Share of Voice
    description: Share of voice analytics showing brand mentions vs total responses
  - name: Responses
    description: Response analytics including mentions, competitors, and sentiment
paths:
  /models:
    get:
      tags:
        - Models
      summary: List Models
      description: List all available LLM models supported by Promptwatch
      operationId: listModelsV1
      parameters:
        - schema:
            type: boolean
            default: false
          in: query
          name: includeDeprecated
          required: false
          description: Include deprecated models in the response
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  models:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Model ID
                        label:
                          type: string
                          description: Human-readable model label
                        provider:
                          type: string
                          description: Provider identifier (e.g., openai, anthropic)
                        providerName:
                          type: string
                          description: Human-readable provider name
                        modelName:
                          type: string
                          description: Model name
                        apiIdentifier:
                          type: string
                          description: API identifier for the model
                        description:
                          type: string
                          description: Model description
                        searchEnabled:
                          type: boolean
                          description: Whether search is enabled for this model
                        liveSearch:
                          type: boolean
                          description: Whether this model supports live search
                        deprecated:
                          type: boolean
                          description: Whether the model is deprecated
                      required:
                        - id
                        - label
                        - provider
                        - providerName
                        - modelName
                        - apiIdentifier
                        - description
                    description: List of available models
                  total:
                    type: integer
                    description: Total number of models returned
                required:
                  - models
                  - total
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error type
                  message:
                    type: string
                    description: Error message
                  details:
                    type: object
                    description: Additional error details
                    additionalProperties: true
                required:
                  - error
                  - message
                additionalProperties: false

````