🚀 Quick Start
Base URL:
https://fluister.dev/api/v11. Generate an API Key
Go to your Dashboard → Settings → API Keys and create a new key with the scopes you need.
2. Make Your First API Call
curl https://fluister.dev/api/v1/tickets \ -H "Authorization: Bearer fk_live_YOUR_API_KEY_HERE"
3. Handle the Response
{
"tickets": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"title": "Add dark mode",
"status": "open",
"priority": "medium",
"type": "feature",
"project_name": "My App"
}
],
"pagination": {
"limit": 50,
"offset": 0,
"total": 12
}
}💡 Tip: Start with
GET /auth/me to verify your API key works correctly.Ready to get started?
Create your first API key and start automating your Fluister workflows.
Generate API Key →