Command Line
Query the BuiltWith API from your terminal. All 13 methods with flags for every parameter.
Installation
bash
# Via npm (global)
npm install -g builtwith-api
# Or run without installing
npx --package builtwith-api builtwith free example.com --api-key YOUR_KEYStandalone binaries are also available on the GitHub Releases page.
Authentication
Set your API key as an environment variable:
bash
export BUILTWITH_API_KEY=your-key-hereOr pass it with each command:
bash
builtwith free example.com --api-key your-key-hereCommands
free
Basic technology profile for a domain.
bash
builtwith free example.comdomain
Detailed technology profile with optional filters.
bash
builtwith domain example.com
builtwith domain example.com --onlyLiveTechnologies --hideAll
builtwith domain "example.com,other.com"| Flag | Description |
|---|---|
--hideAll | Hide description text and links |
--hideDescriptionAndLinks | Hide description and links only |
--onlyLiveTechnologies | Only return live technologies |
--noMetaData | Exclude metadata |
--noAttributeData | Exclude attribute data |
--noPII | Exclude personally identifiable information |
--firstDetectedRange | Filter by first detected date range |
--lastDetectedRange | Filter by last detected date range |
domainLive
Real-time technology scan.
bash
builtwith domainLive example.comlists
List domains using a technology.
bash
builtwith lists Shopify
builtwith lists React --since 2024-01-01 --includeMetaDatatrends
Technology adoption trends.
bash
builtwith trends jQuery
builtwith trends React --date 2024-06relationships
Find related domains via shared identifiers.
bash
builtwith relationships example.comkeywords
Get SEO keywords for a domain.
bash
builtwith keywords example.comtrust
Domain trust and verification score.
bash
builtwith trust example.com
builtwith trust example.com --words "shop,buy" --livecompanyToUrl
Find domains associated with a company.
bash
builtwith companyToUrl Google
builtwith companyToUrl Google --tld com --amount 5tags
Tracking and analytics tags.
bash
builtwith tags example.comrecommendations
Technology recommendations.
bash
builtwith recommendations example.comredirects
Redirect chains (inbound and outbound).
bash
builtwith redirects example.comproduct
Search e-commerce products.
bash
builtwith product "wireless headphones"Examples
Free lookup
bash
builtwith free google.comDomain with flags
bash
builtwith domain example.com \
--onlyLiveTechnologiesMulti-domain lookup
bash
builtwith domain "a.com,b.com"Technology lists
bash
builtwith lists Shopify \
--since 2024-01-01All Commands
| Command | Description |
|---|---|
free | Basic technology profile for a domain |
domain | Detailed technology profile with spend history |
domainLive | Real-time technology scan |
lists | List domains using a specific technology |
trust | Trust and verification score |
trends | Technology adoption trends |
keywords | Get keywords for domains |
relationships | Find related domains via shared identifiers |
companyToUrl | Find domains for a company name |
tags | Tracking and analytics tags |
recommendations | Technology recommendations |
redirects | Redirect chain history |
product | E-commerce product search |
Piping and scripting
bash
# Extract technology names with jq
builtwith free stripe.com | jq '.groups[].name'
# Save to file
builtwith domain example.com > profile.json
# Process multiple domains
for domain in stripe.com shopify.com vercel.com; do
builtwith free "$domain" > "${domain}.json"
doneHelp
bash
builtwith --help
builtwith domain --help
builtwith --version