Introduction
The Beeving API is a REST API that lets you integrate all platform features into your applications and workflows.
Available Modules
| Module | Description |
|---|---|
| Contacts | CRUD, CSV import/export, tags, lists, segments |
| Campaigns | Create, send, analytics, duplication |
| Templates | Email template management with variables |
| CRM | Leads, deals, companies, pipeline, tasks |
| Webhooks | Real-time event notifications |
| Analytics | Campaign performance metrics |
Base URL
https://app.beeving.com/api/v1Local development:
http://localhost/api/v1Response Format
All responses are JSON. List endpoints are paginated and return an object with data, meta and links.
json
{
"data": [...],
"meta": {
"total": 150,
"count": 25,
"per_page": 25,
"current_page": 1,
"last_page": 6
},
"links": {
"first": "https://app.beeving.com/api/v1/contacts?page=1",
"last": "https://app.beeving.com/api/v1/contacts?page=6",
"prev": null,
"next": "https://app.beeving.com/api/v1/contacts?page=2"
}
}