LinkedCamp

Integrations

Plays nicely with the tools you already use

19 native and API integrations across CRMs, automation, AI models, scheduling, and more. No brittle Zapier chains required.

LinkedCamp API

Don't see your tool? Build with the LinkedCamp API.

A full REST API + HMAC-signed webhooks for every event LinkedCamp fires — reply received, meeting booked, campaign completed, profile viewed. Bring your own AI keys, wire into your data warehouse, run LinkedCamp headless as the outbound engine behind your own UI.

  • REST API with Postman docs
  • Webhooks on ~15 event types
  • HMAC-SHA256 signed payloads
  • BYOK for OpenAI / Anthropic / Gemini / Grok
  • Native Zapier + Make + n8n apps
  • 24-hour retry window on failures
webhook · meeting.booked
POST /your-endpoint
Content-Type: application/json
X-Signature: sha256=a7c9e1…

{
  "event": "meeting.booked",
  "campaign_id": "cmp_b3k2…",
  "contact": {
    "email": "alex@acme.com",
    "linkedin_url": "linkedin.com/in/…"
  },
  "meeting": {
    "scheduled_for": "2026-05-02T14:00:00Z",
    "channel": "calendly",
    "booked_by_agent": "appointment"
  }
}