GET
/
v0
/
endpoints
curl --request GET \
  --url 'https://api.unify.ai/v0/endpoints?provider=openai' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "claude-3-haiku@anthropic",
    "llama-3-70b-chat@groq",
    "mistral-large@mistral-ai",
    "..."
]
Lists available endpoints in model@provider format. If model or provider are specified, only the matching endpoints will be listed. You can also show all custom endpoints by passing custom as the provider.

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 endpoints for.
provider
string
Provider to get available endpoints for.
curl --request GET \
  --url 'https://api.unify.ai/v0/endpoints?provider=openai' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    "claude-3-haiku@anthropic",
    "llama-3-70b-chat@groq",
    "mistral-large@mistral-ai",
    "..."
]