Svoboda Shortener

Create short links with privacy in mind.

Usage

URLs never expire by default.

You can set a custom expiration time or number of uses.

Minimum alias length is 3 characters.

One-time use links are automatically deleted after first use.

You are solely responsible for any URLs you create.

Privacy

Zero log policy. No tracking. No JavaScript.

We recommend using Tor Browser or at least VPN to create links.

API

This API allows you to create short links programmatically.

Endpoints:

  • POST /shorten: Create a short link.

Example Usage:

1. Create a Short Link:
curl -X POST https://svo.bz/shorten \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com",
    "alias": "customalias",
    "one_time": true,
    "max_uses": 10,
    "expiration_days": 30}'

Note: All fields except url are optional.