A Dead-Simple URL Shortener API


I recently whipped up a tiny side project: senb.ee — a no-fuss URL shortener with a simple API. No dashboard, no analytics, no tracking. Just clean links and an endpoint that works.

Right now it’s built for internal use at Senbee, but if you want to play with it or integrate it into something, I’m happy to share an API key for testing.

POST https://senb.ee/
Headers:
  Content-Type: application/json
  X-API-Key: YOUR_API_KEY

Body:
{ "url": "https://example.com" }

Returns something like:

{ "short_url": "https://senb.ee/S3j8Mn" }
DELETE https://senb.ee/
Headers:
  Content-Type: application/json
  X-API-Key: YOUR_API_KEY

Body:
{ "short_code": "S3j8Mn" }

Returns something like:

{ "success": "Shortened URL deleted" }

That’s it. If you’re into tiny tools or just need a clean way to shorten links, give me a shout and I’ll hook you up with a key.