Operations for extracting profiles from LinkedIn
- Extract a single Sales Navigator profile
Evaboot Public API (1.1.0)
Documentation for the Evaboot Public API
Request
Extract profiles from a LinkedIn Sales Navigator search or list URL.
Webhook Support: This endpoint supports webhooks. Include a webhook_url in your request to receive a POST notification when the extraction completes. The webhook will receive the same data as the GET detail endpoint.
Examples:
- https://www.linkedin.com/sales/search/people?query=(spellCorrectionEnabled%3Atrue%2CrecentSearchParam%3A(keywords%3ALinkedin)
- https://www.linkedin.com/sales/lists/people/729433720595773845
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Name for the extraction, used for identification and display
Optional URL to receive a webhook notification when extraction completes
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/extractions/url/
- Production Serverhttps://api.evaboot.com/v1/extractions/url/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/extractions/url/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"linkedin_url": "https://www.linkedin.com/sales/search/people?query=(spellCorrectionEnabled%3Atrue%2CrecentSearchParam%3A(keywords%3ACEOs))",
"search_name": "Tech Startup CEOs",
"webhook_url": "https://myapp.com/webhook/extraction",
"enrich_email": "matching"
}'Request
Extract comprehensive data from a single LinkedIn Sales Navigator profile or company page. This endpoint runs synchronously and returns the complete extracted data immediately.
Rich Data Extraction: Returns 70+ data fields including personal information, company details, professional background, skills, education, financial metrics, and enhanced insights. The exact fields depend on the profile type (LEAD vs ACCOUNT) and enrichment settings.
Key Data Categories:
- Profile Information: Names, headlines, summaries, contact details
- Professional Data: Current role, tenure, skills, education, certifications
- Company Intelligence: Revenue, growth metrics, employee counts, technologies, funding stage
- Social Insights: Connections, posting frequency, languages, volunteer work
- Contact Data: Email addresses and validation (when enrichment enabled)
Webhook Support: Include a webhook_url in your request to receive a POST notification when extraction completes.
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/extractions/single/
- Production Serverhttps://api.evaboot.com/v1/extractions/single/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/extractions/single/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"profile_id": "https://www.linkedin.com/sales/lead/ACwAAABcYZ8B...",
"enrich_email": "none"
}'Request
Extract specific profiles by providing LinkedIn Sales Navigator profile or company URLs/IDs. Unlike search extractions, this allows you to target exact individuals or companies.
Webhook Support: This endpoint supports webhooks. Include a webhook_url in your request to receive a POST notification when the extraction completes. The webhook will receive the same data as the GET detail endpoint.
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Name for the extraction, used for identification and display
Optional URL to receive a webhook notification when extraction completes
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/extractions/profiles/
- Production Serverhttps://api.evaboot.com/v1/extractions/profiles/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/extractions/profiles/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"profile_ids": [
"https://www.linkedin.com/sales/lead/ACwAAABcYZ8B...",
"https://www.linkedin.com/sales/lead/ACwAAABdYZ9C...",
"ACwAAABeYZ8D"
],
"search_name": "Target Executive Prospects",
"webhook_url": "https://myapp.com/webhook/extraction",
"enrich_email": "all"
}'- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/extractions/
- Production Serverhttps://api.evaboot.com/v1/extractions/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.evaboot.com/_mock/schema/v1/extractions/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'[ [ { … }, { … } ] ]
Request
Retrieve the complete results of a LinkedIn extraction with extensive prospect and company data.
Comprehensive Data Fields Available:
- Personal Information: Names, job titles, contact details, professional summaries
- LinkedIn Profile Data: URLs, connections, premium status, profile metrics
- Company Information: Name, domain, industry, employee counts, revenue ranges, growth metrics
- Professional Details: Job descriptions, tenure information, position counts, skills, education
- Enhanced Insights: Languages, volunteer experience, posting activity, technology stack
- Financial Data: Revenue estimates, funding stages, growth percentages over multiple time periods
- Contact Information: Email addresses and validation status (when email enrichment is enabled)
Dynamic Field Selection: The response fields automatically adjust based on your extraction type:
- LEAD extractions: Include personal fields like education, skills, and professional experience
- ACCOUNT extractions: Focus on company-specific data and exclude personal information
- Enriched extractions: Include verified email addresses and validation status
- Standard extractions: Provide core LinkedIn profile and company data
Fields are sourced from LinkedIn's Sales Navigator API and enhanced with additional data processing to provide the most comprehensive prospect intelligence available.
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/extractions/{id}/
- Production Serverhttps://api.evaboot.com/v1/extractions/{id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.evaboot.com/_mock/schema/v1/extractions/{id}/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "search_id": "ext-12345", "search_name": "Tech Startup CEOs", "status": "EXECUTED", "extraction_type": "search_url", "total_prospects": 2, "progress": 100, "created_at": "2023-01-01T12:00:00Z", "completed_at": "2023-01-01T12:05:00Z", "prospects": [ { … }, { … } ] }