Skip to content
Ordinal
Esc
↑↓navigate↵open⌘Jpreview

Get LinkedIn profile by URN

Look up a LinkedIn user or organization by their URN (e.g. urn:li:person:xyz or urn:li:organization:xyz) to get the username, name, and profile picture.

GET/linkedin/profile/{urn}
Authorization
AuthorizationBearer token · headerrequired

API key authentication. Generate an API key from your workspace settings.

Path parameters
urnstringrequired

LinkedIn URN of the person or organization (e.g. urn:li:person:abc123 or urn:li:organization:99999)

min length 1 · matches ^urn:li:(person|organization):.+
Responses
200

LinkedIn profile information

urnstringrequired

LinkedIn URN of the account

usernamestringrequired

LinkedIn vanity name (username)

namestringrequired

Display name of the account

profileImageUrlstring | nullrequired

URL of the profile image, or null if not available

typestringrequired

Type of the LinkedIn account

Allowed:UserOrganization
401

Unauthorized - Missing or invalid API key

codestring
messagestring
404

Not Found - Resource does not exist

codestring
messagestring
Try it
Server
Authorization
Parameters
Request
curl -X GET 'https://app.tryordinal.com/api/v1/linkedin/profile/string' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
{
  "urn": "urn:li:person:ABC123xyz",
  "username": "johndoe",
  "name": "John Doe",
  "profileImageUrl": "https://media.licdn.com/dms/image/photo.jpg",
  "type": "User"
}