Skip to main content
POST
/
trigger
/
contact-sourcing
/
sync
cURL
curl --request POST \
  --url https://public-api.lonescale.com/trigger/contact-sourcing/sync \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "company_name": "Acme Corp",
  "company_domain": "acme.com",
  "company_linkedin_url": "https://www.linkedin.com/company/acme",
  "personas": [
    {
      "name": "Tech Leaders",
      "job_titles": [
        "CTO",
        "VP Engineering"
      ]
    }
  ],
  "limit": 5,
  "custom": {
    "id": "12356",
    "provider": "lonescale"
  }
}
'
{
  "contacts": [
    {
      "lonescale_full_name": "Jane Doe",
      "lonescale_first_name": "Jane",
      "lonescale_last_name": "Doe",
      "lonescale_linkedin_url": "https://www.linkedin.com/in/janedoe",
      "lonescale_job_title": "CTO",
      "lonescale_job_seniority": "C_SUITE",
      "lonescale_country_code": "US",
      "lonescale_geo_country_name": "United States",
      "lonescale_company_name": "Acme Corp",
      "lonescale_company_domain": "acme.com",
      "lonescale_company_industry": "Software",
      "lonescale_company_staff_count": 250,
      "client_company_name": "Acme Corp",
      "client_company_domain": "acme.com"
    }
  ],
  "profiles_found": 1
}

Authorizations

x-api-key
string
header
required

Provide your API key in the x-api-key header.

Body

application/json
personas
object[]
required

Personas to use to search and filter contacts within the company.

Minimum array length: 1
company_domain
string

Company domain or website to search contacts from.

company_name
string

Company name to search contacts from.

company_linkedin_url
string

Company LinkedIn URL used to search contacts, increasing result coverage and accuracy by 25%.

included_locations
enum<string>[]

List of country codes (ISO 3166-1 alpha-2) to include in the search.

ISO 3166-1 alpha-2 country code

Available options:
AF,
AL,
DZ,
AS,
AD,
AO,
AI,
AQ,
AG,
AR,
AM,
AW,
AU,
AT,
AZ,
BS,
BH,
BD,
BB,
BY,
BE,
BZ,
BJ,
BM,
BT,
BO,
BQ,
BA,
BW,
BV,
BR,
IO,
BN,
BG,
BF,
BI,
CV,
KH,
CM,
CA,
KY,
CF,
TD,
CL,
CN,
CX,
CC,
CO,
KM,
CD,
CG,
CK,
CR,
HR,
CU,
CW,
CY,
CZ,
CI,
DK,
DJ,
DM,
DO,
EC,
EG,
SV,
GQ,
ER,
EE,
SZ,
ET,
FK,
FO,
FJ,
FI,
FR,
GF,
PF,
TF,
GA,
GM,
GE,
DE,
GH,
GI,
GR,
GL,
GD,
GP,
GU,
GT,
GG,
GN,
GW,
GY,
HT,
HM,
HN,
HK,
HU,
IS,
IN,
ID,
IR,
IQ,
IE,
IM,
IL,
IT,
JM,
JP,
JE,
JO,
KZ,
KE,
KI,
KR,
KW,
KG,
LA,
LV,
LB,
LS,
LR,
LY,
LI,
LT,
LU,
MO,
MG,
MW,
MY,
MV,
ML,
MT,
MH,
MQ,
MR,
MU,
YT,
MX,
FM,
MD,
MC,
MN,
ME,
MS,
MA,
MZ,
MM,
NA,
NR,
NP,
NL,
NC,
NZ,
NI,
NE,
NG,
NU,
NF,
MP,
NO,
OM,
PK,
PW,
PS,
PA,
PG,
PY,
PE,
PH,
PN,
PL,
PT,
PR,
QA,
MK,
RO,
RU,
RW,
RE,
BL,
SH,
KN,
LC,
MF,
PM,
VC,
WS,
SM,
ST,
SA,
SN,
RS,
SC,
SL,
SG,
SX,
SK,
SI,
SB,
SO,
ZA,
GS,
SS,
ES,
LK,
SD,
SR,
SJ,
SE,
CH,
SY,
TW,
TJ,
TZ,
TH,
TL,
TG,
TK,
TO,
TT,
TN,
TR,
TM,
TC,
TV,
UG,
UA,
AE,
GB,
UM,
US,
UY,
UZ,
VU,
VE,
VN,
VG,
VI,
WF,
EH,
YE,
ZM,
ZW,
AX
limit
number

Maximum number of contacts to retrieve. Capped at 10.

Required range: x <= 10
seniority_levels
enum<string>[]

List of seniority levels to filter contacts by.

Seniority level of a contact.

Available options:
owner,
founder,
c-suite,
partner,
vp,
head,
director,
manager,
senior,
entry,
intern
disable_company_info
boolean

Disable enrichment of company information for each contact, such as industry, size, etc.

custom
object

Response

Contacts sourced successfully

contacts
object[]

List of sourced contacts.

profiles_found
integer

Total number of contacts found.