Programmatic access to
every new website

Query our database of millions of detected sites. Build monitoring tools, enrich your CRM, or track competitor launches — all via REST API.

Get Free API KeyView Endpoints ↓

Simple, transparent tiers

Free
$0/mo
3,000 req/mo
  • Basic site lookup
  • Today's launches feed
  • Category filter
  • IP-rate limited
  • Community support
Get Free Key
Hobbyist
$29/mo
50,000 req/mo
  • Everything in Free
  • 30-day history
  • Authority score data
  • Tech stack detection
  • Email support
Start Hobbyist
Most Popular
Pro
$99/mo
500,000 req/mo
  • Everything in Hobbyist
  • Full launch history
  • Bulk endpoints (1000/call)
  • Webhooks on new detections
  • Contact data (WHOIS)
  • Priority support
Start Pro
Enterprise
$299/mo
Unlimited
  • Everything in Pro
  • White-label data export
  • Dedicated rate limits
  • Custom filters & alerts
  • SLA guarantee
  • Slack support channel
Contact Sales

API Reference

Base URL: https://api.websitelaunches.com/v1

GET/api/v1/sites/todayReturns all sites detected in the last 24 hours, paginated.
GET/api/v1/sites/:domainFull data for a specific domain — score, tech, snapshot URL, metadata.
GET/api/v1/sites/searchFilter by category, country, score range, date range.
GET/api/v1/sites/categoriesList all categories with site counts.
POST/api/v1/sites/batchBulk lookup for up to 1,000 domains per call. Pro+ only.
GET/api/v1/sites/:domain/historyAuthority score history and snapshot timeline. Hobbyist+ only.
curl https://api.websitelaunches.com/v1/sites/today \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -G -d "category=SaaS" -d "limit=20"

# Response
{
  "sites": [
    {
      "domain": "trailpeak.io",
      "detected_at": "2026-03-18T14:22:00Z",
      "authority_score": 74,
      "category": "SaaS",
      "country": "US",
      "has_ssl": true,
      "tech_stack": ["Next.js", "Vercel"],
      "title": "TrailPeak — Route Planning for Trail Runners"
    }
    // ...
  ],
  "total": 4201,
  "page": 1
}