Returns the full knowledge graph for the workspace, including CRM entity nodes, relationship edges, context edges (from ingested text), insight triplet edges (AI-extracted subject-predicate-object relationships), insight nodes, and insight link edges (semantic relationships between insights). Supports an optional limit query parameter to control the maximum number of entity nodes returned (default 1000, max 5000). Set Accept: text/html or ?format=html to receive an interactive visualization.
record.read scope on your API key.| Type | ID Format | Response Field | Description |
|---|---|---|---|
| CRM entity | "12345" | nodes | Resolved entities (people, companies, custom objects) |
| Ghost | "ghost:123" | nodes | Entities mentioned in context but not yet matched to a CRM record |
| Entity insight | "ei:123" | insight_nodes | AI-extracted insight scoped to a specific entity |
| Knowledge insight | "ki:123" | insight_nodes | Workspace-level AI-extracted knowledge |
context_edges array contains edges from multiple sources, distinguished by the edge_type field:
| Edge Type | Description | Has Confidence |
|---|---|---|
context | Relationships from ingested text (e.g., “involved_in”) | No |
triplet | AI-extracted subject-predicate-object relationships (e.g., “works_with”, “reports_to”) | Yes |
insight | Links connecting insight nodes to entity nodes | No |
insight_link | Semantic relationships between insight nodes (related_to or contradicts) | Yes |
insight_link edges represent semantic relationships discovered between insights. They connect two insight nodes (entity insights ei:* or knowledge insights ki:*) and always include a confidence score (0-1) representing semantic similarity.
Labels:
related_to — The two insights are semantically relatedcontradicts — The two insights contain contradictory informationcontext edge and a triplet edge exist between the same pair of nodes, generic context labels (involved_in, context) are suppressed in favor of the richer triplet edge. Non-generic context labels are kept alongside triplet edges.
API key for authentication (format: "Bearer YOUR_API_KEY")
Maximum number of entity nodes to return
1 <= x <= 5000Response format. Use html to receive an interactive graph visualization instead of JSON.
json, html Knowledge graph data
Complete knowledge graph for the workspace
CRM entity nodes (people, companies, custom objects) and ghost nodes (entities mentioned in context but not yet resolved to a CRM record)
CRM relationship edges between entity nodes (e.g., person works_at company)
Definitions of relationship types in the workspace
Edges derived from ingested context, AI-extracted triplets, insight-entity links, and insight-to-insight semantic relationships. Each edge has an edge_type indicating its source.
Insight nodes representing AI-extracted knowledge (entity insights and workspace-level knowledge insights)
Per-entity insight summaries, keyed by entity ID
Total number of entity nodes in the workspace (may exceed the returned count due to the limit parameter)
Total number of CRM relationship edges in the workspace
Total number of context edges returned (includes all edge types)