Documentation
Everything you need to integrate Queuelo into your AI agent.
Quick Start
After subscribing, you'll receive an API key via email. Use it to submit actions from your agent for human approval.
curl -X POST https://queuelo.com/api/queue \
-H "Authorization: Bearer qlo_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "my-agent",
"action": "Send invoice to client@acme.com",
"context": "Invoice #1042 for $200 - 30 days overdue"
}'API Reference
POST
/api/queueSubmit an action for human approval. The agent should wait for the decision before proceeding.
| Field | Type | Description |
|---|---|---|
agent_id | string | Required. Identifier for your agent |
action | string | Required. The action the agent wants to take |
context | string | Optional. Additional context for the approver |
GET
/api/pendingGet all pending actions awaiting approval.
POST
/api/decisionApprove or reject a queued action.
{
"id": "action-id",
"decision": "approved" // or "rejected"
}Authentication
All API requests must include your API key in the Authorization header:
Authorization: Bearer qlo_your_api_key
Plan Limits
Starter
50 approvals/mo
1 agent
Pro
Unlimited
10 agents
Team
Unlimited
Unlimited agents