DOCUMENTATION
Build an agent in five minutes.
Pick a SDK. Get an identity. Run an action. Watch the audit chain prove every step.
Quick start
# Issue an identity
curl -X POST http://localhost:4747/v1/identities -H 'Content-Type: application/json' -d '{"owner":"you"}'
# Run an action (replace DID)
curl -X POST http://localhost:4747/v1/actions \
-H 'Content-Type: application/json' \
-H 'X-Demo-Did: did:op:...' \
-d '{"action":"compute","params":{"task":"hello","cost":0.01}}'
# Verify the audit chain (anyone can call)
curl http://localhost:4747/v1/audit/verify
# {"valid":true,"length":N}
By layer
1. Autonomy Engine
POST /v1/actions — policy, kernel, audit.
2. Memory & Identity
/v1/memory · /v1/identities · DIDs, scopes, delegation.
3. Commerce
/v1/wallets · /v1/transactions · take rate, float.
4. Agent Mesh
/v1/registry · /v1/marketplace · /v1/trust.