Skip to main content
POST
/
v1
/
user
/
api-keys
Create Personal API Key
curl --request POST \
  --url https://api.tryreplicas.com/v1/user/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "error": "<string>",
  "details": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication. Obtain your API key from the Replicas dashboard under Settings > API Keys.

Body

application/json
name
string
required

Display name for the API key

Response

API key created. The key field is only returned once.