API Key Authentication
Enrow API uses API key authentication. All requests must include your API key in thex-api-key header.
Getting Your API Key
- Sign up at app.enrow.io
- Click API in the left menu
- Copy your API key
Making Authenticated Requests
Include your API key in thex-api-key header for every request:
Authentication Errors
If your API key is missing or invalid, you’ll receive a401 Unauthorized response:
Account Information
You can retrieve your account information (credits balance, registered webhooks) from the API key provided in thex-api-key header:
Response
Best Practices
Use Environment Variables
Use Environment Variables
Store your API key in environment variables rather than hardcoding it:
Rotate Keys Regularly
Rotate Keys Regularly
For enhanced security, rotate your API keys periodically and revoke unused keys.
Use Different Keys for Different Environments
Use Different Keys for Different Environments
Create separate API keys for development, staging, and production environments.

