Skip to main content
GET
/
users
/
me
curl -X GET https://api.linkedcamp.com/users/me \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "User found successfully!",
  "user": {
    "email": "user@example.com",
    "fullName": "John Doe",
    "apiKey": "abc123..."
  },
  "linkedAccount": {
    "fullName": "John Doe",
    "email": "john@linkedin.com",
    "isValid": true,
    "headline": "CEO at Acme Corp",
    "profileLink": "https://www.linkedin.com/in/johndoe",
    "isPaused": false
  },
  "emailAccounts": [
    {
      "fullName": "John Doe",
      "email": "john@acme.com",
      "isValid": true,
      "isPaused": false,
      "type": "GMAIL"
    }
  ]
}

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.
user
object
The user account details.
linkedAccount
object
The linked LinkedIn account details.
emailAccounts
array
List of connected email accounts.
curl -X GET https://api.linkedcamp.com/users/me \
  -H "token: YOUR_API_TOKEN"
{
  "success": true,
  "message": "User found successfully!",
  "user": {
    "email": "user@example.com",
    "fullName": "John Doe",
    "apiKey": "abc123..."
  },
  "linkedAccount": {
    "fullName": "John Doe",
    "email": "john@linkedin.com",
    "isValid": true,
    "headline": "CEO at Acme Corp",
    "profileLink": "https://www.linkedin.com/in/johndoe",
    "isPaused": false
  },
  "emailAccounts": [
    {
      "fullName": "John Doe",
      "email": "john@acme.com",
      "isValid": true,
      "isPaused": false,
      "type": "GMAIL"
    }
  ]
}