Skip to content
Back to KickoffLabs

Campaigns

GET https://api.kickofflabs.com/v2/campaigns

Returns the campaigns available to the authenticated API key.

  • api_key: Your API key, or send it in an Authorization/Authentication header for JSON requests.

The response is an array of campaigns:

[
{
"id": 12345,
"name": "Example Launch",
"lead_count": 250
}
]

Fields:

  • id: Campaign/list id. Use this as CAMPAIGN_ID in other /v2 API endpoints.
  • name: Campaign name.
  • lead_count: Campaign lead count including jump-start settings.

Invalid API access returns 409 with:

{ "message": "Invalid API Access" }