Description
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 ~90 operational fields including:
- Operating status —
active,slow,inactiveplus DNS + ATS confidence - Hiring signals —
totaljobs,freshjobs30d,hiringactively,ghostjobrate,ats_provider - Infrastructure —
cdnenterprise,wafactive,ttfbfast,hstsactive,securityposturemature - Email security —
dmarcenforcing,emailproviderenterprise,emailsecurity_gateway - Engineering —
shippingactively,haschangelog,hasstatuspage,npmhighvelocity,appstorepresence - Sales & marketing —
isspendingonads,hastagmanager,internationalpresence,hreflang_markets - Legal & compliance —
hassoc2,hashipaa,hascomplianceprogram,hastrustcenter,h1bfiler,warnnotices - Finance —
billingmodel,haspricingpage,hasbanking_api - SSO & telecom —
hasenterprisesso,hasenterpriseuc,has_conferencing - M&A & funding —
possibleacquisition,recentfunding,secpublicfiler,gov_contractor
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 — every field shown is verified against the live response)
{
"domain": "stripe.com",
"company_name": "Stripe",
"operating_status": "active",
"ats_provider": "greenhouse",
"company_size": "enterprise",
"companytype": "saasproduct",
"total_jobs": 285,
"freshjobs30d": 47,
"hiring_actively": true,
"confidence": "high",
"quality_score": 78,
"hiring_verdict": "Healthy",
"itinfrastructurescore": 88,
"itinfrastructuretier": "Enterprise",
"engineeringproductscore": 72,
"engineeringproducttier": "Growth",
"hrhiringscore": 65,
"hrhiringtier": "Growth",
"cdn_enterprise": true,
"waf_active": true,
"dmarc_enforcing": true,
"hasenterprisesso": true,
"hascomplianceprogram": true,
"isspendingon_ads": true,
"shipping_actively": true,
"billingmodel": "saaspayments",
"possible_acquisition": false,
"recent_funding": true,
"saasstackpremium": true,
"data_freshness": "cached",
"credits_consumed": 2,
"billed": true
}
See the full response schema at thesubspace.io/docs/api.
Example workflows
Ready-to-import templates live in workflows/:
hiringactively == true AND totaljobs >= 5. Drop in Clay / Apollo / Sheets list sources.More on the way:
ghostjobrate > 60operating_status changeTemplates also published on n8n.io/workflows — search “Subspace”.
Rate limits
60 requests / minute during beta. Contact dev@thesubspace.io if you need higher throughput.