---
title: "Search Mentions"
method: GET
path: "/assistant/mentions"
tags: ["assistant"]
---

# Search Mentions

`GET /assistant/mentions`

Search entities by name for @-mention autocomplete in the assistant.

Returns up to 20 results per entity type. Logstreams and experiments are only
returned when project_id is provided.

## Query parameters

- `q` string, required — Name search query. Empty string returns up to 20 results per type.
- `project_id` string, uuid4, nullable — Scope to a specific project. Required for logstream and experiment results.
- `types` AssistantContextType[], nullable — Entity types to include. Defaults to all applicable for the given scope.

## Response `200`

Successful Response

- MentionsResponse — Response for the mentions search endpoint.
  - `results` MentionResult[], required
    - `type` 'page' | 'project' | 'logstream' | 'experiment' | 'trace' | 'span', required — Discriminator for the active surface attached to an assistant turn.
    - `id` string, uuid4, required
    - `name` string, required
    - `project_id` string, uuid4, nullable — Parent project ID. Present for logstream and experiment.

## Other responses

- `422` — Validation Error

---

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