v1

latestOpenAPI 3.0.12026-07-26131186.5 KB
Prospect

Prospect search

Find the number of prospects that match your search filters

post/api/prospects/search

Request body

sizeinteger

The number of results to return. Defaults to 0. Max is 30.

Example request

{
  "size": 10,
  "filters": {
    "first_name": [
      "John",
      "Jane"
    ],
    "last_name": [
      "Smith"
    ],
    "job_title": [
      {
        "v": "CEO"
      }
    ],
    "location": [
      {
        "v": "Toronto, Ontario, Canada"
      }
    ],
    "linkedin_slug": [
      "stephen-hakami-5babb21b0",
      "https://linkedin.com/in/stephen-hakami-5babb21b0"
    ],
    "job_company": [
      {
        "v": "Wiza",
        "s": "i"
      }
    ],
    "past_company": [
      {
        "v": "Wiza",
        "s": "i"
      }
    ],
    "company_location": [
      {
        "v": "Toronto, Ontario, Canada",
        "b": "city",
        "s": "e"
      }
    ],
    "company_industry": [
      {
        "v": "building materials"
      },
      {
        "v": "capital markets",
        "s": "e"
      }
    ],
    "technologies": [
      {
        "v": "amazon-web-services"
      },
      {
        "v": "salesforce",
        "s": "e"
      }
    ],
    "department_size": [
      "sales:10-50"
    ],
    "company_summary": [
      {
        "v": "cutting-edge"
      }
    ],
    "year_founded_start": "2020",
    "year_founded_end": "2024"
  }
}

Response

successful

Example response

{
  "status": {
    "code": 200
  },
  "data": {
    "total": 15,
    "profiles": [
      {
        "full_name": "Stephen Hakami",
        "linkedin_url": "linkedin.com/in/stephen-hakami-5babb21b0",
        "industry": "Computer Software",
        "job_title": "Founder, Chief Executive Officer",
        "job_company_name": "Wiza",
        "job_company_website": "wiza.co",
        "location_name": "Toronto, Ontario, Canada"
      }
    ]
  }
}