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/queue

Submit an action for human approval. The agent should wait for the decision before proceeding.

FieldTypeDescription
agent_idstringRequired. Identifier for your agent
actionstringRequired. The action the agent wants to take
contextstringOptional. Additional context for the approver
GET/api/pending

Get all pending actions awaiting approval.

POST/api/decision

Approve 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