SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

Everything technical about a website in one call.

Index reconciliation counts with their plain-English labels, the sitemaps we could read, redirect and canonical chains, the latest real-user speed figures, and whether search engines are being notified of changes. Call POST /sites/{site_id}/technical/refresh first if it looks stale.

GEThttps://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/technical

Recent Requests

Log in to see full request history
TimeStatusUser Agent
Make a request to see history.

Path Params

site_idstringrequired

Headers

Authorizationstringrequired

Bearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.

Response

Response Body

index_countsobjectHow many URLs sit in each reconciliation state.
reconciliation_labelsobjectPlain English for each state, so you can report them without inventing wording.
sitemapsarray of objectsThe sitemap files we read.
chainsarray of objectsChains worth shortening.
web_vitalsobjectThe latest speed figures plus the thresholds used.
indexnowobjectWhether change notifications are on, and the last batches sent.

Request

import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.seo.getTechnicalHealth('<site_id>');
console.log(result);

Credentials

Sent as a Bearer token. Stored only in your browser.

Response · 200

{
"data": {
"index_counts": {},
"reconciliation_labels": {},
"sitemaps": [],
"chains": [],
"web_vitals": {},
"indexnow": {}
}
}