---
title: "List Custom LLMs"
method: GET
path: "/v1/custom-llms"
tags: ["Custom LLMs"]
---

# List Custom LLMs

`GET /v1/custom-llms`

List the custom LLM configurations available to the current organization.

## Headers

- `x-api-key` string, nullable — Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.

## Response `200`

Successful Response

- CustomLLMListResponse
  - `custom_llms` CustomLLM[], required
    - `id` string, required
    - `organization_id` string, required
    - `config` CustomLLMConfig, required
      - `display_name` string, required
      - `provider` 'openai_compatible' | 'ollama' | 'openrouter' | 'gemini', required
      - `model_name` string, required
      - `api_base` string, nullable
      - `api_key` string, nullable
      - `api_version` string, nullable
      - `supports_vision` boolean
      - `add_assistant_prefix` boolean
      - `max_completion_tokens` integer, nullable
      - `temperature` number, nullable
      - `reasoning_effort` string, nullable
      - `extra_parameters` object
    - `created_at` string, required
    - `modified_at` string, required
    - `valid` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/skyvern-ai/apis/skyvern-api-2.md) · [All operations](https://skmtc.net/skyvern-ai/apis/skyvern-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skyvern-ai/skyvern-api-2/versions/29562c6e0364/schema)
