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

# List Your Custom LLM Models

> Retrieve the custom Large Language Models registered in the current account or sub-account scope.

Returns the custom models you can use, each with the `id` needed to delete it. A sub-account sees the models added on the account plus its own. Read more in [using-custom-llm](/docs/customizations/using-custom-llm).


## OpenAPI

````yaml GET /user/model/custom
openapi: 3.1.0
info:
  title: Bolna API
  description: >-
    Use and leverage Bolna Voice AI using APIs through HTTP requests from any
    language in your applications and workflows.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.bolna.ai
    description: Production server
security:
  - bearerAuth: []
paths:
  /user/model/custom:
    get:
      description: List your custom LLM models
      responses:
        '200':
          description: the custom models available in the current scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  models:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Identifier used to delete the model
                        model:
                          type: string
                        display_name:
                          type: string
                        provider:
                          type: string
                          example: custom
                        family:
                          type: string
                        base_url:
                          type: string
                          format: uri
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````