Skip to main content
GET
/
linkedin
/
profile
/
{urn}
Get LinkedIn profile by URN
curl --request GET \
  --url https://app.tryordinal.com/api/v1/linkedin/profile/{urn} \
  --header 'Authorization: Bearer <token>'
{
  "urn": "urn:li:person:ABC123xyz",
  "username": "johndoe",
  "name": "John Doe",
  "profileImageUrl": "https://media.licdn.com/dms/image/photo.jpg",
  "type": "User"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

urn
string
required

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

Minimum string length: 1
Pattern: ^urn:li:(person|organization):.+

Response

LinkedIn profile information

urn
string
required

LinkedIn URN of the account

username
string
required

LinkedIn vanity name (username)

name
string
required

Display name of the account

profileImageUrl
string | null
required

URL of the profile image, or null if not available

type
enum<string>
required

Type of the LinkedIn account

Available options:
User,
Organization