Skip to main content
POST
/
topic-clusters
Create Topic
curl --request POST \
  --url https://v3-api-beta.snowseo.com/snowseo/v2/topic-clusters \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "teamId": "<string>",
  "topic": "<string>"
}
'
Create a new topic cluster to organize your SEO strategy.

Request

teamId
string
required
Your team ID.
topic
string
required
The name of the topic (e.g., Technical SEO, Content Marketing).

Response

{
  "success": true,
  "topic": {
    "id": "topic_xyz890",
    "name": "Content Marketing",
    "teamId": "team_123"
  }
}