0xff.tf
A tiny, serverless URL shortener built on Cloudflare Workers and Cloudflare Workers KV.
An example link might look like this:
https://0xff.tf/about.
Not for public use, requires authentication.
Shorten URL
$ curl -X POST -H "Authorization: $SECRET_KEY" -H "URL: https://example.com" https://0xff.tf
Custom short URL
$ curl -X PUT -H "Authorization: $SECRET_KEY" -H "URL: https://example.com" https://0xff.tf/example
Shorten URL with expiration (TTL in seconds, minimum 60)
$ curl -X POST -H "Authorization: $SECRET_KEY" -H "URL: https://example.com" -H "TTL: 86400" https://0xff.tf
Update URL
$ curl -X PATCH -H "Authorization: $SECRET_KEY" -H "URL: https://new-example.com" https://0xff.tf/example
Delete URL
$ curl -X DELETE -H "Authorization: $SECRET_KEY" https://0xff.tf/example
List all URLs
$ curl -X GET -H "Authorization: $SECRET_KEY" https://0xff.tf
Preview URL (no redirect)
$ curl https://0xff.tf/example?preview
QR code
$ curl https://0xff.tf/example.qr
Contact
root [at] 0xff.tf