Get all topics from project/publication
Returns information on all topics from a project.
Path Parameters
- idstringrequired
The ID of the project or publication to get topics from.
Query Parameters
- qstring
Full-text search query. May contain any supported search operators.
Examplenebula - isReturnSnippetsboolean
If true, returns
ftsTitleandftsSnippetin the response body. Sent along withqquery parameter.Exampletrue - countinteger
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
qquery parameter.Example2 - formatstring enum
The format of the
compiledContentfield 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
}
]