> ## 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 /v2/openapi.json get /models
openapi: 3.0.0
info:
  title: Promptwatch API v2
  description: >-
    API v2 for customer integrations with Promptwatch monitoring platform. This
    version provides improved structure, additional endpoints, and enhanced
    functionality.
  version: 2.0.0
  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/v2
    description: Promptwatch API v2
security: []
tags:
  - name: Authentication
    description: API key validation and authentication
  - name: Content
    description: >-
      AI content generation and optimization. Create content asynchronously and
      poll for results.
  - name: Content Gap
    description: Content gap analysis and recommendations
  - name: Models
    description: Available LLM models
  - name: Monitors
    description: Monitor management and CRUD operations
  - name: Page Tracker
    description: Track URLs and inspect citation stats, responses, and prompts
  - name: Prompts
    description: Prompt management and operations
  - name: Query Fanouts
    description: ChatGPT query fanout keywords
  - name: Responses
    description: LLM response data and analytics
  - name: Tags
    description: Tag management for prompts
  - name: Topics
    description: Topic management for prompts
  - name: Actions
    description: Action items (GEO suggestions and tasks)
  - name: Personas
    description: Persona configuration for monitors
  - name: Brands
    description: Brand management for competitive analysis
  - name: Visibility
    description: Brand visibility time series and competitor heatmaps
  - name: Citations
    description: Citation analytics from AI responses
  - name: Analytics
    description: Visitor analytics, AI crawler logs, sentiment, and brand visibility trends
  - name: Projects
    description: Project management (organization-level keys only)
  - name: Sitemap
    description: Sitemap crawl progress and discovered URLs
  - name: Site Health
    description: >-
      Crawled pages with SEO issues (titles, meta descriptions, H1, thin
      content)
  - name: Socials
    description: >-
      Social media citations (Reddit posts and YouTube videos) found in LLM
      responses
paths:
  /models:
    get:
      tags:
        - Models
      summary: List Models
      description: List all available LLM models supported by Promptwatch
      operationId: listModels
      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
                example:
                  models:
                    - id: gpt-4.1
                      label: GPT-4.1
                      provider: openai
                      providerName: OpenAI
                      modelName: GPT-4.1
                      apiIdentifier: gpt-4.1
                      description: Illustrative catalog row for OpenAPI docs only.
                      searchEnabled: true
                      liveSearch: true
                      deprecated: false
                    - id: claude-sonnet-4-20250514
                      label: Claude Sonnet 4
                      provider: anthropic
                      providerName: Anthropic
                      modelName: Claude Sonnet 4
                      apiIdentifier: claude-sonnet-4-20250514
                      description: Illustrative catalog row for OpenAPI docs only.
                      searchEnabled: true
                      liveSearch: false
                      deprecated: false
                  total: 2
                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
                example:
                  error: Unauthorized
                  message: Missing or invalid X-API-Key header.
                properties:
                  error:
                    type: string
                    description: Error category (often aligned with HTTP semantics)
                  code:
                    type: string
                    description: Optional machine-readable code
                  message:
                    type: string
                    description: Human-readable explanation
                  details:
                    type: object
                    description: Optional structured detail (e.g. validation)
                    additionalProperties: true
                required:
                  - error
                  - message
                additionalProperties: false

````