Overview
The Eazybe API allows you to programmatically interact with your WhatsApp messaging and CRM data.
API access requires an Enterprise plan or API add-on.
Base URL
https://api.eazybe.com/v1
Authentication
All API requests require authentication via API key:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.eazybe.com/v1/contacts
Getting Your API Key
- Go to Eazybe Workspace → Settings → API
- Click “Generate API Key”
- Copy and store securely
Rate Limits
| Plan | Requests/minute |
|---|
| Starter | 60 |
| Professional | 300 |
| Enterprise | 1000 |
All responses are JSON:
{
"success": true,
"data": { ... },
"meta": {
"page": 1,
"total": 100
}
}
Error Handling
{
"success": false,
"error": {
"code": "INVALID_PHONE",
"message": "Phone number format is invalid"
}
}
Next Steps