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
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"}
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}
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": "..."}
Readability scoring, keyword extraction, content statistics. Perfect for content optimization workflows.
POST /agent/api/analyze
{"text": "Your content..."}
Extract and categorize all links from a page โ internal vs external, anchor text, domains. Find broken or orphaned links.
POST /agent/api/links
{"url": "..."}
Domain registration info โ registrar, creation date, expiry, nameservers. Quick domain intelligence.
POST /agent/api/whois
{"domain": "example.com"}
Start free. Upgrade when you need more.
Perfect for trying it out
Or $149/year (save $79)
No commitment needed
Send USDC on Base network to:
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
Base URL: https://proxy.whuboy.com/agent
ยท Auth: x-api-key: your_key (optional for free tier)
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"}'
curl -X POST https://proxy.whuboy.com/agent/api/extract \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "include_links": true}'
curl -X POST https://proxy.whuboy.com/agent/api/headers \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
curl -X POST https://proxy.whuboy.com/agent/api/analyze \
-H "Content-Type: application/json" \
-d '{"text": "Your content to analyze...", "top_keywords": 10}'
curl -X POST https://proxy.whuboy.com/agent/api/links \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
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": {...}}
curl https://proxy.whuboy.com/agent/api/key/info \
-H "x-api-key: wp_your_key_here"