Skip to content

Introduction

The Beeving API is a REST API that lets you integrate all platform features into your applications and workflows.

Available Modules

ModuleDescription
ContactsCRUD, CSV import/export, tags, lists, segments
CampaignsCreate, send, analytics, duplication
TemplatesEmail template management with variables
CRMLeads, deals, companies, pipeline, tasks
WebhooksReal-time event notifications
AnalyticsCampaign performance metrics

Base URL

https://app.beeving.com/api/v1

Local development:

http://localhost/api/v1

Response 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"
  }
}

Next Steps

API v1.0