API keys are essential for securely accessing and using API services. Here's a quick overview:

  1. 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)
  2. 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
  3. Security Best Practices

    • Never expose keys in client-side code 🛡️
    • Rotate keys periodically
    • Use environment variables (e.g., API_KEY_ENV)
API_key_security
For advanced usage, check out [API Key Management](/en/learn/chat/api-key-management) 🚀