Documentation Index
Fetch the complete documentation index at: https://docs.snorbe.deskrex.ai/llms.txt
Use this file to discover all available pages before exploring further.
Get Entity Detail
Returns detailed information about a specific entity, including its linked agent runs, relationships to other entities, and metadata.Request
Path Parameters
| Parameter | Type | Description |
|---|---|---|
entityId | string | Entity ID |
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | API key in Bearer snorbe_... format |
The workspace is automatically resolved from your API key. No
workspaceId parameter required.Response
null if the entity is not found in the workspace.
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Entity ID |
label | string | Entity name |
category | string | Category (e.g., technology, company) |
kind | string | Node kind (entity, ghost) |
description | string | Entity description |
metadata | object | null | Key-value metadata attached to the entity. Each value has a value (string) and type (string) field |
communityId | number | Community cluster ID |
pagerank | number | PageRank score |
createdAt | string | Creation timestamp (ISO 8601) |
updatedAt | string | Last update timestamp (ISO 8601) |
linkedEntities | object[] | Entities directly connected to this entity via graph edges |
linkedEntities[].id | string | Linked entity ID |
linkedEntities[].label | string | Linked entity name |
linkedEntities[].category | string | Linked entity category |
linkedEntities[].kind | string | Linked entity kind |
linkedEntities[].relationships | object[] | Relationship descriptors between the two entities |
linkedEntities[].relationships[].direction | string | Edge direction (outgoing or incoming) |
linkedEntities[].relationships[].type | string | Relationship type (e.g., related_to) |
linkedEntities[].relationships[].weight | number | Edge weight (0-1) |
agentRuns | object[] | Agent runs linked to this entity |
agentRuns[].id | string | Agent run ID |
agentRuns[].status | string | Run status (completed, running, error, etc.) |
agentRuns[].process | object[] | Array of process events from the agent run |
agentRuns[].createdAt | string | Run creation timestamp (ISO 8601) |
agentRuns[].updatedAt | string | Run last update timestamp (ISO 8601) |
agentRuns[].agentId | string | Agent ID that executed this run |
agentRuns[].agentName | string | Agent name |
agentRuns[].linkedSources | object[] | Sources used in this agent run |
agentRuns[].linkedSources[].id | string | Source ID |
agentRuns[].linkedSources[].url | string | Source URL |
agentRuns[].linkedSources[].title | string | Source title |
agentRuns[].linkedSources[].sourceType | string | Source type (public or private) |
agentRuns[].linkedEntityIds | string[] | Entity IDs linked to this agent run |
agentRuns[].linkedEntities | object[] | Entity summaries linked to this agent run |
agentRuns[].linkedEntities[].id | string | Entity ID |
agentRuns[].linkedEntities[].label | string | Entity name |
agentRuns[].linkedEntities[].category | string | Entity category |
agentRuns[].linkedEntities[].kind | string | Entity kind |
The
process field in each agent run is an array of process events. See the SSE streaming docs for the full list of event types and their payloads.Examples
Error Responses
| HTTP Status | Description |
|---|---|
| 401 | Invalid, expired, or missing API key |
| 404 | Entity not found (returns null body) |