Getting Started

Set up your account and make your first API call in minutes.

1. Create an Account

Sign up for a free Enrich Engine account to get started. You'll receive free credits to test the API.

Create free account

2. Authentication

Enrich Engine uses two authentication methods:

  • Session-based auth - For the dashboard and web app. Cookies are automatically managed.
  • API Key auth - For external integrations. Create an API key in Settings > API Keys.

For external API access, include your API key in the request header:

curl -X GET "https://api.enrichengine.io/api/external/lists" \
  -H "X-API-Key: ee_live_your_api_key"

3. Make Your First Request

Search for people by role and company using the Search API:

Search Requestbash
curl -X POST "https://api.enrichengine.io/api/search/people" \
  -H "Content-Type: application/json" \
  -H "Cookie: your_session_cookie" \
  -d '{
    "role": "VP of Sales",
    "company": "Anthropic"
  }'

Response:

Responsejson
{
  "results": [
    {
      "linkedinUrl": "https://linkedin.com/in/johndoe",
      "firstName": "John",
      "lastName": "Doe",
      "title": "John Doe - VP of Sales at Anthropic | LinkedIn",
      "company": "Anthropic"
    }
  ],
  "total": 5,
  "page": 1,
  "limit": 20,
  "hasMore": false
}