v3
latestOpenAPI 3.0.02026-08-081996601.2 MBLarge Language Models
Get an LLM
Returns the details of a Large Language Model (LLM) configured within the platform. The details include the name, description, model type, API endpoint, and authentication method.
Use this endpoint to verify model configurations and confirm connectivity details.
Authentication methods
The LLM's authentication is configured either as a Bearer token or as custom header-based authentication.
get/v2/llms/{llm_id}
Path parameters
llm_idstring required
The name of the LLM to retrieve.
Headers
Request-Timeoutinteger
The platform makes a best effort to complete the request in the specified seconds, or it times out.
Request-Timeout-Millisinteger
The platform makes a best effort to complete the request in the specified milliseconds, or it times out.
Response
The LLM details.
Example response
{
"id": "llm_1021844",
"name": "Claude 3.7 Sonnet",
"description": "The Anthropic Claude 3.7 Sonnet model.",
"ownership": "platform",
"idle_timeout_seconds": 300,
"auth": {
"type": "bearer",
"token": "abcdef......"
}
}