Skip to main content
GET
/
api
/
late
/
mentions
Resolve a LinkedIn URL to a mention token
curl --request GET \
  --url https://app.puffle.ai/api/late/mentions \
  --header 'Authorization: Bearer <token>'
{
  "mention": {
    "displayName": "<string>",
    "urn": "<string>",
    "profileUrl": "<string>"
  }
}

Overview

Given a LinkedIn profile or company page URL, returns the Late mention payload you can embed in post content. Requires an owned accountId because mention resolution happens under that account’s authenticated Late session. The endpoint is named list by convention but resolves exactly one URL per call.

AI agent notes

Use case — rendering @Jane Doe or @Acme Corp pills in a post composer. Embed the returned payload verbatim in the post body; do not try to reconstruct it.Account context matters — Late’s mention resolution depends on which account is authenticated. Use the same accountId you plan to use for the eventual post.Error passthrough — 500 responses forward Late’s error message verbatim for UI display.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

url
string<uri>
required

LinkedIn profile or company page URL to resolve into a mention token.

displayName
string

Optional display name. If omitted, Late infers it from the target page.

accountId
string<uuid>
required

Internal social_accounts.id on whose behalf the resolution is performed. The account is used for Late's per-account auth context.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Mention resolved.

mention
object
required

Opaque resolution payload from Late. Embed it unchanged in post content to render a clickable mention.