The HoopAI Platform Campaigns REST API gives you read access to drip campaign data across your accounts. Retrieve a paginated list of campaigns for any location, with optional status filtering — giving you the data you need to build dashboards, sync enrollment states, and audit campaign activity from your own application.
Base URL
https://services.leadconnectorhq.com
Authentication
Every request requires a Bearer token and an API version header.
Authorization: Bearer <access_token>
Version: 2021-07-28
Use an access token generated with user type Account, or a Private Integration Token from an Account. See OAuth 2.0 for details.
OAuth scopes
| Scope | Access granted |
|---|
campaigns.readonly | Read campaign data for a location |
Quick start
Retrieve all campaigns for a location:
curl -X GET "https://services.leadconnectorhq.com/campaigns/?locationId=<locationId>" \
-H "Authorization: Bearer <access_token>" \
-H "Version: 2021-07-28"
Endpoints
| Method | Path | Description |
|---|
GET | /campaigns/ | Get campaigns |
Last modified on March 5, 2026