Operations for extracting profiles from LinkedIn
Evaboot Public API (1.1.0)
Documentation for the Evaboot Public API
Download OpenAPI description
Languages
Servers
Mock server
https://docs.evaboot.com/_mock/schema
Production Server
https://api.evaboot.com
Request
Generate a LinkedIn Sales Navigator search URL from a natural language description.
Your description is translated into structured Sales Navigator filters (industry, seniority, company size, region, etc.) and a valid URL is returned.
Costs no credits. Limited to 100 requests per day per user.
Supported filter types: INDUSTRY, COMPANY_HEADCOUNT, COMPANY_TYPE, SENIORITY_LEVEL, FUNCTION, REGION, COMPANY_HEADQUARTERS, CURRENT_TITLE, CURRENT_COMPANY, YEARS_AT_CURRENT_COMPANY, YEARS_IN_CURRENT_POSITION, ANNUAL_REVENUE.
Security
BearerToken
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Natural language description of target leads or accounts.
- Mock serverhttps://docs.evaboot.com/_mock/schema/v1/search-builder/
- Production Serverhttps://api.evaboot.com/v1/search-builder/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Find CTOs at SaaS companies
- Find law firms in London
curl -i -X POST \
https://docs.evaboot.com/_mock/schema/v1/search-builder/ \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"description": "CTOs and VPs of Engineering at SaaS companies in the US with 50-200 employees",
"search_type": "LEAD"
}'Response
application/json
{ "success": true, "url": "https://www.linkedin.com/sales/search/people?query=(filters%3AList((type%3ASENIORITY_LEVEL%2Cvalues%3AList((id%3A310%2Ctext%3ACXO%2CselectionType%3AINCLUDED)))))", "filters_used": { "SENIORITY_LEVEL": [ … ], "INDUSTRY": [ … ], "COMPANY_HEADCOUNT": [ … ], "REGION": [ … ] } }