Skip to content

WebsiteLaunches/homebrew-tap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Website Launches Homebrew Tap

Official Homebrew tap for Website Launches tools.

Installation

webl - Domain Intelligence CLI

brew tap websitelaunches/tap
brew install webl

Or install directly:

brew install websitelaunches/tap/webl

Usage

# Basic lookup
webl github.com

# Set API key for higher limits
webl config set-key YOUR_API_KEY

# Get historical data
webl github.com --history

# Batch processing
webl batch domains.txt --csv > results.csv

# JSON output
webl github.com --json

Features

webl provides comprehensive domain intelligence:

  • Domain Authority: 0-100 score based on Common Crawl data
  • Domain Age: Exact registration date and calculated age
  • Launch Detection: Public launch status and dates
  • Industry Classification: 3-level taxonomy (L1/L2/L3)
  • AI Descriptions: Generated site descriptions (Starter+ tiers)
  • Historical Data: Authority tracking over time (Growth+ tiers)
  • Batch Processing: Up to 50,000 domains per request

Free Tier

Get started immediately with 3,000 requests per month - no API key required! Perfect for:

  • Personal projects
  • Testing and evaluation
  • Small-scale enrichment

For higher limits, get an API key at: https://websitelaunches.com/api/

Pricing

  • Free: 3,000 requests/month (no signup)
  • Starter: 50,000 requests/month - $29
  • Growth: 250,000 requests/month - $99
  • Pro: 1,000,000 requests/month - $299
  • Business: 5,000,000 requests/month - $799

Documentation

Available Formulae

  • webl - Domain intelligence CLI tool

Examples

Check competitor authority

webl competitor1.com
webl competitor2.com --history

Enrich a lead list

webl batch leads.csv --csv > enriched_leads.csv

Get JSON for automation

webl stripe.com --json | jq '.data.domain_authority'

Python integration

import subprocess
import json

result = subprocess.run(['webl', 'github.com', '--json'],
                       capture_output=True, text=True)
data = json.loads(result.stdout)
print(f"Authority: {data['data']['domain_authority']}")

Use Cases

  • Lead Enrichment: Score and prioritize sales leads
  • SEO Analysis: Track competitor domain authority
  • Security Research: Analyze domain age and patterns
  • Market Research: Identify emerging startups
  • Data Science: Enrich datasets with domain intelligence

Support

License

The webl CLI tool is released under the MIT License.

About

Homebrew formulae for Website Launches tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages