GET
/
v0
/
providers
curl --request GET \
  --url 'https://api.unify.ai/v0/providers?model=llama-3.1-405b-chat' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "openai",
    "anthropic",
    "together-ai",
    "..."
]

Lists available providers. If model is specified, returns the providers that support that model.

Authorizations

Authorization
string
required

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

Query Parameters

model
string

Model to get available providers for.

curl --request GET \
  --url 'https://api.unify.ai/v0/providers?model=llama-3.1-405b-chat' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "openai",
    "anthropic",
    "together-ai",
    "..."
]