List all topics
This api returns a paginated list of topics. Topics can be filtered by key, name, or includeCursor to paginate through the list. Checkout all available filters in the query section.
Authorization
Authorization<token>API key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".
In: header
Query Parameters
afterstringCursor for pagination indicating the starting point after which to fetch results.
beforestringCursor for pagination indicating the ending point before which to fetch results.
limitnumberLimit the number of items to return (max 100)
100orderDirectionstringDirection of sorting
"ASC" | "DESC"orderBystringField to order by
includeCursorbooleanInclude cursor item in response
keystringKey of the topic to filter results.
namestringName of the topic to filter results.
Header Parameters
idempotency-keystringA header for idempotency purposes
Response Body
OK
dataRequiredarray<object>List of returned Topics
nextRequiredstring | nullThe cursor for the next page of results, or null if there are no more pages.
previousRequiredstring | nullThe cursor for the previous page of results, or null if this is the first page.
totalCountRequirednumberThe total count of items (up to 50,000)
totalCountCappedRequiredbooleanWhether there are more than 50,000 results available