SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
my leads

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).

GEThttps://app.softsolz.uk/api/v1/services/my-leads/leads/export.csv

Recent Requests

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

Headers

Authorizationstringrequired

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

Query Params

statusstring

One or more statuses, comma-separated (new|not_called|called|contacted|follow_up|qualified|won|lost).

sourcestring

One or more sources, comma-separated (research|api|import|manual).

owner_user_idstring

A member id, or the word unassigned for leads nobody owns.

tags_anystring

Comma-separated tags; matches leads carrying any of them.

tags_allstring

Comma-separated tags; matches leads carrying all of them.

min_fit_scoreinteger

Only fit_score at or above this.

min_lead_scoreinteger

Only lead_score at or above this.

industrystring

Case-insensitive industry match.

citystring

Case-insensitive city match.

statestring

Case-insensitive state or region match.

countrystring

Case-insensitive country match.

technologystring

Text found anywhere in the stored research, for example a CRM name.

searchstring

Words in the name, domain or industry.

run_idinteger

Only leads from this research run.

convertedboolean

true for leads already handed to the CRM, false for the rest.

updated_sincestring

ISO timestamp; only leads updated after it.

created_sincestring

ISO timestamp; only leads created after it.

sortstring

fit (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": {}
}