~/callable
Callable — Humans as a function for AI agents.
The missing API layer between AI agents and the real world.
// How it works
- 01Agent sends a task
POST /tasks with a JSON payload.
- 02Human executes
Vetted operators pick it up and run it.
- 03Agent receives the result
Structured JSON, delivered to your callback.
// POST /tasks
request.http200 OK
POST /tasks HTTP/1.1
Host: api.getcallable.dev
Authorization: Bearer sk_live_***
Content-Type: application/json
{
"task": "verify_identity",
"input": {
"document_url": "https://...",
"name": "Ada Lovelace"
},
"callback_url": "https://agent.example.com/hook",
"sla_seconds": 600
}