---
title: "Get Wiki Graph Seed"
method: GET
path: "/v1/external/workspaces/{workspaceGuid}/wiki/graph/seed"
tags: ["Wiki"]
---

# Get Wiki Graph Seed

`GET /v1/external/workspaces/{workspaceGuid}/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.

## Path parameters

- `workspaceGuid` string, required

## Query parameters

- `type` string
- `since` string, date-time
- `q` string
- `folderId` integer
- `limit` integer

## Response `200`

Wiki graph with nodes and edges

- WikiGraphResponse
  - `nodes` WikiGraphNode[], required — List of wiki page nodes
    - `guid` string, required — Wiki page GUID
    - `canonicalName` string, required — Canonical name of the page
    - `pageType` 'ENTITY' | 'MENTION' | 'CUSTOM', required — Type of wiki page
    - `entitySubtype` string, nullable — Entity subtype
    - `extractionStatus` 'EXTRACTED' | 'EXTRACTING' | 'FAILED' | 'STALE' | 'NOT_EXTRACTED', required — Current extraction status
    - `mentionCountVisible` integer, required — Number of visible mentions
  - `edges` WikiGraphEdge[], required — List of links between nodes
    - `guid` string, required — Link GUID
    - `sourcePageGuid` string, required — Source page GUID
    - `targetPageGuid` string, required — Target page GUID
    - `linkType` string, required — Machine-readable link type code
    - `linkTypeDisplayKo` string, required — Korean display name for link type
    - `linkTypeDisplayEn` string, required — English display name for link type
    - `isDirectional` boolean, required — Whether the link is directional

## Other responses

- `401` — Unauthorized
- `402` — Wiki plan requirement not met or not activated
- `404` — Workspace not found

---

[API](https://skmtc.dev/tiro/apis/tiro-api.md) · [All operations](https://skmtc.dev/tiro/apis/tiro-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tiro/tiro-api/revisions/ae18d7961aa4/schema)
