API keys are essential for securely accessing and using API services. Here's a quick overview:
How to Obtain an API Key
- Navigate to your dashboard at https://cloud.ullrai.com
- Click "Generate Key" 🔑
- Choose the scope and permissions for your key
- Save it in a secure location (e.g.,
API_key_generation
)
Using Your API Key
- Include it in request headers as
Authorization: Bearer <your_key>
⚙️ - Example:
GET /api/data HTTP/1.1 Host: api.example.com Authorization: Bearer your_api_key_here
- Refer to our API documentation for details
- Include it in request headers as
Security Best Practices
- Never expose keys in client-side code 🛡️
- Rotate keys periodically
- Use environment variables (e.g.,
API_KEY_ENV
)