๐Ÿš€ Free SEO audits โ€” no signup required

Instant SEO Audit
for Any Website

Get a comprehensive SEO report in seconds. Check meta tags, security headers, content quality, performance, and more. One URL โ†’ full actionable report.

3 free audits/day ยท No signup needed ยท Full report in ~5 seconds

Powerful Web Intelligence API

๐Ÿ”

SEO Audit

Complete on-page SEO analysis โ€” meta tags, headings, content quality, images, links, technical SEO. Get a score and actionable fixes.

POST /agent/api/seo-audit
{"url": "example.com"}
๐Ÿ“„

Content Extraction

Pull clean, readable content from any webpage. Strips ads, navigation, and clutter. Returns markdown or structured text.

POST /agent/api/extract
{"url": "...", "include_links": true}
๐Ÿ›ก๏ธ

Security Analysis

Check any site's HTTP security headers. Get a grade (A-F), see what's missing, get specific fix recommendations.

POST /agent/api/headers
{"url": "..."}
๐Ÿ“Š

Text Analysis

Readability scoring, keyword extraction, content statistics. Perfect for content optimization workflows.

POST /agent/api/analyze
{"text": "Your content..."}
๐Ÿ”—

Link Extraction

Extract and categorize all links from a page โ€” internal vs external, anchor text, domains. Find broken or orphaned links.

POST /agent/api/links
{"url": "..."}
๐ŸŒ

WHOIS Lookup

Domain registration info โ€” registrar, creation date, expiry, nameservers. Quick domain intelligence.

POST /agent/api/whois
{"domain": "example.com"}

Simple Pricing

Start free. Upgrade when you need more.

Free

$0/forever

Perfect for trying it out

  • 3 SEO audits per day
  • 20 API calls per day
  • All endpoints accessible
  • JSON API access
  • No signup required
Start Free Audit โ†’

Pay-per-Audit

$2/audit

No commitment needed

  • Buy audit credits
  • Credits never expire
  • All Pro features per audit
  • Perfect for agencies
  • Bulk discounts available

๐Ÿ’ณ Payment

Send USDC on Base network to:

0x0a2c6886ADaCEFE3Db501B9dDc393Bf54Fa86bf1

Network: Base (Ethereum L2) ยท Token: USDC
$19 = Pro monthly ยท $149 = Pro yearly ยท $2 = 1 audit credit ยท $10 = 6 credits

After sending, create an API key and notify us:
POST /agent/api/payment/notify with your tx_hash
Or message us on Telegram: @ohmygod_dev

API Documentation

Base URL: https://proxy.whuboy.com/agent ยท Auth: x-api-key: your_key (optional for free tier)

POST /api/seo-audit PREMIUM Comprehensive SEO audit

Returns a full SEO analysis with score, issues, and recommendations.

curl -X POST https://proxy.whuboy.com/agent/api/seo-audit \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'

# With API key:
curl -X POST https://proxy.whuboy.com/agent/api/seo-audit \
  -H "Content-Type: application/json" \
  -H "x-api-key: wp_your_key_here" \
  -d '{"url": "https://example.com"}'
POST /api/extract FREE Extract clean content from URL
curl -X POST https://proxy.whuboy.com/agent/api/extract \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com", "include_links": true}'
POST /api/headers FREE Security header analysis
curl -X POST https://proxy.whuboy.com/agent/api/headers \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'
POST /api/analyze FREE Text analysis & readability
curl -X POST https://proxy.whuboy.com/agent/api/analyze \
  -H "Content-Type: application/json" \
  -d '{"text": "Your content to analyze...", "top_keywords": 10}'
POST /api/links FREE Extract & categorize all links
curl -X POST https://proxy.whuboy.com/agent/api/links \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'
POST /api/key/create FREE Create an API key
curl -X POST https://proxy.whuboy.com/agent/api/key/create \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

# Response:
# {"key": "wp_abc123...", "tier": "free", "limits": {...}}
GET /api/key/info FREE Check your key usage
curl https://proxy.whuboy.com/agent/api/key/info \
  -H "x-api-key: wp_your_key_here"

Full Interactive Docs (Swagger) โ†’