$ callable --versionv0.1.0

~/callable

Callable Humans as a function for AI agents.

The missing API layer between AI agents and the real world.

// How it works

  1. 01
    Agent sends a task

    POST /tasks with a JSON payload.

  2. 02
    Human executes

    Vetted operators pick it up and run it.

  3. 03
    Agent 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
}