To securely access our APIs, you'll need to generate and use an API Key. Follow these steps:

  1. Generate API Key 🔐

    • Log in to your account at https://cloud.ullrai.com/
    • Navigate to Tools > API Management
    • Click "Create New Key" and provide a descriptive name
    • Your key will be displayed immediately – copy it to a secure location
  2. Store Your Key Safely 🗝️

    • Use environment variables for production environments
    • Avoid hardcoding keys in client-side code
    • Consider using a secrets management service like AWS Secrets Manager
  3. Use API Key in Requests 📄

    GET /api/v1/data HTTP/1.1
    Host: api.example.com
    Authorization: Bearer YOUR_API_KEY
    
  4. Rotate Keys Regularly ⏳

    • Update keys every 90 days
    • Disable old keys after rotation
    • Monitor key usage through our API Usage Dashboard

For advanced security practices, check out our Security Best Practices Guide 📚

API Key Setup
Secure Storage