Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encrata.com/llms.txt

Use this file to discover all available pages before exploring further.

Installation

Install globally via npm:
npm install -g encrata-cli
Or download the binary directly from GitHub Releases.
curl -sL https://github.com/Encratahq/cli/releases/download/v0.1.0/encrata_0.1.0_darwin_arm64.tar.gz | tar -xz
sudo mv encrata /usr/local/bin/

Configuration

Set your API key:
encrata config set api_key YOUR_API_KEY
Or create ~/.encrata/config.yaml manually:
api_key: YOUR_API_KEY
base_url: https://api.encrata.com
output: table

Commands

Email Lookup

encrata email satya@microsoft.com

Phone Lookup

encrata phone "+14155552671"
encrata company microsoft
encrata domain microsoft.com

IP Lookup

encrata ip 8.8.8.8

Google Dorking

encrata google "site:example.com filetype:pdf"
encrata darkweb "example@email.com"

Output Formats

By default, results display as a formatted table. Switch to JSON:
encrata email satya@microsoft.com --output json
Or set it globally:
encrata config set output json

Source Code

The CLI is open source: github.com/Encratahq/cli