Official Enrow Node.js and TypeScript SDK to find and verify emails and phone numbers with full type safety
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.
import Enrow from 'enrow';const enrow = new Enrow('YOUR_API_KEY');// Find an emailconst 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.