v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Wiki

List Wiki Pages

List wiki pages with cursor-based pagination. Optionally filter by page type or creation date, or search by keyword (which reorders results by relevance and disables cursor pagination).

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

get/v1/external/workspaces/{workspaceGuid}/wiki/pages

Path parameters

workspaceGuidstring required

Workspace GUID

Query parameters

cursorstring

Cursor for pagination (from nextCursor of previous response)

limitinteger

Page size (default 50, max 200)

typestring

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

sincestring date-time

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

qstring

Optional search keyword. When provided, results are reordered by full-text relevance and cursor pagination is disabled (nextCursor is always null).

Response

Paginated list of wiki pages

nextCursorstring nullable required

Cursor for the next page of results. Null when there are no more pages. When searching (q parameter provided), always null.

Example response

{
  "content": [
    {
      "guid": "page_abc123",
      "wikiId": 1,
      "canonicalName": "Alice Kim",
      "pageType": "ENTITY",
      "entitySubtype": "PERSON",
      "extractionStatus": "EXTRACTED",
      "mentionCountVisible": 5,
      "aliasCount": 2,
      "linkCountIn": 3,
      "linkCountOut": 2,
      "lastUpdatedVisible": "2025-01-15T10:30:00Z",
      "createdAt": "2025-01-01T00:00:00Z",
      "updatedAt": "2025-01-15T10:30:00Z",
      "description": "Senior product manager at Acme",
      "descriptionStatus": "READY",
      "regenerationAvailable": true
    }
  ],
  "nextCursor": "opaque-cursor-string"
}