Skip to main content
GET
/
v1
/
misc
/
llm_providers
List Llm Providers
curl --request GET \
  --url https://api.example.com/v1/misc/llm_providers \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "internal_identifier": "<string>",
    "logo": "<string>",
    "description": "<string>"
  }
]
List all available LLM providers. Use the provider’s internal_identifier with List LLM Models to retrieve available models.

Response

Returns an array of LLMProviderItem objects.
id
string
Provider unique identifier
name
string
Provider display name (e.g., “OpenAI”, “Anthropic”)
internal_identifier
string
Internal identifier used in API calls (e.g., openai, anthropic). Use this value as model_provider when creating or updating agents.
URL to the provider’s logo image
description
string
Brief description of the provider

Example Request

curl -X GET -H "x-api-key: <your-api-key>" \
  "https://api.xpander.ai/v1/misc/llm_providers"

Notes

  • Use the internal_identifier value as the model_provider field when creating or updating agents
  • To see available models for a provider, use List LLM Models with the internal_identifier

Authorizations

x-api-key
string
header
required

API Key for authentication

Response

200 - application/json

Successful Response

id
string
required

Unique identifier for this LLM provider.

name
string
required

Human-readable display name of the provider (e.g., 'Anthropic', 'OpenAI').

internal_identifier
string
required

The provider key used in agent configuration. Use this value for the agent's model_provider field (e.g., 'anthropic', 'openai', 'gemini').

Logo identifier for the provider's icon.

description
string | null

Brief description of the provider.