Rebuild the topic map now.
Classifies the intent of every search and regroups them into topics. Runs in the background: poll GET /tasks/{task_id} until it completes, then read GET /sites/{site_id}/topics. A monthly report does this automatically, so only call it after adding a lot of new data. Spends no SoftSolz AI credits.
POST
https://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/topics/rebuildRecent Requests
Log in to see full request historyTimeStatusUser Agent
Make a request to see history.
Path Params
site_idstringrequiredHeaders
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Response
Response Body
task_idstringPoll this with GET /tasks/{task_id}.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.seo.rebuildTopics('<site_id>', {});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 202
{ "data": { "task_id": "string" }}