What is an API Key?

An API key is a unique identifier used to authenticate requests to an API. It acts as a password to access specific resources and ensure security.

api_key_security

How to Generate an API Key?

  1. Log in to your account on the platform.
  2. Navigate to Settings > API Management.
  3. Click "Generate New Key" and follow the prompts.
how_to_generate_api_key

How to Use an API Key?

  • Append it to the request headers as Authorization: Bearer <your_api_key>.
  • Ensure it is never exposed in client-side code or public logs.
api_key_usage

Security Best Practices

  • 🔒 Store your API key in environment variables, not plain text files.
  • 📦 Rotate keys regularly to minimize risk of unauthorized access.
  • 🌐 Use HTTPS for all API requests to encrypt data in transit.
api_key_security_best_practices

For more details on API key management, visit our API Key Usage Guide.