@expose-team/cli
v1.1.0
Published
CLI for expose.team — search people and companies from your terminal or AI agent
Maintainers
Readme
@expose-team/cli
Command-line interface for expose.team — search people and companies from your terminal or AI agent.
Installation
npm install -g @expose-team/cliOr run without installing:
npx @expose-team/cli <query>Setup
Save your API key once:
expose config sk-xxxxxxxxOr set it as an environment variable:
export EXPOSE_API_KEY=sk-xxxxxxxxGet your API key at expose.team/platform/ai.
Usage
expose person <email|phone|url> Search for a person
expose company <domain> Search for a company
expose credits Show remaining credits
expose config <api-key> Save your API key locallyExamples
# Search by email
expose person [email protected]
# Search by phone number
expose person +14155551234
# Search by social media profile URL
expose person https://linkedin.com/in/johndoe
# Search for a company
expose company stripe.com
# Check remaining credits
expose credits
# Output raw JSON (useful for piping or AI agents)
expose person [email protected] --json
expose company stripe.com --json | jq '.data.name'
# Use a specific API key for a single request
expose person [email protected] --key sk-xxxxxxxxSample person output
$ expose person [email protected]
Name John Doe
Born 15/3/1988
Gender male
Email [email protected] (professional)
[email protected] (personal)
Phone +14155551234 (mobile)
Location san francisco, california, united states
URLs https://johndoe.dev
Languages English (native or bilingual)
─── Profiles ───
linkedin linkedin.com/in/johndoe
x x.com/johndoe 12,400 followers ✓ verified
github github.com/johndoe 843 followers
instagram instagram.com/johndoe 2,100 followers
─── Experience ───
• staff software engineer at Acme Corp (2021 – present)
• senior software engineer at Startup Inc (2018 – 2021)
Built the core data pipeline using Kafka and Flink.
• software engineer at Agency LLC (2015 – 2018)
─── Education ───
• b.s. computer science (2010 – 2014)
stanford university
─── Skills ───
python, go, kubernetes, distributed systems, postgresql, redis,
machine learning, docker, typescript, react
─── Interests ───
open source ★★★★ hiking ★★★ photography ★★
─── Repositories ───
• awesome-project ★248 ⑂31 go, typescript, shell
https://github.com/johndoe/awesome-project
─── Devices ───
desktop/apple/chrome, mobile/ios/safari
─── Vehicles ───
• tesla model 3 (2022)Options
| Flag | Description |
| -------------- | ----------------------------------------- |
| --json | Output raw JSON instead of formatted text |
| --key <key> | Use this API key for this request only |
| --help, -h | Show help |
Using with AI agents
The --json flag makes the CLI easy to use as a tool inside AI agent workflows. The agent can call the CLI directly and parse the structured output:
expose person [email protected] --json
expose company stripe.com --json
expose credits --jsonFor agents that support the agentskills.io standard, install the skill instead:
npx @expose-team/skills --api-key=sk-xxxxxxxxLinks
- expose.team — the intelligence platform
- @expose-team/skills — agent skill for Claude Code, ChatGPT, Cursor, and more
