Skip to main content
POST
/
api
/
api-keys
Create API Key
curl --request POST \
  --url https://app.replyify.ai/api/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "key": "<string>",
  "created_at": "<string>"
}
Creates a new API key. The full key value is only returned once at creation time — store it securely.

Body Parameters

name
string
required
Display name for the API key

Response

id
string
Unique key identifier
name
string
Display name
key
string
The full API key value (only shown once)
created_at
string
When the key was created
curl -X POST "https://app.replyify.ai/api/api-keys" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Production Key" }'

Example Response

{
  "id": "uuid",
  "name": "Production Key",
  "key": "rfy_a1b2c3d4e5f6...",
  "created_at": "2025-01-27T12:00:00Z"
}
The full API key is only returned once at creation time. Store it securely — it cannot be retrieved again.