GET
/
v0
/
custom_endpoint
/
list
curl --request GET \
  --url 'https://api.unify.ai/v0/custom_endpoint/list' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "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

Authorization
string
required

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

curl --request GET \
  --url 'https://api.unify.ai/v0/custom_endpoint/list' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "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"
    }
]