Skip to main content
From zero to a working memory API in about five minutes.

1. Subscribe to Build

In the dashboard, open Settings → Developer and choose Get Atlaso Build — $25/mo. Checkout is handled by Stripe; Build activates the moment payment completes.

2. Create a project

Still under Settings → Developer, click New project and give it a slug — lowercase letters, digits, and hyphens, up to 40 characters (e.g. acme-travel). A project is a namespace; you’ll usually have one per app or environment.

3. Mint an API key

On the project, click New key. The full key is shown once — copy it now and store it as a server-side secret. It looks like:
The key is shown only at creation and never again — Atlaso stores only a hash. Keep it on your server, never in a browser, mobile app, or on a device. See Authentication.
You can hold up to 10 live keys per project; revoke one anytime from the dashboard.

4. Remember something

Pick a subject — your own id for one end-user (any stable string). Then store a memory in that subject’s private bag:
redacted lists the category names of any recognized secrets, credentials, or high-entropy tokens scrubbed before storing, such as aws_access_key or high_entropy. It never contains the removed values.

5. Recall it

Later — a different session, a different server, doesn’t matter — ask for what you know about that subject:
That’s the whole loop. Swap in a new subject for each of your end-users and their memories stay completely separate.

Next steps

Understand subjects

How isolation works, and why the key stays server-side.

Full API reference

Delete, GDPR purge, Python & Node examples, response fields.

Put it on a device

Per-device credentials for hardware and fleets.

Limits & quotas

What to know before you scale.