---
title: "List mentions"
method: GET
path: "/v1/inbox/mentions"
tags: ["Mentions"]
---

# List mentions

`GET /v1/inbox/mentions`

Returns mentions of your connected organization accounts, delivered via platform webhooks.
Currently supports LinkedIn organization mentions.

Requires Inbox addon.

## Query parameters

- `accountId` string
- `profileId` string
- `sortOrder` 'asc' | 'desc'
- `limit` integer
- `cursor` string

## Response `200`

Paginated list of mentions

- object
  - `data` object[]
    - `id` string — Mention document ID
    - `platform` 'linkedin'
    - `accountId` string
    - `accountUsername` string
    - `content` string — Text of the post that mentioned you
    - `permalink` string, nullable — URL to the source post on LinkedIn
    - `authorUrn` string, nullable — LinkedIn URN of the person who mentioned you
    - `authorName` string, nullable — Display name of the author, resolved from authorUrn. Null when LinkedIn does not allow resolving the profile.
    - `authorUsername` string, nullable — LinkedIn vanity name of the author (the slug in their profile URL)
    - `authorPicture` string, nullable — Profile picture URL of the author. LinkedIn CDN URLs expire after some time, so fetch promptly rather than storing long-term.
    - `organizationalEntity` string — URN of the organization that was mentioned
    - `publishedAt` string, date-time
    - `createdAt` string, date-time
  - `pagination` object
    - `hasMore` boolean
    - `cursor` string, nullable
  - `meta` object
    - `total` integer
    - `sortOrder` 'asc' | 'desc'

## Other responses

- `401` — Unauthorized
- `403` — Inbox addon required

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/versions/51932b099b2f/schema)
