GET
/
v1
/
llm-providers
[
  {
    "provider": "openai",
    "enabled": true,
    "credentials": {}
  }
]
List all configured LLM providers and their configurations.

Response Examples

Success Response

{
  "data": [
    {
      "provider": "openai",
      "enabled": true,
      "credentials": {
        "api_key": "sk-***"
      }
    },
    {
      "provider": "anthropic",
      "enabled": false,
      "credentials": {}
    }
  ]
}

No Configurations

{
  "data": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

OK

The response is of type object[].