type="keyword"
to do an Exa keyword search because we want our results to have the exact name in the result. We also specify include_domains=['linkedin.com']
to restrict the results to LinkedIn profiles.
search_and_contents
.
We can also exclude some misleading websites with exclude_domains=['linkedin.com', 'github.com', 'twitter.com']
. Whatever’s left has a good chance of being their personal site!
enrich_row
that uses all the functions we defined to learn more about a candidate,and sort by score to get the most promising candidates.
find_similar
,allows us to search a URL and find semantically similar URLs. For example, I could search ‘hinge.co’ and it’ll return the homepages of similar dating apps. In this case, we’ll pass in the homepages of our top candidates to find similar profiles.
find_similar(new_candidate_homepage)
searches with the new candidates as well — helping you build an infinite list!
Hope this tutorial was helpful and don’t forget, you can get started with Exa for free :)