Skip to main content
GET
/
blacklists
curl -X GET "https://api.linkedcamp.com/blacklists?type=PROFILE_URL" \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Blacklist found successfully!",
  "data": [
    {
      "keyword": "https://www.linkedin.com/in/johndoe",
      "type": "PROFILE_URL",
      "createdAt": 1625000000000
    }
  ]
}

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.

Query Parameters

type
string
Filter blacklist entries by type.Available values: PROFILE_URL, KEYWORD, JOB_TITLE

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
data
array
Array of blacklist entries.
curl -X GET "https://api.linkedcamp.com/blacklists?type=PROFILE_URL" \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Blacklist found successfully!",
  "data": [
    {
      "keyword": "https://www.linkedin.com/in/johndoe",
      "type": "PROFILE_URL",
      "createdAt": 1625000000000
    }
  ]
}