Skip to main content

Overview

All v4 API endpoints require a Bearer token. Your API key identifies your team — no team slug is needed in the URL.

API key format

fluar_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Keep your API key private. Anyone with the key can access your team’s projects.

Get a key

  1. Settings -> API Keys
  2. Generate New Key
  3. Copy and store it (shown once)

Use the key

Authorization: Bearer YOUR_API_KEY
curl -X POST "https://fluar.com/api/v4/projects/{projectId}/rows" \
  -H "Authorization: Bearer fluar_sk_xxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]"}'

Common auth errors

StatusMessageFix
401Bearer token is requiredAdd the Authorization header with your API key
403Invalid API keyRegenerate and use the correct key
403API is not enabled for this projectEnable API in project settings

Minimal security hygiene

  • Store keys in environment variables.
  • Rotate keys if exposed.