POST
/
api
/
keys
curl --request POST \
  --url https://api.avm.codes/api/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "avm-api-key",
  "expiresAt": "2025-02-28T17:34:12.256Z"
}'
{
  "id": 123,
  "name": "<string>",
  "key": "<string>",
  "userId": 123,
  "createdAt": "<string>",
  "modifiedAt": "<string>",
  "expiresAt": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
Example:

"My API key"

expiresAt
string
Example:

"2026-01-01T00:00:00Z"

Response

200 - application/json
A successful response containing user API key details.
id
number
required
name
string
required
key
string
required
userId
number
required
createdAt
string
required
modifiedAt
string
required
expiresAt
string
required