Your automation. A human. A callback.
Your workflow creates a task, pauses, routes the decision to a real person, Taskbox calls you back when they approve or reject.
No credit card required.
Your automation shouldn't ship without a human
Refunds, customer emails, deletions, deploys - some actions are too costly to leave fully automated. Taskbox is the missing approval layer: one API to pause your flow, one UI for the human, one callback when they decide.
REST API in
POST a task with title, description, assignees, and a callback URL. Anything that speaks HTTP - agents, n8n, cron, your own services.
Human approves
Route a single task to one or many approvers. First decision wins. Owners manage keys and members; members resolve tasks.
Callback out
POST to your URL when a human decides. At-least-once delivery, retries with backoff, idempotency key on every call.
If it speaks HTTP, it works with Taskbox
Taskbox is a protocol, not a fixed integration list. Anything that can POST a request and receive a webhook fits in - n8n is just one example.
How it fits in your stack
- Step 1
Sign up
Create an account. Create a workspace to manage api keys and members.
- Step 2
Generate an API key
Open workspace → API keys. Generate an API key to identify your automation system.
- Step 3
POST a task from your automation
From n8n, an agent, a cron job, anything - POST to /api/v1/tasks with a title, assignee emails, and a callback URL.
- Step 4
A human decides
Assignees see the task in Taskbox and approve or reject. Taskbox POSTs the decision to your callback URL.
curl -X POST https://taskbox.dev/api/v1/tasks \
-H "Authorization: Bearer $TASK_RELAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Approve refund for order #4821",
"description": "Customer requested a $240 refund. Policy - $200 without review.",
"priority": "high",
"assigned_to_emails": ["[email protected]"],
"callback_url": "https://n8n.acme.com/webhook/Qmf4ug#Rbt",
"metadata": {
"order_id": "4821",
"customer_email": "[email protected]",
"amount_usd": 240,
"reason": "shipping damaged"
}
}'metadata is freeform - pass anything your workflow needs and Taskbox echoes it back on the callback.
Ready to put a human in the loop?
Sign up, grab an API key, and ship your first approval flow in minutes.
No credit card required.