Get one entity and its grounded mentions in a space

View as Markdown
Returns `{ entity, mentions }` for a single entity in a space's graph. `entity` (or `null` if the id is unknown in this space) carries `id`, `type`, `name`, `key`. `mentions` are the grounded occurrences: each has `fileId`, `text`, and best-effort grounding — `page` + `bbox` (`{x,y,width,height}`) for documents, or `startSeconds`/`endSeconds`/`speaker` for audio transcripts (fields are `null` when not applicable). Requires `space:read` on `:spaceId`; missing access surfaces as a 404.

Authentication

AuthorizationBearer

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

Path parameters

spaceIdstringRequired
entityIdstringRequired

Response

The entity (or null) and its grounded mentions.

entityobject or null
Null when the id is unknown in this graph.
mentionslist of objects