Authentication
All API requests require an API key passed via theAuthorization header.
Obtaining an API Key
- Navigate to a project in the MemoryLake console
- Go to the API Keys tab
- Click “Create API Key”
- Copy the generated secret (format:
sk_xxxxxx)
Using API Keys
Include the API key in theAuthorization header:
Example Request
Response
Error Responses
401 Unauthorized
Returned when the API key is missing or invalid:- Verify API key is included in Authorization header
- Check header format:
Bearer YOUR_KEY - Ensure key hasn’t been deleted
- Generate new key if lost
403 Forbidden
Returned when authentication is valid but the API key lacks sufficient permissions:- Verify project ID is correct
- Check API key is for the correct project
- Ensure resource exists
Security Best Practices
Secure Storage
Secure Storage
- Store API keys in environment variables
- Never commit keys to version control
- Use secrets management services
- Rotate keys periodically
Key Management
Key Management
- Create separate keys per environment
- Use descriptive names for keys
- Delete unused keys promptly
- Monitor key usage
Request Security
Request Security
- Always use HTTPS
- Don’t log API keys
- Implement request timeouts
- Handle errors gracefully
Next Steps
Projects API
Start making API requests
Error Handling
Handle API errors