Overview

Admin endpoints let you programmatically manage your Linked API subscription, connected LinkedIn accounts, and rate limits – everything available in the platform dashboard.

While the main API endpoints (workflows, conversations, statistics) operate on behalf of a specific LinkedIn account, admin endpoints manage your Linked API account itself. They are synchronous (direct request-response, no workflows) and require only the linked-api-token header – no identification-token is needed.

Authentication

Admin endpoints require the linked-api-token header – the same token used for all other API requests. Account-specific operations accept accountId in the request body instead of the identification-token header. You can find your token in the platform dashboard.

Request format

All endpoints use POST method with JSON body. The URL pattern is:

POST https://api.linkedapi.io/admin/<resource>.<action>
HeaderRequiredDescription
linked-api-tokenYesYour Linked API token
Content-TypeYesapplication/json

Response format

Success

json
{
  "success": true,
  "result": { ... }
}

Error

json
{
  "success": false,
  "error": {
    "type": "errorType",
    "message": "Human-readable error description"
  }
}

Common errors

TypeHTTP StatusDescription
linkedApiTokenRequired401Missing linked-api-token header
invalidLinkedApiToken401Token is invalid or expired
accountIdRequired401Missing or invalid accountId
accountNotFound401Account does not exist or does not belong to you
sessionNotFound404Connection session not found
tooManyRequests429Rate limit exceeded (100 requests per 60 seconds)

Next steps

  • Subscription – manage plans, seats, and billing
  • Accounts – connect, disconnect, and monitor LinkedIn accounts
  • Limits – configure and monitor rate limits