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

Reference