Skip to main content
GET
/
linkedin
/
{username}
/
mentions
Mention format by username
curl --request GET \
  --url https://app.tryordinal.com/api/v1/linkedin/{username}/mentions \
  --header 'Authorization: Bearer <token>'
{
  "user": {
    "username": "johndoe",
    "urn": "urn:li:person:ABC123xyz",
    "type": "User",
    "displayName": "John Doe",
    "firstName": "John",
    "mentionFormat": "@[John Doe](urn:li:person:ABC123xyz)",
    "firstNameMentionFormat": "@[John](urn:li:person:ABC123xyz)"
  },
  "organization": {
    "username": "acme-inc",
    "urn": "urn:li:organization:123456",
    "type": "Organization",
    "displayName": "Acme Inc",
    "mentionFormat": "@[Acme Inc](urn:li:organization:123456)"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

username
string
required

LinkedIn username (vanity name) to look up

Minimum string length: 1

Response

LinkedIn mention information

user
object
organization
object