API Catalog URL / Domain APIs

URL / Domain APIs

URL safety, shortening & metadata

URL and domain intelligence APIs. Check URL safety, shorten links, extract metadata, and verify domain ownership.

URL Safety Check

Popular

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 }
Malware Phishing SSL Check

URL Shortener

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://..." }
Custom Aliases Analytics Branded

URL Metadata

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" }
Open Graph Twitter Cards Link Preview

Website Screenshot

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 }
Full Page Custom Size PDF Export

Domain Verification

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..." }
DNS TXT Meta Tag File Upload

Ready to use URL APIs?

Get your API key and start analyzing URLs in minutes.