Get all topics from project/publication

Get all topics from project/publication

Returns information on all topics from a project.

Path Parameters
  • id
    string
    required

    The ID of the project or publication to get topics from.

Query Parameters
  • q
    string

    Full-text search query. May contain any supported search operators.

    Examplenebula
  • isReturnSnippets
    boolean

    If true, returns ftsTitle and ftsSnippet in the response body. Sent along with q query parameter.

    Exampletrue
  • count
    integer

    The maximum number of results to return. When not specified, the top 10 results are returned. When a negative number is specified, returns all search results regardless of their total count. Sent along with q query parameter.

    Example2
  • format
    string enum

    The format of the compiledContent field in the response. Possible values: html, md. Default: html.

    Examplehtml
    • html
    • md
Responses
GET/projects/{id}/articles

[
  {
    "assigneeUserName": "…",
    "body": "…",
    "createdOn": "2026-06-15T14:11:50.283Z",
    "compiledContent": "…",
    "compiledContentType": "html",
    "ftsSnippet": "…",
    "ftsTitle": "…",
    "fullUrl": "…",
    "id": "…",
    "indexKeywords": [
      "…"
    ],
    "modifiedOn": "2026-06-15T14:11:50.283Z",
    "ownerUserName": "…",
    "projectId": "…",
    "projectTitle": "…",
    "statusName": "…",
    "title": "…",
    "tocNodeId": "…",
    "isAutoTopic": true
  }
]