Production API endpoint URL:
https://api.openstack.ai/v1Authentication
All requests to the OpenStack API require authentication using your project’s API key.How it works
Each project in your account has a unique secret API key. This key identifies your project and ensures that only you can access and modify your data.- Keep your API key secure
- Rotate keys in your dashboard if needed
Adding the API key to requests
You must include your API key in theAuthorization header of every request to the OpenStack API:
Where to find your API key
- Log in to your Dashboard.
- Go to the OpenStack section of the dashboard.
- Copy the secret API key for the project you want to integrate.
Tips for API key usage
- Never commit your API key to public repositories.
- Use environment variables (process.env.YOUR_API_KEY) in your backend for secure usage.
- Periodically review and rotate keys to maintain security.