Skip to main content
POST
/
api
/
v1
/
api-keys
Create API Key
curl --request POST \
  --url https://api.sequenzy.com/api/v1/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "success": true,
  "apiKey": {
    "id": "key_abc123",
    "name": "Production app",
    "key": "seq_live_...",
    "prefix": "seq_live_abcd",
    "createdAt": "2026-05-01T10:30:00Z"
  },
  "message": "API key created successfully. Save this key securely - it cannot be retrieved later.",
  "instructions": {
    "envVariable": "SEQUENZY_API_KEY",
    "example": "SEQUENZY_API_KEY=seq_live_...",
    "note": "Add this to your .env file for the integration to work."
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Create a new company-scoped API key. The plain key is returned only once, in this response.

Request

name
string
Human-readable key name. If omitted, Sequenzy creates a default integration name.
curl -X POST "https://api.sequenzy.com/api/v1/api-keys" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Production app"}'

Responses

{
  "success": true,
  "apiKey": {
    "id": "key_abc123",
    "name": "Production app",
    "key": "seq_live_...",
    "prefix": "seq_live_abcd",
    "createdAt": "2026-05-01T10:30:00Z"
  },
  "message": "API key created successfully. Save this key securely - it cannot be retrieved later.",
  "instructions": {
    "envVariable": "SEQUENZY_API_KEY",
    "example": "SEQUENZY_API_KEY=seq_live_...",
    "note": "Add this to your .env file for the integration to work."
  }
}