Download leads as CSV.
Download the leads that match the same filters as GET /leads as a CSV file with one row per lead (name, website, industry, location, scores, status, owner, tags, source, primary contact email and phone).
https://app.softsolz.uk/api/v1/services/my-leads/leads/export.csvRecent Requests
Log in to see full request historyHeaders
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Query Params
statusstringOne or more statuses, comma-separated (new|not_called|called|contacted|follow_up|qualified|won|lost).
sourcestringOne or more sources, comma-separated (research|api|import|manual).
owner_user_idstringA member id, or the word unassigned for leads nobody owns.
tags_anystringComma-separated tags; matches leads carrying any of them.
tags_allstringComma-separated tags; matches leads carrying all of them.
min_fit_scoreintegerOnly fit_score at or above this.
min_lead_scoreintegerOnly lead_score at or above this.
industrystringCase-insensitive industry match.
citystringCase-insensitive city match.
statestringCase-insensitive state or region match.
countrystringCase-insensitive country match.
technologystringText found anywhere in the stored research, for example a CRM name.
searchstringWords in the name, domain or industry.
run_idintegerOnly leads from this research run.
convertedbooleantrue for leads already handed to the CRM, false for the rest.
updated_sincestringISO timestamp; only leads updated after it.
created_sincestringISO timestamp; only leads created after it.
sortstringfit (default), score, recent, updated or name.
Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.myLeads.exportLeads({});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": {}}