GET
/
v1
/
topics
curl --request GET \
  --url https://api.novu.co/v1/topics \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "_id": {},
      "_organizationId": {},
      "_environmentId": {},
      "key": {},
      "name": {},
      "subscribers": [
        "<string>"
      ]
    }
  ],
  "page": 123,
  "pageSize": 123,
  "totalCount": 123
}

Enter your API key in the Authorization field like the example shown below:

E.g ApiKey 18d2e625f05d80e

Authorizations

Authorization
string
headerrequired

API key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".

Query Parameters

page
number
default: 0

Number of page for the pagination

pageSize
number
default: 10

Size of page for the pagination

key
string

Topic key

Response

200 - application/json
data
object[]
required
page
number
required
pageSize
number
required
totalCount
number
required