Documentation

Enrich Layer CLI

Command-line interface for the Enrich Layer API. Enrich profiles, search contacts, and manage API keys from your terminal.

The Enrich Layer CLI lets you query the API directly from your terminal. Look up profiles, search for contacts, export results, and manage API keys without writing any code.

Install

npm install -g enrichlayer-cli
bash

The package installs two binaries that point at the same script: el (short, default) and enrichlayer (full brand name). Use whichever you prefer.

Verify the installation:

el --version
# or, equivalent:
enrichlayer --version
bash

Authenticate

el login
bash

This opens your browser to authenticate. Your API key is stored locally at ~/.config/enrichlayer/credentials.json.

Alternatively, set the key via environment variable:

export ENRICHLAYER_API_KEY=your_key_here
bash

Quick examples

# Enrich a person profile
el profile https://linkedin.com/in/satyanadella

# Enrich a company
el company https://linkedin.com/company/microsoft

# Find a person by name and company
el profile lookup --name "Satya Nadella" --company microsoft.com

# Search for engineers at Google
el search person --company Google --title Engineer --limit 20

# Find a work email
el contact work-email https://linkedin.com/in/satyanadella

# Check your credit balance
el credits

# Discover recipes for common workflows (lead-gen, batch enrichment, …)
el how-to --list
bash

What's in this section

  • Getting Started — Install, authenticate, and make your first query
  • Commands — Full reference for all CLI commands
  • Configuration — Settings, output formats, and shell completions