Retrieve the details of a Search
Returns a specific search and its leads by ID.
curl --request GET \
--url https://app.prontohq.com/api/v2/searches/{id} \
--header 'X-API-KEY: <api-key>'
{
"search": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z"
},
"leads": [
{
"lead": {
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"gender": "<string>",
"most_probable_email": "<string>",
"phones": [
"<string>"
],
"title": "<string>",
"title_description": "<string>",
"summary": "<string>",
"linkedin_profile_url": "<string>",
"profile_image_url": "<string>",
"is_premium_linkedin": true,
"connection_degree": 123,
"status": "QUALIFIED",
"rejection_reason": [
"<string>"
],
"lk_headline": "<string>",
"sales_navigator_profile_url": "<string>",
"current_positions_count": 123,
"years_in_position": 123,
"months_in_position": 123,
"years_in_company": 123,
"months_in_company": 123,
"lk_connections_count": 123,
"is_open_profile_linkedin": true,
"is_open_to_work_linkedin": true,
"most_probable_email_status": "<string>"
},
"company": {
"name": "<string>",
"cleaned_name": "<string>",
"website": "<string>",
"location": "<string>",
"industry": "<string>",
"headquarters": "<string>",
"description": "<string>",
"linkedin_url": "<string>",
"employee_range": "<string>",
"company_profile_picture": "<string>"
}
}
]
}
Authorizations
Your API key
Path Parameters
ID of the search to retrieve
Query Parameters
Filter leads by their qualification status
qualified
, disqualified
Response
First name of the lead
Last name of the lead
Full name of the lead
Gender of the lead
Most probable email address
List of phone numbers
Job title of the lead
Description of the job title
Professional summary
LinkedIn profile URL
Profile image URL
Whether the lead has LinkedIn Premium
LinkedIn connection degree
Current status of the lead
QUALIFIED
, DISQUALIFIED
Reasons for rejection if disqualified
LinkedIn headline
Sales Navigator profile URL
Number of current positions
Years in current position
Months in current position
Years in current company
Months in current company
Number of LinkedIn connections
Whether the LinkedIn profile is open
Whether the lead is open to work
Status of the most probable email
Company name
Cleaned company name
Company website
Company location
Company industry
Company headquarters location
Company description
Company LinkedIn profile URL
Company employee count range
Company profile picture URL
curl --request GET \
--url https://app.prontohq.com/api/v2/searches/{id} \
--header 'X-API-KEY: <api-key>'
{
"search": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z"
},
"leads": [
{
"lead": {
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"gender": "<string>",
"most_probable_email": "<string>",
"phones": [
"<string>"
],
"title": "<string>",
"title_description": "<string>",
"summary": "<string>",
"linkedin_profile_url": "<string>",
"profile_image_url": "<string>",
"is_premium_linkedin": true,
"connection_degree": 123,
"status": "QUALIFIED",
"rejection_reason": [
"<string>"
],
"lk_headline": "<string>",
"sales_navigator_profile_url": "<string>",
"current_positions_count": 123,
"years_in_position": 123,
"months_in_position": 123,
"years_in_company": 123,
"months_in_company": 123,
"lk_connections_count": 123,
"is_open_profile_linkedin": true,
"is_open_to_work_linkedin": true,
"most_probable_email_status": "<string>"
},
"company": {
"name": "<string>",
"cleaned_name": "<string>",
"website": "<string>",
"location": "<string>",
"industry": "<string>",
"headquarters": "<string>",
"description": "<string>",
"linkedin_url": "<string>",
"employee_range": "<string>",
"company_profile_picture": "<string>"
}
}
]
}