Enrichment

Search People

POST/v1/search/people
POST
/v1/search/people

Search leads by filters

Authorization

x-api-key<token>

API key for Open API authentication

In: header

Request Body

application/jsonRequired

All filters listed below follow AND logic between different filters - meaning every specified filter must match for a result to qualify. Within a single filter that accepts multiple values (e.g., multiple industries or locations), OR logic is applied - meaning any one of the provided values can match.

For a complete reference of each filter's predefined/accepted values, you can download the filter values CSV here.

full_nameobject

decision_makerboolean

company_bootstrapedboolean

is_b2bboolean

linkedin_urlarray<string>

locationobject

departmentobject

company_hq_locationobject

certificationsobject

job_titleobject

management_levelobject

jobs_changed_withinobject

company_annual_revenueobject

company_funding_amountobject

company_funding_dateobject

company_founded_yearobject

skillsobject

current_company_experienceobject

current_role_tenureobject

total_experienceobject

company_industryobject

company_nameobject

projected_base_salaryobject

company_sizeobject

linkedin_connection_countobject

linkedin_followers_countobject

education_degreesobject

social_linkobject

keywordsobject

pagenumber

Default: 1Minimum: 1Maximum: 400

limitPerCompanynumber

Minimum: 1Maximum: 10000

company_domainobject

Responses

200
Leads searched successfully

Request

curl -X POST \
  "https://open-api.saleshandy.com/v1/search/people" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "full_name": {
    "includes": [
      "string"
    ],
    "exactMatch": 0
  },
  "decision_maker": false,
  "company_bootstraped": false,
  "is_b2b": false,
  "linkedin_url": [
    "string"
  ],
  "location": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ],
    "exactMatch": 0
  },
  "department": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ]
  },
  "company_hq_location": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ],
    "exactMatch": 0
  },
  "certifications": {
    "includes": [
      "string"
    ]
  },
  "job_title": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ],
    "exactMatch": 0,
    "shouldSearchPast": 0
  },
  "management_level": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ]
  },
  "jobs_changed_within": {
    "min": "string",
    "max": "string"
  },
  "company_annual_revenue": {
    "min": "string",
    "max": "string"
  },
  "company_funding_amount": {
    "min": "string",
    "max": "string"
  },
  "company_funding_date": {
    "min": "string",
    "max": "string"
  },
  "company_founded_year": {
    "min": "string",
    "max": "string"
  },
  "skills": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ],
    "exactMatch": 0
  },
  "current_company_experience": {
    "min": "string",
    "max": "string"
  },
  "current_role_tenure": {
    "min": "string",
    "max": "string"
  },
  "total_experience": {
    "min": "string",
    "max": "string"
  },
  "company_industry": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ]
  },
  "company_name": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ],
    "shouldSearchPast": 0
  },
  "projected_base_salary": {
    "min": "string",
    "max": "string"
  },
  "company_size": {
    "min": "string",
    "max": "string"
  },
  "linkedin_connection_count": {
    "min": "string",
    "max": "string"
  },
  "linkedin_followers_count": {
    "min": "string",
    "max": "string"
  },
  "education_degrees": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ]
  },
  "social_link": {
    "includes": [
      "string"
    ]
  },
  "keywords": {
    "includes": [
      "string"
    ]
  },
  "page": 0,
  "limitPerCompany": 0,
  "company_domain": {
    "includes": [
      "string"
    ],
    "excludes": [
      "string"
    ]
  }
}'

Response

No response body