Professional, Secure & Effortless URL Shortening
Transform long links into memorable, secure short URLs.
Share easily, protect with a password, set expiry, and get instant QR codes.
Share easily, protect with a password, set expiry, and get instant QR codes.
Features
- Custom short URLs with your own alias
- Password protection for private sharing
- Expiration dates and one-time-use links
- Analytics dashboard for registered users
- Instant QR code for every short link
- Redirect delay with visual countdown
- API for developers
- Fully responsive and mobile-first design
API Usage
Create short URL
POST /api/url.php?action=create
Content-Type: application/json
{
"long_url": "https://example.com/page",
"custom_code": "my-link", // optional
"password": "secret", // optional
"expires_at": "2025-07-31 23:59:59", // optional, Y-m-d H:i:s
"one_time_only": 1 // optional, 1 for one-time
}
Response:
{
"status": "success",
"short_code": "my-link",
"clicks": 0
}
Get short URL info
GET /api/url.php?action=view&short_code=my-link
Response:
{
"status": "success",
"long_url": "https://example.com/page",
"short_code": "my-link",
"clicks": 23,
"created_at": "2025-07-09 10:10:00"
}