Documentation
Multi-tenant, agent-native infrastructure. One key per agent, tenant-isolated, callback-signed, idempotent.
⚡AgentUtils v2 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.