Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/everruns/everruns/llms.txt

Use this file to discover all available pages before exploring further.

GET /v1/llm-providers

Retrieve all LLM providers configured in the organization.

Response

Returns a wrapper object with the provider array.
data
array
Array of provider objects
total
integer
Total count of providers

Provider Fields

id
string
UUID of the provider
name
string
Provider name
provider_type
string
Provider type: openai, openai_completions, anthropic, gemini
base_url
string
Optional custom base URL for OpenAI-compatible providers

Example Request

curl http://localhost:9300/v1/llm-providers

Example Response

{
  "data": [
    {
      "id": "01933b5a-0000-7000-8000-000000000001",
      "name": "OpenAI",
      "provider_type": "openai",
      "base_url": null,
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "01933b5a-0000-7000-8000-000000000002",
      "name": "Anthropic",
      "provider_type": "anthropic",
      "base_url": null,
      "created_at": "2024-01-15T10:31:00Z"
    }
  ],
  "total": 2
}
API keys are encrypted and never returned in responses. Use the LLM Providers integration guide to learn about provider configuration.