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

Request

Retrieve information about the user's API usage quota: daily extraction limit, evaboot credits, sales navigator accounts available.

Security
BearerToken
curl -i -X GET \
  https://docs.evaboot.com/_mock/schema/v1/quota/ \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

User quota and credits information retrieved successfully

Bodyapplication/json
successbooleanrequired

Indicates if the request was successful

quotaobjectrequired

User quota information

quota.​daily_limitintegerrequired

Total daily extraction limit

quota.​used_todayintegerrequired

Number of extractions used today

quota.​remainingintegerrequired

Number of extractions remaining today

quota.​has_valid_salesnavbooleanrequired

Whether the user has at least one valid SalesNav account linked

quota.​creditsnumber(double)required

Available credits for API operations

quota.​salesnavsArray of objects(SalesNavInfo)required

List of SalesNav accounts associated with this user

quota.​salesnavs[].​idstringrequired

SalesNav account ID

quota.​salesnavs[].​statusstringrequired

Status of the SalesNav account (valid or invalid)

Response
application/json

Example of successful quota API response

{ "success": true, "quota": { "daily_limit": 2500, "used_today": 250, "remaining": 2250, "credits": 1500, "salesnavs": [] } }
Operations