Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The LinkedCamp API allows you to programmatically manage your LinkedIn outreach campaigns, leads, conversations, webhooks, and more. Use this API to integrate LinkedCamp into your existing workflows, CRMs, and automation tools.

Base URL

All API requests should be made to:
https://api.linkedcamp.com

Key Features

Campaigns

Create, manage, and track LinkedIn outreach campaigns programmatically.

Leads

Add leads to campaigns, update lead data, and track lead statuses.

Conversations

Send messages to prospects and retrieve conversation histories.

Webhooks

Set up real-time notifications for campaign events like connection accepts or replies.

Quick Start

1

Get your API Token

Log in to your LinkedCamp account and retrieve your API token from the settings page. Alternatively, agency owners can use the Get API Token endpoint.
2

Authenticate your requests

Include your API token in the token header of every request.
curl -H "token: YOUR_API_TOKEN" https://api.linkedcamp.com/users/me
3

Start making API calls

You’re ready to create campaigns, manage leads, and integrate LinkedCamp into your workflows.

Response Format

All API responses follow a consistent JSON structure:
{
  "success": true,
  "message": "Descriptive message about the result",
  "data": {}
}
FieldTypeDescription
successbooleanWhether the request was successful
messagestringA human-readable message describing the result
dataobjectThe response payload (varies per endpoint)