Skip to content
Last updated

title: Create Flowplate Api Key keywords:

  • create flowplate api key
  • post
  • create
  • flowplate
  • api
  • key

Create a hidden API key for a Flowplate user+org.

POSThttps://api.aitronos.com/v1/flowplate/api-keys

Headers

x-flowplate-master-key string required

Flowplate master API key for internal service authentication.

Request Body

user_id string required

Aitronos user ID

organization_id string required

Organization ID

metadata object optional

Optional metadata for the key


Returns

key string

Raw API key (returned ONCE only, store securely!)

key_id string

Unique key identifier (flk_...)

key_prefix string

Key prefix for identification (fl_user_{env}_{first_8})

user_id string

User ID who owns the key

organization_id string

Organization ID

created_at string

Creation timestamp

cURL
curl -X POST "https://api.aitronos.com/v1/flowplate/api-keys" \
  -H "X-API-Key: $FREDDY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "user_id": "your_user_id",
  "organization_id": "org_abc123"
}'

Response:

201 OK
{
  "key": "fl_user_prod_a1b2c3d4...",
  "key_id": "flk_abc123def456",
  "key_prefix": "fl_user_prod_a1b2c3d4",
  "user_id": "usr_abc123def456",
  "organization_id": "org_abc123def456",
  "created_at": "2025-11-15T10:30:00Z"
}