Skip to content

Create API key

POST
/api/auth/keys

Generate a new API key with the given label

Request Body

application/json
JSON
{
  
"label": "string"
}

Responses

API key created — returns the raw key (shown only once)

application/json
JSON
{
  
"id": "string",
  
"key": "string",
  
"label": "string",
  
"createdAt": "string"
}

Samples