Skip to main content
Unlike the Enrich API, the Search API is synchronous. This means that when you make a search request, the API responds immediately with the matching contacts or companies, based on the filters you provide in the request body. There are two main endpoints:
  • /people/search for searching contacts
  • /company/search for searching companies
Both endpoints accept a wide range of filters (string filters, ranges, exact matches, etc.) so you can build highly targeted searches. Pagination is handled through the offset and limit parameters, which you can use to loop through larger result sets. All requests require authentication via a Bearer token in the Authorization header. If you haven’t set that up yet, check the Authentication section first. Once you’re ready, pick the relevant endpoint, define your filters, and send a POST request to start searching.

Ready to use the API?