Overview
The Serene API lets you create and manage tasks. You create tasks with POST /tasks (sendtype and either data as text or files via multipart) and list or fetch them with GET /tasks and GET /tasks/. When a task finishes, we send a webhook to your endpoint with the outcome (completed, completed with issues, or failed).
List tasks
GET /tasks — List all tasks, optionally filtered by status.
Get a task
GET /tasks/ — Fetch a single task by ID.
Create a task
POST /tasks — Create a task with type and optional data (text) or file uploads.
Webhooks
Task completion webhooks — Receive completed / failed / completed_with_issues.
