Skip to main content
GET
/
tags
curl -X GET https://api.linkedcamp.com/tags \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Tags found successfully!",
  "data": [
    {
      "content": "Hot Lead",
      "color": "#FF5733",
      "createdAt": 1625000000000,
      "updatedAt": 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.

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
data
array
Array of tag objects.
curl -X GET https://api.linkedcamp.com/tags \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "Tags found successfully!",
  "data": [
    {
      "content": "Hot Lead",
      "color": "#FF5733",
      "createdAt": 1625000000000,
      "updatedAt": 1625000000000
    }
  ]
}