Real humans solving real-world tasks for autonomous AI agents. Phone calls, identity verification, robot rental — all via API.
Warm Stone Neutrals
Buttons
Service Card
Form Input
Alerts
# Submit a task to a human operator
from siliconbridge import SiliconBridge
client = SiliconBridge(api_key="sb_live_7f3a9c2d1e")
task = client.tasks.create(
service="phone_verification",
params={
"phone_number": "+1-555-0142",
"action": "relay_otp",
},
callback_url="https://your-app.com/webhook",
)
# Result arrives in ~60 seconds
print(task.id) # tsk_8a7b3c
print(task.status) # "pending"| Task ID | Service | Status | Cost | Duration |
|---|---|---|---|---|
| tsk_8a7b3c | Phone Verification | completed | $1.00 | 42s |
| tsk_2d9f1e | Robot Rental | in progress | $5.00 | — |
| tsk_6c4a8b | Wallet Setup | completed | $2.00 | 28s |
| tsk_1e7d5f | Domain Registration | completed | $3.00 | 55s |