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

@indiciaosint/cli

v0.11.0

Published

Indicia CLI

Downloads

1,499

Readme

Indicia CLI

A command-line interface for Indicia.

Installation

npm install -g @indiciaosint/cli
# or
pnpm add -g @indiciaosint/cli

Configuration

Sign in (recommended)

indicia login

This starts a device-code flow: the CLI prints a link (and tries to open your browser). Approve the request at indicia.app/device, and the CLI stores a token in ~/.config/indicia/credentials.json.

Use the same web authorization-code flow with a localhost callback:

indicia login --browser

Sign out with indicia logout.

API key

For CI and scripts, set an API key instead. It overrides a saved login:

export INDICIA_API_KEY="your-api-key"

Create a key at indicia.app/dashboard/account.

Optional environment variables:

export INDICIA_API_URL="https://api.indicia.app"
export INDICIA_AUTH_URL="https://indicia.app"
export INDICIA_CONFIG_DIR="$HOME/.config/indicia"

Usage

Get account info

indicia info

List available searches

indicia list

Run a search

indicia search socials/github octocat
indicia search infrastructure/ipinfo 1.1.1.1
indicia search intelligence/email [email protected]

Multi-property searches

Searches that need more than one property expose each field as a flag:

indicia search intelligence/person --name "John Doe" --state CA
indicia search intelligence/address --address1 "123 Main St" --city "New York" --state NY --zip 10001
indicia search tools/crypto --address 0xdAC17F958D2ee523a2206206994597C13D831ec7 --network ethereum
indicia search tools/intelx --storage-id <id> --bucket leaks.public
indicia search tools/virustotal.download --id <file-id>

The intelligence/person and intelligence/address endpoints expect US state abbreviations (e.g. MD, NY, CA).

Arrays and nested objects in flags

Some endpoints require arrays or objects. --param accepts JSON literals, so you can pass them without writing a full --body:

# Hudson Rock domain lookup
indicia search intelligence/hudsonrock bcps.org --type domain

# Web databases password search across multiple services
indicia search intelligence/web-dbs Kennygocrazyyy \
  --param services='["cloudsint","intelligencex.identityportal","leakcheck","snusbase"]' \
  --param leakCheckType=password \
  --param snusbaseType=password

For fields without a dedicated flag, or for advanced use, pass a raw JSON body:

indicia search tools/crypto --body '{"address":"0xdAC17F958D2ee523a2206206994597C13D831ec7","network":"ethereum"}'

Media uploads

Image-based searches accept a file path for the --media flag. The CLI reads the file and sends it as multipart/form-data:

indicia search intelligence/facial --media ./suspect.jpg
indicia search intelligence/geolocation --media ./photo.jpg --location-hint "NYC" --model enhanced

Cost confirmation

By default indicia search shows the credit cost and asks for confirmation before running. To skip the prompt, pass --yes:

indicia search socials/github octocat --yes

Non-interactive environments (for example, CI) print the cost and continue without prompting.

JSON output and file output

indicia search socials/github octocat --json
indicia search infrastructure/ipinfo 1.1.1.1 --output result.json

Streaming searches

Searches that return Server-Sent Events are streamed to stderr as progress updates and the final result is written to stdout:

indicia search socials/github octocat --json --no-stream-progress

Exit codes

| Code | Meaning | |------|------------------| | 0 | Success | | 1 | General error | | 2 | Invalid usage | | 3 | API error | | 4 | Configuration error (not authenticated) |

Releasing

This package is published to npm as @indiciaosint/cli.

pnpm version [patch|minor|major]
git push --follow-tags

The GitHub Actions release.yml workflow publishes automatically when a v* tag is pushed.