GET
/
v0
/
custom_api_key
curl --request GET \
  --url 'https://api.unify.ai/v0/custom_api_key?name=key1' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "name": "custom_api_key_name",
    "value": "custom_api_key_value"
}

Returns the value of the key for the specified custom API key name.

Authorizations

Authorization
string
required

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

Query Parameters

name
string
required

Name of the API key to get the value for.

curl --request GET \
  --url 'https://api.unify.ai/v0/custom_api_key?name=key1' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "name": "custom_api_key_name",
    "value": "custom_api_key_value"
}