Skip to main content
GET
/
campaigns
/
{campaignId}
curl -X GET https://api.linkedcamp.com/campaigns/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Campaign found successfully!",
  "data": {
    "_id": "60f7a1b2c3d4e5f6a7b8c9d0",
    "title": "Outreach Campaign",
    "url": "https://www.linkedin.com/search/results/people/...",
    "status": "ACTIVE",
    "total": 150,
    "stats": {}
  }
}

Headers

token
string
required
Your LinkedCamp API token.

Path Parameters

campaignId
string
required
The ID of the campaign. You can get this from the campaign URL or from the List Campaigns endpoint.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
data
object
The campaign details.
curl -X GET https://api.linkedcamp.com/campaigns/60f7a1b2c3d4e5f6a7b8c9d0 \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Campaign found successfully!",
  "data": {
    "_id": "60f7a1b2c3d4e5f6a7b8c9d0",
    "title": "Outreach Campaign",
    "url": "https://www.linkedin.com/search/results/people/...",
    "status": "ACTIVE",
    "total": 150,
    "stats": {}
  }
}