Managing API Keys
You can manage your API keys through the Nolano dashboard.Go to API Keys Dashboard
The dashboard provides an easy-to-use interface for all your API key management needs.
What are API Keys?
API keys are unique identifiers that authenticate your requests to the Nolano API. They act as both an identifier and a password, ensuring that only authorized users can access forecasting services and manage API resources.Key Features
Secure by Design
SHA-256 Hashing
Keys are hashed before storage - original keys are never stored in plain text
Usage Tracking
Every API call is logged with detailed usage statistics and monitoring
Expiration Control
Set custom expiration dates or create keys that never expire
Instant Revocation
Immediately revoke compromised keys with audit trails
Storage and Handling
Never expose API keys in client-side code: API keys should only be used in server-side applications where they can be kept secure.
Environment Variables: Store API keys in environment variables, not in your source code.
Regular Rotation (Coming soon)
Implement a regular key rotation schedule:- Production Keys: Rotate every 90 days
- Development Keys: Rotate every 30 days
- Emergency Rotation: Immediately if compromise suspected
Rate Limits by Key Type
| Permission Level | Requests/Min | Requests/Hour | Requests/Day |
|---|---|---|---|
| Read Only | 50 | 500 | 10,000 |
| Read/Write | 100 | 1,000 | 50,000 |
| Admin | 200 | 2,000 | 100,000 |
| Full Access | 500 | 5,000 | 250,000 |
Enterprise Plans: Custom rate limits and dedicated support available. Contact hello@nolano.com for details.

