---
title: "Get mention suggestions for a conversation"
method: GET
path: "/api/v1/w/{wId}/assistant/conversations/{cId}/mentions/suggestions"
tags: ["Mentions"]
---

# Get mention suggestions for a conversation

`GET /api/v1/w/{wId}/assistant/conversations/{cId}/mentions/suggestions`

Get suggestions for mentions (agents and users) based on a query string, scoped to a specific conversation.

## Path parameters

- `wId` string, required
- `cId` string, required

## Query parameters

- `query` string, required
- `select` string[]
- `current` boolean

## Response `200`

List of mention suggestions

- object
  - `suggestions` RichMention[]
    - `id` string, required — Unique identifier for the mention (agent sId or user sId)
    - `type` 'agent' | 'user', required — Type of the mention
    - `label` string, required — Display label for the mention
    - `pictureUrl` string, required — URL of the profile picture
    - `description` string, required — Description of the mention (agent description or user email)
    - `userFavorite` boolean, nullable — Whether the agent is marked as a favorite by the user (only for agent mentions)

## Other responses

- `400` — Bad Request. Missing or invalid parameters.
- `401` — Unauthorized. Invalid or missing authentication token.
- `404` — Conversation not found.
- `500` — Internal Server Error.

---

[API](https://skmtc.net/dust-tt/apis/dust-api-documentation.md) · [All operations](https://skmtc.net/dust-tt/apis/dust-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dust-tt/dust-api-documentation/versions/5834d690c29d/schema)
