Skip to main content
GET
/
v2
/
accounts
/
{account_id}
Get Account Details
curl --request GET \
  --url https://api.example.com/v2/accounts/{account_id} \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "data": {
    "account_id": "acc_abc123",
    "platform": "linkedin",
    "account_name": "John Doe",
    "is_active": true,
    "status": "active",
    "country": "FR",
    "created_at": "2025-10-15T08:30:00Z",
    "updated_at": "2026-03-20T14:22:00Z"
  },
  "metadata": {
    "action": "get_account",
    "account_id": "acc_abc123",
    "credits_consumed": 0,
    "timestamp": "2026-03-24T12:00:00Z"
  }
}
Retrieve detailed information about a specific account, including its configuration and current status.
This endpoint costs 0 credits.

Header Parameters

x-api-key
string
required
Your API key

Path Parameters

account_id
string
required
The unique identifier of the account to retrieve

Response

success
boolean
Whether the request was successful
data
object
metadata
object
{
  "success": true,
  "data": {
    "account_id": "acc_abc123",
    "platform": "linkedin",
    "account_name": "John Doe",
    "is_active": true,
    "status": "active",
    "country": "FR",
    "created_at": "2025-10-15T08:30:00Z",
    "updated_at": "2026-03-20T14:22:00Z"
  },
  "metadata": {
    "action": "get_account",
    "account_id": "acc_abc123",
    "credits_consumed": 0,
    "timestamp": "2026-03-24T12:00:00Z"
  }
}

Notes

  • This endpoint is free and does not consume any credits
  • Use this to check if an account is active before making action requests
  • Use the dedicated webhook endpoints to configure webhooks for your accounts