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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
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"
}