Skip to main content
GET
/
api
/
v1
/
keys
/
{key_id}
/
name
Get API Key Name
curl --request GET \
  --url https://api.entityml.com/api/v1/keys/{key_id}/name
{
  "key_id": "<string>",
  "name": "<string>"
}

Request

This endpoint does not require a Bearer token.

Path Parameters

key_id
string
required
The API key ID.

Response

key_id
string
The API key ID.
name
string
The API key name.

Example

Raw HTTP (cURL)
curl "https://api.entityml.com/api/v1/keys/YOUR_KEY_ID/name"

Example response

{
  "key_id": "key-uuid",
  "name": "research-bot"
}