Skip to content

Evaboot Public API (1.1.0)

Documentation for the Evaboot Public API

Authentication

All API requests must include an Authorization header with Bearer authentication:

Authorization: Bearer xyz

Replace xyz with your API key from the Evaboot dashboard.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.evaboot.com/_mock/schema
Production Server
https://api.evaboot.com

Operations for extracting profiles from LinkedIn

Operations

Operations for finding email addresses

Operations

Operations for verifying email addresses

Operations

Account and quota management operations

Operations
Operations

Generate a Sales Navigator search URL

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
Bodyrequired
descriptionstring[ 10 .. 2000 ] charactersrequired

Natural language description of target leads or accounts.

search_typestring
  • LEAD - LEAD
  • ACCOUNT - ACCOUNT
Default "LEAD"
Enum"LEAD""ACCOUNT"
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"
  }'

Responses

Search URL generated successfully

Bodyapplication/json
successbooleanrequired

Whether the request succeeded.

urlstring(uri)required

Generated LinkedIn Sales Navigator search URL.

filters_usedobjectrequired

Human-readable summary of the filters the LLM chose.

filters_used.​property name*anyadditional property
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": [] } }