Skip to main content
POST
/
user
/
api
/
v1
/
user-api-key
cURL
curl --request POST \
  --url https://api.cekura.ai/user/api/v1/user-api-key/ \
  --header 'Content-Type: application/json' \
  --header 'X-CEKURA-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "project": 123
}
'
{
  "id": 123,
  "name": "<string>",
  "organization_name": "<string>",
  "project": 123,
  "project_name": "<string>",
  "key": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Body

name
string
project
integer | null

Response

201 - application/json
id
integer
name
string
organization_name
string
project
integer | null
project_name
string
key
string
created_at
string<date-time>