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

# List models for a provider config

> Get available models for a specific LLM provider configuration



## OpenAPI

````yaml /api-reference/openapi.json get /api/agents/llm-configs/{id}/models
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/agents/llm-configs/{id}/models:
    get:
      tags:
        - Agents
      summary: List models for a provider config
      description: Get available models for a specific LLM provider configuration
      operationId: AgentsController_getProviderModels
      parameters:
        - name: id
          required: true
          in: path
          description: LLM config ID
          schema:
            type: string
        - name: X-Workspace-Id
          in: header
          description: Workspace ID
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
                type: array
                items:
                  $ref: '#/components/schemas/ProviderModelDto'
components:
  schemas:
    AppResponseSerialization:
      type: object
      properties: {}
    ProviderModelDto:
      type: object
      properties:
        id:
          type: string
          description: Model identifier for API calls
        name:
          type: string
          description: Human-readable model name
      required:
        - id
        - name

````