Overview
EazeCustoms uses API key-based authentication for securing all requests. Your API key is a unique identifier that proves your authorization to access the EazeCustoms platform.Getting Your API Key
- Complete the onboarding process
- Our team will email you your credentials
- Store your API key securely (never commit to version control)
Using Your API Key
Include your API key in theAuthorization header of every request:
Best Practices
1. Keep Your Key Secure
- Store API keys in environment variables, not in code
- Use
.envfiles for local development (add to.gitignore) - Rotate keys regularly in production
2. Environment Variables
3. Implementation Examples
- cURL
- Python
- JavaScript
- PHP
- Go
- Java
- Ruby
Key Rotation
Regularly rotate your API keys to maintain security:- Generate a new API key from your dashboard
- Update all applications to use the new key
- Wait 24 hours to ensure all traffic has switched
- Revoke the old key
Troubleshooting
Invalid API Key Error (HTTP 401)
Unauthorized Error (HTTP 403)
Security Headers
All requests should include:Rate Limiting
API keys are subject to rate limits:- Sandbox: 100 requests/minute
- Production: 1000 requests/hour
Retry-After header.