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

@clera/instantly-cli

v1.0.0

Published

A modern CLI for managing Instantly.ai email campaigns

Downloads

111

Readme

@clera/instantly-cli

A modern CLI for managing Instantly.ai email campaigns, accounts, leads, and more.

Installation

npm install -g @clera/instantly-cli

Configuration

Set your Instantly API key as an environment variable:

export INSTANTLY_API_KEY=your_api_key_here

Or create a .env file in your working directory:

INSTANTLY_API_KEY=your_api_key_here

Commands

Campaigns

instantly-cli campaigns list              # List all campaigns
instantly-cli campaigns get <id>          # Get campaign details
instantly-cli campaigns analytics         # Campaign analytics (all)
instantly-cli campaigns analytics -c <id> # Analytics for specific campaign
instantly-cli campaigns daily             # Daily analytics breakdown
instantly-cli campaigns pause <id>        # Pause a campaign
instantly-cli campaigns activate <id>     # Activate a campaign
instantly-cli campaigns delete <id>       # Delete a campaign

Accounts

instantly-cli accounts list               # List email accounts
instantly-cli accounts get <email>        # Get account details
instantly-cli accounts warmup -e <email>  # Warmup analytics

Leads

instantly-cli leads list                  # List all leads
instantly-cli leads search <query>        # Search by name or email
instantly-cli leads get <id>              # Get lead details
instantly-cli leads delete <id>           # Delete a lead

Emails

instantly-cli emails list                 # List emails
instantly-cli emails list --type received # Filter by type
instantly-cli emails list --unread        # Unread only
instantly-cli emails get <id>             # Get email details
instantly-cli emails unread               # Count unread emails
instantly-cli emails thread <id>          # View thread

Lead Lists

instantly-cli lists list                  # List all lead lists
instantly-cli lists create <name>         # Create a new list
instantly-cli lists delete <id>           # Delete a list

Lead Labels

instantly-cli labels list                 # List all labels
instantly-cli labels get <id>             # Get label details
instantly-cli labels create <name>        # Create a label
instantly-cli labels update <id>          # Update a label
instantly-cli labels delete <id>          # Delete a label

Custom Tags

instantly-cli tags list                   # List all tags
instantly-cli tags get <id>               # Get tag details
instantly-cli tags create <name>          # Create a tag
instantly-cli tags update <id>            # Update a tag
instantly-cli tags delete <id>            # Delete a tag
instantly-cli tags assign --tag <id> --resource <id>  # Assign tag

Blocklist

instantly-cli blocklist list              # List blocked emails/domains
instantly-cli blocklist add <value>       # Block an email or domain
instantly-cli blocklist bulk-add <values> # Block multiple entries
instantly-cli blocklist delete <id>       # Remove from blocklist
instantly-cli blocklist export            # Export as CSV

Email Verification

instantly-cli verify check <email>        # Check verification status
instantly-cli verify submit <email>       # Submit for verification

Webhooks

instantly-cli webhooks list               # List all webhooks
instantly-cli webhooks get <id>           # Get webhook details
instantly-cli webhooks create -u <url> -e <event>  # Create webhook
instantly-cli webhooks delete <id>        # Delete a webhook
instantly-cli webhooks test <id>          # Send test event
instantly-cli webhooks resume <id>        # Resume errored webhook
instantly-cli webhooks events             # List event types

Background Jobs

instantly-cli jobs list                   # List background jobs
instantly-cli jobs get <id>               # Get job details

Global Options

All list commands support:

  • --json — Output raw JSON
  • --force — Skip confirmation on destructive actions

License

MIT