Documentation
Multi-tenant, agent-native infrastructure. One key per agent, tenant-isolated, callback-signed, idempotent.
⚡AgentUtils API
currentFull quick-start and reference for the launch tools. Start here.
Quick Start
# 1. Create a tenant (public) — store the one-time admin key
curl -X POST https://www.agent-utils.com/v1/tenants \
-H "content-type: application/json" \
-d { "name":"my-agent", "owner_email":"me@x.com" }
# 2. Register an agent — store the one-time agent key
curl -X POST https://www.agent-utils.com/v1/agents \
-H "x-admin-key: agutil_adm_…" \
-d { "agent_id":"worker-1" }
# 3. Call any tool with the agent key
curl -X PUT "https://www.agent-utils.com/v1/kv/state/last" \
-H "x-agent-id: worker-1" -H "x-api-key: agutil_agt_…" \
-d { "value": { "ts": 1234567890 } }
See the full v2 reference for auth, callbacks, quotas, and every endpoint.
The launch tools
KV Store
Tenant-isolated key-value storage with CAS, TTL, and namespaces.
Audit Log
Append-only, server-timestamped audit trail for every agent action.
Dead Letter Queue
Catch, inspect, and retry failed agent tasks.
Human-in-the-Loop
Pause agents until humans approve.
Agent Confession
Let cloud agents report uncertainty and get human steering.
Scheduler
Queue one-off callbacks with fixed retries and optional DLQ fallback.
Image Upload
Upload images and get a hosted URL in one call.