---
title: "Get Llm Config"
method: GET
path: "/llm-providers/config"
---

# Get Llm Config

`GET /llm-providers/config`

Get the current LLM provider configuration for the organization.

## Response `200`

Successful Response

- LLMConfigResponse — Model for LLM configuration responses.
  - `providers` LLMProviderConfig[] — List of provider configurations
    - `integration_id` string, uuid, nullable — Unique integration ID (auto-generated)
    - `integration_name` string, required — User-friendly name for this integration
    - `provider` string, required — LLM provider name (openai, anthropic, custom)
    - `api_key` string, nullable, required — API key for the provider (null to keep existing when updating)
    - `model_name` string, required — Default model name for this integration (required)
    - `base_url` string, nullable — Custom endpoint URL (required for 'custom' provider, null for cloud)
    - `supports_web_search` boolean — Whether model supports web search
    - `input_cost_per_token` number, nullable — Estimated input token cost for this model
    - `output_cost_per_token` number, nullable — Estimated output token cost for this model
    - `is_default` boolean — Whether this is the default provider
    - `model_deprecated` boolean — Whether model is no longer supported and needs updating
  - `mtime` string, date-time, nullable — When the configuration was last updated

---

[API](https://skmtc.net/discolike/apis/discolike-api.md) · [All operations](https://skmtc.net/discolike/apis/discolike-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/discolike/discolike-api/versions/3248fc62024c/schema)
