URL safety, shortening & metadata
URL and domain intelligence APIs. Check URL safety, shorten links, extract metadata, and verify domain ownership.
Check URLs for malware, phishing, and suspicious content. Protect users from malicious links.
POST /api/v1/url/safety
{ "url": "https://example.com" }
// Response
{ "safe": true,
"threats": [],
"categories": ["business"],
"ssl_valid": true,
"domain_age_days": 5000 }
Create short, branded links. Track clicks, referrers, and geographic data.
POST /api/v1/url/shorten
{ "url": "https://example.com/long-path",
"custom_alias": "mylink" }
// Response
{ "short_url": "https://wf.link/mylink",
"original_url": "https://...",
"analytics_url": "https://..." }
Extract Open Graph, Twitter cards, and meta tags from URLs. Generate link previews.
POST /api/v1/url/metadata
{ "url": "https://example.com/article" }
// Response
{ "title": "Article Title",
"description": "...",
"image": "https://...og-image.jpg",
"favicon": "https://...favicon.ico" }
Capture screenshots of any URL. Full page, viewport, or custom dimensions.
POST /api/v1/url/screenshot
{ "url": "https://example.com",
"width": 1280, "height": 800,
"full_page": false }
// Response
{ "screenshot_url": "https://...",
"format": "png",
"size_kb": 245 }
Verify domain ownership via DNS TXT record or meta tag. Essential for SaaS onboarding.
POST /api/v1/url/verify-domain
{ "domain": "example.com",
"verification_code": "wf_abc123" }
// Response
{ "verified": true,
"method": "dns_txt",
"verified_at": "2024-01-19T..." }
Get your API key and start analyzing URLs in minutes.