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

n8n-nodes-subspace

v0.1.1

Published

n8n community node for Subspace — operational company intelligence from DNS, HTTP, and ATS forensics. 88+ fields per domain with zero LinkedIn dependency.

Readme

n8n-nodes-subspace

Community n8n node for Subspace — operational company intelligence from DNS, HTTP, and ATS forensics. One API call returns 88+ verified facts per company domain with zero LinkedIn dependency.

What you get

For any company domain, Subspace returns fields including:

  • Operating status — active, inactive, acquired, hiring paused
  • Hiring signals — ghost job rate, fresh jobs, total jobs, ATS provider, hiring verdict
  • 8 cost-center scores (0–100) — IT infrastructure, engineering & product, sales & marketing, HR & hiring, legal & compliance, finance & RevOps, telecom & remote, corporate development
  • Enterprise stack booleans — enterprise CDN, WAF, enterprise SSO (Okta/Azure), DMARC enforcement, compliance program (SOC 2 / ISO 27001), enterprise UC (Teams / Zoom Phone), ad spend detected
  • Revenue & M&A signals — billing model, recent funding, possible acquisition, SEC filer status
  • Overall healthquality_score 0–100, hiring_verdict

Every field is derived from public, deterministic sources: DNS records, HTTP headers, SSL certificate transparency, government filings (SEC, H-1B, WARN, patents), Common Crawl, and ATS API responses. No LinkedIn scraping, no AI hallucination.

Install

On n8n Cloud (verified install)

Pending n8n Creator Portal verification. Once verified, install directly from the Nodes panel in your n8n Cloud workflow editor — search "Subspace" and click install.

On self-hosted n8n (manual install)

  1. Go to Settings → Community Nodes in your n8n instance
  2. Enter the package name: n8n-nodes-subspace
  3. Click install

Or via npm:

npm install n8n-nodes-subspace

Get an API key

Subspace is in open beta — all features are free. Generate an API key at thesubspace.io/settings. No credit card required.

Credentials

Configure a Subspace API credential in n8n with your API key. The key is sent as the x-api-key header on every request.

The credential test hits GET /api/v1/enrich?domain=stripe.com to validate the key is live.

Actions

Company → Enrich by Domain

Returns 88+ operational signals for a company domain.

Input

  • Domain (string, required) — apex domain (e.g. stripe.com). Avoid www. or subdomains.

Output (excerpt)

{
  "domain": "stripe.com",
  "company_name": "Stripe",
  "operating_status": "active",
  "ats_provider": "greenhouse",
  "company_size": "enterprise",
  "hiring_actively": true,
  "total_jobs": 285,
  "quality_score": 82,
  "hiring_verdict": "Healthy",
  "it_infrastructure_score": 94,
  "it_infrastructure_tier": "Enterprise",
  "engineering_product_score": 78,
  "hr_hiring_score": 65,
  "cdn_enterprise": true,
  "waf_active": true,
  "dmarc_enforcing": true,
  "has_enterprise_sso": true,
  "is_spending_on_ads": true,
  "has_compliance_program": true,
  "billing_model": "saas_payments",
  "possible_acquisition": false,
  "recent_funding": true
}

See the full response schema at thesubspace.io/docs/api.

Example workflows

  • Enrich Clay exports — filter lead lists by quality_score >= 60 before pushing to outbound
  • HubSpot lifecycle sync — trigger on new company, enrich with Subspace, write scores to contact properties
  • Apollo + Subspace — complement firmographic enrichment with operational signals; skip companies with ghost_job_rate > 60
  • Watchlist distress alerts — daily re-check of CRM accounts, Slack alert on hiring_verdict change

Published templates coming to n8n.io/workflows — search "Subspace".

Rate limits

60 requests / minute during beta. Contact [email protected] if you need higher throughput.

Support

License

MIT