Skip to main content

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

  1. Go to Eazybe Workspace → Settings → API
  2. Click “Generate API Key”
  3. Copy and store securely

Rate Limits

PlanRequests/minute
Starter60
Professional300
Enterprise1000

Response Format

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