🔐Authentication

🔐 The API uses a secret key passed in every request header to verify your identity.

The key

  • Create an API key from workspace settings.
  • Pass it in the X-API-Key header with every request.
  • Store it as a secret and never expose it in client-side code.

Example

curl -X GET https://www.wkil.ai/api/agents \
  -H "X-API-Key: $WKIL_API_KEY"

🛡️ Never place the key in browser code. Use an intermediary server or Edge Function.