npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@paulelliot/findymail-cli

v0.1.1

Published

Unofficial agent-friendly CLI for the Findymail API

Readme

findymail-cli

Independent, unofficial CLI for the Findymail API. It is not affiliated with, endorsed by, or maintained by Findymail.

Agent-friendly CLI for the Findymail API.

It wraps the confirmed Findymail endpoints behind a non-interactive JSON-first shell interface so coding agents can call it reliably.

Features

  • non-interactive command surface
  • JSON in, JSON out
  • structured JSON errors on stderr
  • bearer auth from FINDYMAIL_API_KEY
  • optional FINDYMAIL_BASE_URL override for local testing
  • optional FINDYMAIL_TIMEOUT_MS override for HTTP timeout control
  • bounded --wait support for Intellimatch polling

Install

Requires Node 20 or newer.

npm install -g @paulelliot/findymail-cli

Or install it locally in a project and run it with npx:

npm install @paulelliot/findymail-cli
npx findymail --help

For local development:

pnpm install
pnpm build
pnpm dev -- --help

Auth

export FINDYMAIL_API_KEY=your_api_key

For tests or alternate environments:

export FINDYMAIL_BASE_URL=http://127.0.0.1:3000
export FINDYMAIL_TIMEOUT_MS=30000

Commands

Verify

findymail verify --json '{"email":"[email protected]"}'
cat payload.json | findymail verify --stdin

--stdin is pipe-only. The CLI refuses to read interactive terminal input.

Search

findymail search business-profile --json '{"linkedin_url":"https://linkedin.com/in/ada"}'
findymail search name --json '{"name":"Ada Lovelace","domain":"example.com"}'
findymail search domain --json '{"domain":"example.com","roles":["CEO"]}'
findymail search company --json '{"domain":"example.com"}'
findymail search employees --json '{"website":"example.com","job_titles":["CEO"],"count":1}'
findymail search reverse-email --json '{"email":"[email protected]","with_profile":true}'
findymail search phone --json '{"linkedin_url":"https://linkedin.com/in/ada"}'

Lists And Contacts

findymail lists get
findymail lists create --json '{"name":"VIPs"}'
findymail lists delete --id 42
findymail contacts get --id 0

Intellimatch

findymail intellimatch search --json '{"query":"SaaS companies in US"}'
findymail intellimatch status --hash job-123
findymail intellimatch search --json '{"query":"SaaS companies in US"}' --wait --poll-interval 1000 --max-wait 30000

Output Contract

Successful commands print raw API JSON to stdout.

Errors print structured JSON to stderr:

{
  "ok": false,
  "error": {
    "type": "usage",
    "message": "Provide exactly one of --json, --input, or --stdin"
  }
}

Validation

pnpm test
pnpm build