Skip to main content
The official Enrow SDK for Node.js and TypeScript wraps the Enrow API with typed methods for the Email Finder, Email Verifier, and Phone Finder endpoints. You authenticate the client once with your API key — see Authentication for how to retrieve it.
These SDKs are in early access and not yet published to package registries. Install from source via the GitHub repository linked below.

Installation

npm install github:EnrowAPI/enrow-js

GitHub

github.com/EnrowAPI/enrow-js

Quick Start

import Enrow from 'enrow';

const enrow = new Enrow('YOUR_API_KEY');

// Find an email
const search = await enrow.email.find({
  fullname: 'Dwight Schrute',
  companyDomain: 'dundermifflin.com'
});

console.log(search.id);
Refer to the GitHub repository for full documentation and examples. The client sends your API key in the x-api-key header on every request. Each search returns a id you can use to retrieve results from the Get Single Result endpoint, and each call consumes credits — see Credits & billing. For production usage, review the Rate limits and Error handling guides.

Next steps

Authentication

How to pass your API key in the x-api-key header.

Find an email

Search for a professional email address from a name and company.

Verify an email

Check whether an email address is valid and deliverable.

All SDKs

Browse Enrow’s official SDKs for every language.