Get My LinkedIn Profile
linkedin_get_my_profileRetrieve your authenticated LinkedIn profile details including name, headline, profile URL, email, and locale. Choose Markdown or JSON output.
Instructions
Get the authenticated user's LinkedIn profile information.
Returns your full profile details including name, headline, vanity URL, profile picture, email, and locale. Combines both the OpenID Connect userinfo endpoint and the LinkedIn profile API.
Args:
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns (JSON format): { "id": string, // LinkedIn member ID "firstName": string, // First name "lastName": string, // Last name "fullName": string, // Full display name "headline": string, // Professional headline "vanityName": string, // Custom URL identifier "profileUrl": string, // Full LinkedIn URL "email": string, // Email address (if available) "pictureUrl": string, // Profile picture URL "locale": string // Locale setting }
Requires scope: openid + r_liteprofile (or r_basicprofile)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |