Overview
All v4 API endpoints require a Bearer token. Your API key identifies your team — no team slug is needed in the URL.
fluar_sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Keep your API key private. Anyone with the key can access your team’s projects.
Get a key
- Settings -> API Keys
- Generate New Key
- 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
| Status | Message | Fix |
|---|
| 401 | Bearer token is required | Add the Authorization header with your API key |
| 403 | Invalid API key | Regenerate and use the correct key |
| 403 | API is not enabled for this project | Enable API in project settings |
Minimal security hygiene
- Store keys in environment variables.
- Rotate keys if exposed.