# Evaboot API Documentation

The Evaboot API is a JSON REST API that
lets you find email addresses and prospect data programmatically.

## Quick Start

Need an API Token?
Get your API token from the Evaboot dashboard under **Integrations → [API](https://app.evaboot.com/?page=api&int=api)**.

### Authentication

All API requests must include an **Authorization** header with your API token:


```bash
curl -H "Authorization: Bearer your_api_token_here" \
     https://api.evaboot.com/v1/email-finder/
```

### Basic Example: Email Finder

Here's how to create an email finding job for a single prospect:


```bash
curl -X POST \
  -H "Authorization: Bearer your_api_token_here" \
  -H "Content-Type: application/json" \
  -d '{
    "prospects": [
      {
        "first_name": "John",
        "last_name": "Doe",
        "company_name": "Example Corp",
        "company_domain": "example.com"
      }
    ]
  }' \
  https://api.evaboot.com/v1/email-finder/
```

## Features

Email Finding and Verification
Find professional email addresses for prospects and validate that they won't bounce.

Bulk Prospect Enrichment
Process multiple prospects in a single request.

Sales Navigator Extraction
Extract prospects from Sales Navigator lists and searches.

Webhook Support
Get notified when jobs complete.

## Support

- [Help Center](https://intercom.help/evaboot/)
- [API Reference](/schema)
- [YouTube](https://www.youtube.com/@JBEvaboot)