
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
getinbox is maintained by Getinbox - simple, fast and free online email finder tools.npm install getinbox
import { Getinbox } from 'getinbox';
// Initialize the client
const getinbox = new Getinbox({
apiKey: 'your_api_key', // or set GETINBOX_API_KEY env variable
});
// Find an email address
const { email } = await getinbox.emails.find({
name: 'Elon Musk',
company: 'spacex.com', // Using domain instead of company name provides better accuracy
});
// Verify an email address
const { isValid } = await getinbox.emails.verify({
email: 'elon@spacex.com',
});
// Check if email is disposable (temporary)
const { isDisposable } = await getinbox.emails.disposable({
email: 'test@temp-mail.org',
});
Sign up for a free API key at 👉 getinbox.co/dashboard/api-key.
You can provide your API key in two ways:
1. Pass it when initializing the client:
const getinbox = new Getinbox({ apiKey: 'your_api_key' });
2. Set it as an environment variable:
export GETINBOX_API_KEY=your_api_key
const getinbox = new Getinbox(); // Will use GETINBOX_API_KEY env variable
Find someone's email address using their name and company information:
const response = await getinbox.emails.find({
name: 'John Doe', // Full name of the person
company: 'acme.com', // Company domain (preferred) or name
});
console.log(response.email); // => 'john.doe@acme.com'
Verify if an email address exists and is deliverable:
const response = await getinbox.emails.verify({
email: 'john.doe@acme.com',
});
console.log(response.isValid); // => true/false
Check if an email address is using a disposable or temporary email service:
const response = await getinbox.emails.disposable({
email: 'john.doe@temp-mail.org',
});
console.log(response.isDisposable); // => true/false
The SDK throws descriptive errors for invalid API keys, failed requests, and API errors:
try {
const response = await getinbox.emails.find({
name: 'John Doe',
company: 'acme.com',
});
} catch (error) {
console.error('Error finding email:', error.message);
}
The SDK is written in TypeScript and provides comprehensive type definitions:
import {
GetinboxOptions,
FindEmailOptions,
VerifyEmailOptions,
CheckDisposableOptions,
} from 'getinbox';
// All options are fully typed
const options: FindEmailOptions = {
name: 'John Doe',
company: 'acme.com',
};
| Property | Type | Description | Required |
|---|---|---|---|
apiKey | string | Your Getinbox API key | false (if set via env var) |
| Property | Type | Description | Required |
|---|---|---|---|
name | string | Full name of the person | true |
company | string | Company domain or name | true |
| Property | Type | Description | Required |
|---|---|---|---|
email | string | Email address to verify | true |
| Property | Type | Description | Required |
|---|---|---|---|
email | string | Email address to check if disposable | true |
Distributed under the MIT License. See LICENSE for more information.
If you need support please contact us at 👉 support@getinbox.co
FAQs
Find and verify email addresses
The npm package getinbox receives a total of 12 weekly downloads. As such, getinbox popularity was classified as not popular.
We found that getinbox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.