SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

List pages that mention the brand, whether or not they link.

List pages that mention the brand, whether or not they link.

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

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.

Query Params

statusstring

new, linked, ignored or prospected.

limitinteger

Page size, 1 to 200 (default 50).

offsetinteger

Rows to skip before the first result.

Response

Response Body · array of objects

idstringMention id. Use it as mention_id.
page_urlstringPage that mentions the brand.
page_domainstringDomain of that page.
page_titlestring | nullTitle of that page.
matched_phrasestringBrand phrase that was found.
context_textstring | nullSentence around the mention.
links_to_sitebooleanWhether the page already links to the site.
statusstringnew, linked, ignored or prospected.
prospect_idstring | nullProspect created from it, when one was.
first_seen_atstringWhen it was found.
verified_atstring | nullWhen the page text was confirmed.

Request

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

Credentials

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

Response · 200

{
"data": [
{
"id": "string",
"page_url": "string",
"page_domain": "string",
"page_title": "string",
"matched_phrase": "string",
"context_text": "string",
"links_to_site": true,
"status": "string",
"prospect_id": "string",
"first_seen_at": "string",
"verified_at": "string"
}
]
}