GET
/
v0
/
custom_api_key
/
list
curl --request GET \
  --url 'https://api.unify.ai/v0/custom_api_key/list' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "name": "custom_key_1",
        "value": "****alue_1"
    },
    {
        "name": "custom_key_2",
        "value": "****alue_2"
    }
]

Returns a list of the names for all custom API keys in your account.

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_api_key/list' \
  --header "Authorization: Bearer $UNIFY_KEY"
[
    {
        "name": "custom_key_1",
        "value": "****alue_1"
    },
    {
        "name": "custom_key_2",
        "value": "****alue_2"
    }
]