---
title: "Get Llm Integration"
method: GET
path: "/llm-providers/config/{integration_id}"
---

# Get Llm Integration

`GET /llm-providers/config/{integration_id}`

Get a specific LLM provider integration by ID.

## Path parameters

- `integration_id` string, required

## Response `200`

Successful Response

- LLMProviderConfig — Model representing LLM provider configuration.
  - `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

## Other responses

- `422` — Validation Error

---

[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/revisions/3248fc62024c/schema)
