Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns a single campaign with its current lead and reply counts.
cURL
curl --request GET \ --url https://backend.leadey.ai/v1/campaigns/{id} \ --header 'Authorization: Bearer <token>'
import requests url = "https://backend.leadey.ai/v1/campaigns/{id}" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://backend.leadey.ai/v1/campaigns/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "id": "fnl_Q3OutboundUK", "name": "Q3 outbound, UK logistics", "description": "Inbound demo request from the pricing page.", "status": "active", "createdAt": "2026-07-14T09:12:44.000Z" } }
{ "error": { "message": "Invalid or revoked API key.", "details": null } }
{ "error": { "message": "Lead not found", "details": null } }
Your API key, created in the Leadey dashboard under Settings → API Keys. Send it as Authorization: Bearer leadey_sk_live_….
Authorization: Bearer leadey_sk_live_…
The resource id.
The requested campaign.
Show child attributes