Getting Started

Welcome to WorkersCanDo! We're building 100 micro-tools in 100 days, all powered by Cloudflare Workers.

Direct API Access

All tools run on Cloudflare Workers and can be accessed directly via their worker URLs for the fastest possible response times:

# URL Metadata API
https://url-metadata-api.brogee9o9.workers.dev/api/metadata?url={your-url}

# OG Image Generator  
https://og-image-generator.brogee9o9.workers.dev/api/og?title={your-title}

# URL Shortener
https://urlshortener.brogee9o9.workers.dev/api/shorten

💡 All APIs are free, require no authentication, and have CORS enabled for browser use.

Quick Start Examples

// Shorten a URL
fetch('https://urlshortener.brogee9o9.workers.dev/api/shorten', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ url: 'https://github.com' })
}).then(r => r.json()).then(console.log);

// Extract URL metadata
fetch('https://url-metadata-api.brogee9o9.workers.dev/api/metadata?url=https://github.com')
  .then(r => r.json()).then(console.log);

// Generate OG image (returns SVG)
// Just use as an image src:
<img src="https://og-image-generator.brogee9o9.workers.dev/api/og?title=Hello" />