> ## 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.

# Get supported providers

> Get all supported LLM providers with their metadata



## OpenAPI

````yaml /api-reference/openapi.json get /api/agents/providers
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/providers:
    get:
      tags:
        - Agents
      summary: Get supported providers
      description: Get all supported LLM providers with their metadata
      operationId: AgentsController_getProviders
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
                type: array
                items:
                  $ref: '#/components/schemas/LLMProviderSupportedDto'
components:
  schemas:
    AppResponseSerialization:
      type: object
      properties: {}
    LLMProviderSupportedDto:
      type: object
      properties:
        id:
          type: string
          enum:
            - openai
            - anthropic
            - gemini
            - openrouter
            - vercel
            - deepseek
            - kilo_code
            - opencode_go
            - custom
          description: Provider identifier
        name:
          type: string
          description: Provider display name
        logo:
          type: string
          description: Provider logo path
        isAcceptCustomApiUrl:
          type: boolean
          description: Whether provider accepts custom API URL
      required:
        - id
        - name
        - logo

````