
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
A lightweight Ruby wrapper around Hunter (formerly Email Hunter) API, providing direct access to email search, verification, and company insights.
Add this line to your application's Gemfile:
gem 'emailhunter'
Then execute:
$ bundle install
Or install it yourself with:
$ gem install emailhunter
require 'emailhunter'
email_hunter = EmailHunter.new('Your API Key')
Your API key can be generated in your Hunter dashboard.
Retrieve all email addresses associated with a given domain.
result = email_hunter.search('stripe.com')
result.fetch(:meta)
result.fetch(:webmail)
result.fetch(:emails)
result.fetch(:pattern)
result.fetch(:domain)
Check the deliverability of an email address.
result = email_hunter.verify('bonjour@firmapi.com')
result.fetch(:result)
result.fetch(:score)
result.fetch(:regexp)
result.fetch(:gibberish)
result.fetch(:disposable)
result.fetch(:mx_records)
result.fetch(:smtp_server)
result.fetch(:smtp_check)
result.fetch(:accept_all)
result.fetch(:sources)
result.fetch(:meta)
Guess the most likely email of a person using their first name, last name, and domain.
result = email_hunter.finder('gmail.com', 'Davide', 'Santangelo')
result.fetch(:email)
result.fetch(:score)
result.fetch(:sources)
result.fetch(:domain)
result.fetch(:meta)
Retrieve the number of email addresses associated with a domain (FREE API call).
result = email_hunter.count('gmail.com')
result.fetch(:data)
result.fetch(:meta)
Retrieve company details using a domain name.
result = email_hunter.company('stripe.com')
result.fetch(:name)
result.fetch(:industry)
result.fetch(:employees)
result.fetch(:country)
result.fetch(:meta)
Retrieve key individuals associated with a company based on a domain name.
result = email_hunter.people('stripe.com')
result.fetch(:employees)
result.fetch(:position)
result.fetch(:email)
result.fetch(:meta)
Retrieve details about your Hunter account.
result = email_hunter.account
{
"data": {
"first_name": "Davide",
"last_name": "Santangelo",
"email": "davide.santangelo@gmail.com",
"plan_name": "Free",
"plan_level": 0,
"reset_date": "2025-06-29",
"team_id": 349,
"calls": {
"used": 4,
"available": 50
}
}
}
The EmailHunter gem is released under the MIT License.
git checkout -b my-new-feature
)git commit -am 'Add new feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that emailhunter 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
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.