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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
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",
"..."
]