Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@jlalmes jlalmes released this 28 Nov 14:21
· 1 commit to main since this release

getinbox v1.0.0 πŸš€

We're excited to announce the first stable release of getinbox, a type-safe Node.js & TypeScript wrapper for the Getinbox API.

Features

Email Finder ✨

  • Find anyone's professional email address with 99% accuracy
  • Advanced pattern matching and verification
  • Automatic name formatting and cleaning (handles titles, suffixes, emojis)
  • Real-time verification of found emails
  • Company name or domain support (domain recommended for better accuracy)
const { email } = await getinbox.emails.find({
  name: 'Elon Musk',
  company: 'spacex.com'
});

Email Verifier βœ…

  • Validate email deliverability without sending test emails
  • Comprehensive email validation:
    • Syntax checking
    • Domain validation
    • Mailbox existence verification
    • Disposable email detection
    • Catch-all domain identification
  • Helps maintain sender reputation by preventing bounces
const { isValid } = await getinbox.emails.verify({
  email: '[email protected]'
});

Developer Experience

  • Full TypeScript support with detailed type definitions
  • Environment variable support for API key configuration
  • Comprehensive error handling
  • Lightweight bundle size (< 10KB)
  • Node.js 14+ support

Getting Started

# npm
npm install getinbox

# yarn
yarn add getinbox

# pnpm
pnpm add getinbox

Documentation

For full documentation and examples, visit our README.

Support

Need help? Have questions? Email us at [email protected]