v2

latestOpenAPI 3.0.4Commercial License2026-08-0718678294.5 KB
API Key Management

Create API Key

Create a new API key. Maximum 5 active keys per user. The full token (plain_token) is only returned in this response — store it securely.

post/v1/api-keys

Request body

namestring nullable

Optional label (e.g. "Production", "Staging")

Example request

{
  "name": "Production"
}

Response

API key created

statusstring

Example response

{
  "status": "success",
  "data": {
    "api_key": {
      "token_hint": "a1b2c3d4",
      "plain_token": "a1b2c3d4e5f6..."
    }
  }
}