ApiUncategorized
Fetch LinkedIn profile information
Retrieve detailed profile information for a LinkedIn member including name, headline, location, experience, education, and connections. Optionally include geo location details and contact information (email, phone if visible).
POST
/profileFetch LinkedIn profile information
Retrieve detailed profile information for a LinkedIn member including name, headline, location, experience, education, and connections. Optionally include geo location details and contact information (email, phone if visible).
Authentication requiredProfile
Code Examples
curl -X POST '/linkedin/profile' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"profileId":"string"}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID to use. If not provided, uses the default account. |
profileId | string | Yes | LinkedIn profile public ID (e.g., "john-doe-123") |
includeGeoLocation | boolean | No | Include detailed geo location data (city, country, coordinates) |
includeContact | boolean | No | Include contact info (email, phone) if visible to viewer |
Example
{
"profileId": "string"
}Responses
| Status | Description |
|---|---|
| 200 | Profile information retrieved successfully |
