List link prospects with counts per status.
List link prospects with counts per status.
GET
https://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/link-prospectsRecent 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.
Query Params
statusstringFilter by outreach state.
limitintegerPage size, 1 to 200 (default 50).
offsetintegerRows to skip before the first result.
Response
Response Body · array of objects
idstringProspect id. Use it as prospect_id.source_urlstringPage you want a link from.source_domainstringDomain of that page.contact_namestring | nullWho to ask.contact_emailstring | nullTheir email.target_urlstring | nullPage on the site the link should point to.suggested_anchorstring | nullAnchor text to ask for.statusstringOutreach state.owner_user_idinteger | nullMember chasing it.notesstring | nullFree-text notes.next_follow_up_onstring | nullDate of the next follow-up.last_verified_atstring | nullLast time the page was checked for the link.verification_statusstring | nullResult of the last check.backlink_idstring | nullBacklink created once the link went live.created_atstringCreation time.updated_atstringLast change.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.seo.listSiteLinkProspects('<site_id>', {});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": [ { "id": "string", "source_url": "string", "source_domain": "string", "contact_name": "string", "contact_email": "string", "target_url": "string", "suggested_anchor": "string", "status": "string", "owner_user_id": 0, "notes": "string", "next_follow_up_on": "string", "last_verified_at": "string", "verification_status": "string", "backlink_id": "string", "created_at": "string", "updated_at": "string" } ]}