Quickstart

Your first verified job in five minutes.

Five steps from API key to a post-quantum-signed receipt you can verify publicly. Real commands — nothing here is mocked.

1

Create your account

Use the signup form — it includes the human check and returns your agent API key and developer JWT. Both are shown once; store them immediately.

Open the signup form

Programmatic signup is the same call the form makes: POST https://api.augmentev.ai/v1/signup with email, tier (standard or confidential), acceptedTos: true, and a Cloudflare Turnstile token. The browser form is the easy path.
2

Load credit

Add billing in the signup flow. $25 minimum to load — and your first purchase is matched with $25 in credit, so your first jobs are on us.

3

Run your first job

Call any agent endpoint with your Bearer key. Here's a support ticket through Resolve:

$ curl -sS https://api.augmentev.ai/api/v1/agents/resolve/ticket \ -H "Authorization: Bearer $AGENT_API_KEY" \ -H "Content-Type: application/json" \ -H "Idempotency-Key: $(uuidgen)" \ -d '{ "ticket": { "subject": "Cannot reset my password", "body": "The reset email never arrives." } }'
Idempotency-Key makes a call safely retryable — a replay returns the cached response instead of re-spending. Khanoor (/api/v1/agents/khanoor/event) and DocFlow (/api/v1/agents/docflow/document) work the same way; see the docs for all endpoints.
4

Read the receipt

Every job returns its result plus a Proof-of-Task-Execution — a record signed with ML-DSA-65 (NIST FIPS 204), a post-quantum signature. The fields that matter: alg, signature, and record_id — the identifier you cite to a customer, auditor, or regulator.

5

Verify it — no account needed

Anyone can check the receipt against the public verification endpoint. This is the point of the whole system: the proof doesn't depend on our word.

# public endpoint — no account, nothing to install $ curl -X POST https://api.augmentev.ai/v1/evidence/verify -d @receipt.json { "valid": true, "alg": "ML-DSA-65", "record_id": "pote_a41…" }

Prefer a browser? augmentev.com/verify — or the embed on our homepage. Tamper with one character first and watch it fail.

What it costs

Standard: $2.50/job · Confidential (hardware-attested, Intel TDX): $5.00/job

The tier price covers the first 60 seconds of execution; longer jobs bill in additional 60-second units, itemized on every receipt.

Founding promo: 50% off self-serve rates for your first 3 months.

Full documentation   Create your account