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

Request access

Describe the workload and evidence requirements. We confirm the supported path and onboarding conditions before issuing credentials.

Request access

2

Confirm an evaluation

Any evaluation, including a trial credit, is offered only when its eligibility and safeguards are confirmed with the team.

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

Supported completed jobs return a 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. (New to these terms? See the glossary.)

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.

Access and commercial terms

We confirm the supported workload, evidence requirements, and commercial terms during onboarding.

Full documentation   Request access