v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Wiki

Get Wiki Graph Seed

Retrieve an initial set of nodes and edges for graph visualization. Optionally filter by page type, creation date, or search keyword.

Returns 402 if wiki is not plan-eligible or not activated.

get/v1/external/workspaces/{workspaceGuid}/wiki/graph/seed

Path parameters

workspaceGuidstring required

Workspace GUID

Query parameters

typestring

Filter by page type (ENTITY, MENTION, CUSTOM, etc.)

sincestring date-time

ISO 8601 datetime — include only pages updated on or after this time

qstring

Optional search keyword to filter the seed

folderIdinteger

Restrict the seed graph to wiki pages mentioned by notes inside this folder, including its descendant folders (recursive). An empty, nonexistent, or inaccessible folder yields an empty graph. The value must be numeric; a non-numeric value returns 400.

limitinteger

Maximum nodes to return (default 200, max 200)

Response

Wiki graph with nodes and edges

Example response

{
  "nodes": [
    {
      "guid": "page_abc123",
      "canonicalName": "Alice Kim",
      "pageType": "ENTITY",
      "entitySubtype": "PERSON",
      "extractionStatus": "EXTRACTED",
      "mentionCountVisible": 5
    }
  ],
  "edges": [
    {
      "guid": "link_abc123",
      "sourcePageGuid": "page_src_123",
      "targetPageGuid": "page_tgt_456",
      "linkType": "works_at",
      "linkTypeDisplayKo": "근무처",
      "linkTypeDisplayEn": "Works At",
      "isDirectional": true
    }
  ]
}