SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

Internal link health from the latest completed crawl.

Orphan pages, broken internal links, pages buried four or more clicks deep and pages with poor anchor text.

GEThttps://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/internal-links

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

crawlobjectLatest crawl, running or finished.
read_atstringWhen the completed crawl finished.
truncatedbooleanThe crawl hit its budget, so orphans are not reported.
orphansarray of objectsPages with no internal link pointing at them.
brokenarray of objectsInternal links that return errors.
deeparray of objectsPages four or more clicks from the home page.
anchor_povertyarray of objectsPages only reached through generic anchors.
totalsobjectpages, internal_links, external_links, noindex_pages.

Request

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

Credentials

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

Response · 200

{
"data": {
"crawl": {},
"read_at": "string",
"truncated": true,
"orphans": [],
"broken": [],
"deep": [],
"anchor_poverty": [],
"totals": {}
}
}