Skip to main content
POST
/
blacklists
curl -X POST https://api.linkedcamp.com/blacklists \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "PROFILE_URL",
    "keyword": "https://www.linkedin.com/in/johndoe"
  }'
{
  "success": true,
  "message": "Blacklist added successfully!"
}

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.

Headers

token
string
required
Your LinkedCamp API token.

Body Parameters

type
string
required
The type of blacklist entry.Available values: PROFILE_URL, JOB_TITLE, KEYWORD
keyword
string
required
The value to blacklist. Depending on the type, this could be a LinkedIn profile URL, a job title, or a keyword.
linkedInAccountEmail
string
The LinkedIn account email to associate the blacklist with. Required if the user has more than one linked LinkedIn account.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/blacklists \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "PROFILE_URL",
    "keyword": "https://www.linkedin.com/in/johndoe"
  }'
{
  "success": true,
  "message": "Blacklist added successfully!"
}