- Universal API
- Supported Endpoints
- LLM Queries
- Usage
- Custom Endpoints
- Custom API keys
- Endpoint Metrics
- Assistants
- Logging
- Account
Custom Endpoints
List Custom Endpoints
GET
/
v0
/
custom_endpoint
/
list
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/custom_endpoint/list' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"name": "endpoint_1",
"model_arg": "llama_finetune",
"url": "https://...",
"key": "custom_key_1"
},
{
"name": "endpoint_2",
"model_arg": "mixtral_finetune",
"url": "https://...",
"key": "custom_key_2"
}
]
Returns a list of the available custom endpoints.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/custom_endpoint/list' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"name": "endpoint_1",
"model_arg": "llama_finetune",
"url": "https://...",
"key": "custom_key_1"
},
{
"name": "endpoint_2",
"model_arg": "mixtral_finetune",
"url": "https://...",
"key": "custom_key_2"
}
]
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/custom_endpoint/list' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
[
{
"name": "endpoint_1",
"model_arg": "llama_finetune",
"url": "https://...",
"key": "custom_key_1"
},
{
"name": "endpoint_2",
"model_arg": "mixtral_finetune",
"url": "https://...",
"key": "custom_key_2"
}
]
Assistant
Responses are generated using AI and may contain mistakes.