Searches
Retrieve the details of a Search
Returns a specific search and its leads by ID.
GET
/
searches
/
{id}
Copy
curl --request GET \
--url https://app.prontohq.com/api/v2/searches/{id} \
--header 'X-API-KEY: <api-key>'
Copy
{
"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
Available options:
qualified
, disqualified
Response
200
application/json
A search object with its leads
The response is of type object
.
Copy
curl --request GET \
--url https://app.prontohq.com/api/v2/searches/{id} \
--header 'X-API-KEY: <api-key>'
Copy
{
"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>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.