Skip to main content
GET
/
topic-clusters
Topics
curl --request GET \
  --url https://v3-api-beta.snowseo.com/snowseo/v2/topic-clusters \
  --header 'Authorization: Bearer <token>'
Topic clusters group related keywords and AI prompts together, letting you track your authority and visibility for each topic area.

List all topics

Returns all topic clusters for your team with visibility scores and keyword counts.
teamId
string
required
Your team ID.

Response

{
  "summary": {
    "totalKeywords": 5,
    "trackedPrompts": 6,
    "avgSearchVisibility": 0,
    "avgAiVisibility": 0
  },
  "items": [
    {
        "id": "topic_xyz890",
        "name": "Content Automation",
        "createdAt": "2026-03-16T15:33:15.575Z",
        "keywordCount": 0,
        "promptCount": 5,
        "trackedPromptCount": 5,
        "trackedKeywordCount": 0,
        "aiVisibility": 0,
        "searchVisibility": 0,
        "topicalAuthorityScore": 0,
        "changePct": 0,
        "trend": "rising",
        "leaders": []
    }
  ]
}