---
title: "List Topics"
method: GET
path: "/v2/topics"
tags: ["Topic API"]
---

# List Topics

`GET /v2/topics`

List the AI-generated topic taxonomy for a team. Topics form a hierarchy representing common themes across tickets.

## Query parameters

- `teamId` string — The ID of the team to list topics for.
- `pageSize` integer — Maximum number of results to return. Default is 10000, maximum is 10000.
- `pageToken` string — Token for pagination. Leave empty for the first request.

## Response `200`

Success

- SvhelpPublicapiListTopicsResponse
  - `data` SvhelpPubapimodelsTopic[]
    - `id` string — The ID of the topic.
    - `teamId` string — The ID of the team this topic belongs to.
    - `name` string — The name of the topic.
    - `description` string — A description of what this topic covers.
    - `parentTopicId` string, nullable — The ID of the parent topic. Null for root-level topics.
    - `subTopics` SvhelpPubapimodelsTopic[] — Sub-topics nested under this topic.
    - `ticketCount` integer — The number of tickets currently assigned to this topic.
  - `nextPageToken` string, nullable — Token for retrieving the next page of results. Empty if no more results.

## Other responses

- `default` — Error

---

[API](https://skmtc.net/serval/apis/serval-public-api.md) · [All operations](https://skmtc.net/serval/apis/serval-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/serval/serval-public-api/versions/0549515e9384/schema)
