Skip to main content
The HoopAI Platform Campaigns REST API gives you read access to drip campaign data across your sub-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 Sub-Account, or a Private Integration Token from a Sub-Account. See OAuth 2.0 for details.

OAuth scopes

ScopeAccess granted
campaigns.readonlyRead 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

MethodPathDescription
GET/campaigns/Get campaigns
Last modified on March 4, 2026