API Keys
Pass your API key in theX-API-Key header on every request:
401 immediately.
Key Format
Every Remem API key begins with the prefixrm_live_ followed by a long random string:
Getting Your Key
1
Sign up
Visit dev.remem.online and create a free account with your name and email address. No credit card is required to get started.
2
Check your email
Your API key is sent to your inbox within 60 seconds of signing up. If it does not arrive, check your spam folder. The subject line is Your Remem API Key.
3
Save it somewhere safe
The key is shown exactly once — in the email. Remem cannot display it again after issuance. Copy it to a password manager or your project’s secrets store immediately.
4
Start building
Add the key to your environment variables and initialise the client. The free plan activates immediately — there is no approval process and no waiting period.
Using Your Key Safely
Always use environment variables
Always use environment variables
Never hardcode your API key directly in source code. Anyone who reads your code — including version control history after a Store your key in a In production, use your deployment platform’s secrets manager — AWS Secrets Manager, Vercel environment variables, Railway secret variables, and so on. The key should never travel through your repository.
git push — can extract it..env file locally:Add .env to .gitignore
Add .env to .gitignore
Before you commit anything, make sure your If you accidentally commit a file containing your key, revoke it immediately by emailing support@remem.online — then generate a new one. Assume the leaked key is compromised the moment it appears in a commit, even briefly.
.env file is excluded from version control:Lost your key?
Lost your key?
Email support@remem.online from your registered email address and ask for a key reset. The team will revoke your existing key and issue a new one. Your old key stops working the moment it is revoked — any integrations using it will start returning
401 and will need to be updated with the new key.Error Responses
SDK Usage
When you use the Python SDK, you pass the key once during client initialisation. Every subsequent method call sends it automatically — you never touch the header yourself:REST API (No SDK)
If you are calling the API directly without the SDK, include theX-API-Key header on every individual request.