API Reference
The Flux REST API lets you integrate project data into your own tools and workflows. All endpoints require an API key passed via the Authorization: Bearer <key> header.
Base URL
https://useflux.app/api/v1Endpoints
GET
/api/v1/workspacesList all workspaces the authenticated user belongs to.
POST
/api/v1/workspacesCreate a new workspace.
GET
/api/v1/workspaces/:slug/boardsList all boards in a workspace.
POST
/api/v1/workspaces/:slug/boardsCreate a new board in a workspace.
GET
/api/v1/workspaces/:slug/boards/:boardId/tasksList tasks on a board.
POST
/api/v1/workspaces/:slug/boards/:boardId/tasksCreate a task on a board.
PATCH
/api/v1/workspaces/:slug/boards/:boardId/tasks/:taskIdUpdate a task.
DELETE
/api/v1/workspaces/:slug/boards/:boardId/tasks/:taskIdDelete a task.
Full API Docs
Generate an API key in your workspace settings, then explore the full API documentation.