Search API

This request searches our database for people matching the filters

POST /search/person

The cost is credits + credit per returned person, you are only charged for a successful search.

Request Body

NameTypeDescription

job_title

String

The title of the job to search for

first_name

String

The first name of the individual to search for

last_name

String

The last name of the individual to search for

company_name

String

The name of the company to search for

location

String

The geographic location to include in the search

industry

String

The industry sector to include in the search

technology

String

An array of technologies to include in the search

number*

Num

The number of results to return

work_email_available

String

Boolean to filter by availability of a work email

Expected Request Body

{
  "job_title": "",
  "first_name": "dale",
  "last_name": "kirkwood",
  "company_name": "",
  "number": "1",
  "location": "",
  "industry": "",
  "experience_level": "",
  "education_level": "",
  "role": [
    "real_estate"
  ]
  "technology": [
    "javascript"
  ],
  "work_email_available": ""
}

Expected Response

{
  "results": [
    {
      "id": "V1-SYYsBFoATWK64o2X9",
      "full_name": "dale kirkwood",
      "location": null,
      "current_job": {
        "title": "founder",
        "company": "cerebria tech",
        "location": "bratislava, slovakia"
      },
      "education": [
        {
          "institution": "the open university",
          "degree": ""
        },
        {
          "institution": "tefl uk",
          "degree": "150 hour tefl masters course"
        },
        {
          "institution": "The Open University",
          "degree": ""
        },
        {
          "institution": "TEFL UK",
          "degree": "150 Hour TEFL Masters Course"
        }
      ],
      "technologies": [
        "Software as a Service (SaaS)",
        "Salesforce.com",
        "Sales Process",
        "Business Planning",
        "Account Management",
        "Sales Management",
        "Purchasing",
        "Building Materials",
        "Sales",
        "Key Account Management",
        "B2B",
        "Sales Operations",
        "Pricing",
        "Supplier Negotiation",
        "Product Development",
        "Business Strategy",
        "Direct Sales",
        "Contract Management",
        "Procurement",
        "Retail"
      ],
      "experience": [
        {
          "title": "customer service officer",
          "company": "Cerebria Tech",
          "location": "Bratislava, Slovakia",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Wavey Boats",
          "location": "Slovakia",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "NIVY Watch",
          "location": "Bratislava, Slovakia",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Resco.net☁",
          "location": "",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Armada Workshop",
          "location": "Bratislava",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Deanta Doors",
          "location": "UK",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Kirkwood Timber",
          "location": "Mildenhall",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Kirkwood Joinery",
          "location": "Mildenhall",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Ridgeons Ltd",
          "location": "",
          "start_date": null,
          "end_date": null
        },
        {
          "title": "customer service officer",
          "company": "Hi-Rel Group",
          "location": "Harleston, Norfolk",
          "start_date": null,
          "end_date": null
        }
      ],
      "linkedin_url": "https://www.linkedin.com/in/dalekirkwood/",
      "linkedin_id": null,
      "certifications": [
        {
          "name": "Investment Foundations",
          "authority": "CFA Institute"
        },
        {
          "name": "Investment Foundations Program",
          "authority": "CFA Institute"
        },
        {
          "name": "Resco Essentials for Salesforce",
          "authority": "Resco.net☁"
        },
        {
          "name": "Introduction to Future Contracts",
          "authority": "CME Group"
        },
        {
          "name": "Introduction to AWS IoT",
          "authority": "Amazon Web Services (AWS)"
        },
        {
          "name": "IoT First Class Cloud Citizen",
          "authority": "Amazon Web Services (AWS)"
        },
        {
          "name": "JavaScript",
          "authority": "SoloLearn"
        },
        {
          "name": "Certificate of Completion: C# Course",
          "authority": "SoloLearn"
        },
        {
          "name": "Certificate of Completion: HTML Fundamentals",
          "authority": "SoloLearn"
        },
        {
          "name": "Certificate of Completion: Java Course",
          "authority": "SoloLearn"
        },
        {
          "name": "Data Modeling",
          "authority": "Trailhead by Salesforce"
        },
        {
          "name": "Data Modeling",
          "authority": "Trailhead by Salesforce"
        },
        {
          "name": "IoT Basics",
          "authority": "Trailhead by Salesforce"
        },
        {
          "name": "Quick Start: Salesforce IoT",
          "authority": "Trailhead by Salesforce"
        },
        {
          "name": "Salesforce IoT",
          "authority": "Trailhead by Salesforce"
        }
      ],
      "industry": "consumer goods"
    }
  ],
  "result_count": 1
}

Last updated