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
after
stringCursor for pagination indicating the starting point after which to fetch results.
before
stringCursor for pagination indicating the ending point before which to fetch results.
limit
numberLimit the number of items to return (max 100)
100
orderDirection
stringDirection of sorting
"ASC" | "DESC"
orderBy
stringField to order by
includeCursor
booleanInclude cursor item in response
key
stringKey of the topic to filter results.
name
stringName of the topic to filter results.
Header Parameters
idempotency-key
stringA header for idempotency purposes
Response Body
OK
data
Requiredarray<object>List of returned Topics
next
Requiredstring | nullThe cursor for the next page of results, or null if there are no more pages.
previous
Requiredstring | nullThe cursor for the previous page of results, or null if this is the first page.