Skip to main content
POST
/
api
/
v2
/
supersearch-enrichment
/
preview-leads-from-supersearch
Preview leads from supersearch
curl --request POST \
  --url https://api.instantly.ai/api/v2/supersearch-enrichment/preview-leads-from-supersearch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search_filters": {
    "locations": [
      {
        "place_id": "ChIJN1t_t3uEmsRUso9K6W47H4",
        "label": "San Francisco, CA, USA"
      }
    ],
    "department": [
      "Engineering"
    ],
    "level": [
      "Entry level"
    ],
    "employeeCount": [
      "0 - 25"
    ],
    "revenue": [
      "$1 - 10M"
    ],
    "news": [
      "launches"
    ],
    "title": {
      "include": [
        "CEO"
      ],
      "exclude": [
        "VP"
      ]
    },
    "name": [
      "John Doe"
    ],
    "company_name": {
      "include": [
        "Google"
      ],
      "exclude": [
        "Amazon"
      ]
    },
    "look_alike": "google.com",
    "keyword_filter": {
      "exclude": "sales",
      "include": "marketing"
    },
    "industry": {
      "exclude": [
        "Agriculture & Mining"
      ],
      "include": [
        "Agriculture & Mining"
      ]
    },
    "subIndustry": {
      "exclude": [
        "Animation"
      ],
      "include": [
        "Animation"
      ]
    },
    "domains": [
      "google.com"
    ],
    "funding_type": [
      "angel"
    ],
    "skip_owned_leads": true,
    "show_one_lead_per_company": true,
    "location_mode": "contact"
  }
}
'
{
  "number_of_leads": 100,
  "number_of_redacted_results": 0,
  "leads": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "fullName": "John Doe",
      "jobTitle": "Software Engineer",
      "location": "San Francisco, California, United States",
      "linkedIn": "linkedin.com/in/john-doe",
      "companyName": "Acme Corp",
      "companyLogo": "https://example.com/logo.png",
      "companyId": "123456"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
search_filters
object
required

Search filters to find leads.

skip_owned_leads
boolean

Skip leads that belong to the current workspace

Example:

true

show_one_lead_per_company
boolean

Return only one lead per company

Example:

true

Response

Default Response

number_of_leads
number

Number of leads found for this specific search. A value of 0 indicates that no leads match the criteria. Values greater than 1,000,000 are returned as 1,000,000.

Example:

100

number_of_redacted_results
number

Number of results that were redacted/hidden (for trial users).

Example:

0

leads
object[]

The leads matching the search criteria