Transform long, unwieldy URLs into clean, trackable short links. Monitor clicks, manage your links, and share with confidence.
Built for speed, reliability, and ease of use.
Global edge network ensures your links redirect instantly, anywhere in the world.
Track clicks as they happen. See exactly how your links are performing.
Create branded, memorable links like n0t.link/your-brand instead of random characters.
Enterprise-grade security and 99.9% uptime guarantee for all your shortened URLs.
Secure links with end-to-end encrypted passwords directly in the browser.
Update the destination of your links anytime without changing the short URL or QR code.
Start for free, upgrade when you need custom branding.
Perfect for personal use
For custom branding
No links yet. Create your first short link above!
Once logged in, navigate to the Dashboard. Paste your long URL into the input field and click "Shorten Link". Your new shortened URL will appear instantly in the list below.
Pro users and admins have access to custom aliases. This allows you to choose exactly what text appears after n0t.link/. To use this, simply type your desired alias in the optional input field before shortening.
If you encounter a link that leads to an error page, it may have been deleted by the creator, or it may have been disabled by our moderation systems for violating our Terms of Service. Accounts that repeatedly violate the ToS will be banned, which instantly disables all of their links.
All your created links are available on the dashboard. You can click on the short link to test it, or click the copy button to save it to your clipboard.
To provide our services, we explicitly collect and store the following data:
We collect this information solely to:
We rely on trusted third-party services to operate n0t.link:
We do not sell your personal data to third parties. Furthermore, we do not place advertisements on our site. However, we reserve the right to change these policies in the future without prior notice.
We implement industry-standard security measures to protect your personal information and ensure the integrity of our redirection service.
You agree not to use n0t.link to shorten URLs that lead to malicious software, phishing attempts, spam, illegal content, or any material that violates the rights of others. We actively monitor for abuse and reserve the right to delete any links that violate this policy without notice.
The use of automated scripts, bypasses, exploits, or any attempt to circumvent our security, rate limits, or payment systems is strictly prohibited. Engaging in such activities will result in an immediate and permanent ban of your account and all associated links.
While we strive for 99.9% uptime, the service is provided on an "as is" and "as available" basis. We are not liable for any damages, loss of data, or revenue resulting from service interruptions, technical failures, or data loss. Furthermore, we rely on third-party services (such as Firebase and Stripe) and are not liable for any data breaches, leaks, or service failures originating from these third-party infrastructure providers.
We reserve the right to suspend or permanently terminate accounts that violate our Terms of Service, abuse our infrastructure, or pose a risk to our platform, at our sole discretion and without prior notice.
We reserve the right to modify these Terms of Service at any time without prior notice. Continued use of the service constitutes your acceptance of the revised terms.
Your account has been banned for violating our Terms of Service. You can no longer create or manage links, and your existing links have been disabled.
If you believe this was a mistake, please contact contact@damanmikey.me.
Once you delete your account, there is no going back. Please be certain.
Use this key to authenticate your requests. Keep it secret!
Loading...
Receive real-time HTTP POST requests when your links are clicked.
We offer a full REST API for developers. Base URL: https://n0t.link
| Endpoint | Method | Purpose |
|---|---|---|
/api/v1/shorten |
POST | Create a short link |
/api/v1/expand/{code} |
GET | Get link details & original URL |
/api/v1/links |
GET | List all your links |
/api/v1/links/{id} |
DELETE | Delete a link |
/api/v1/stats/{code} |
GET | View advanced click statistics |
Include your API key as a Bearer token in the headers of your request:
Headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
Send a JSON payload with the following parameters:
url (string, required): The destination URL to shorten.customAlias (string, optional, PRO only): A custom short code.password (string, optional, PRO only): Password to protect the link.maxClicks (number, optional, PRO only): Maximum allowed clicks before expiration.expiresAt (ISO string, optional, PRO only): Expiration date.iosUrl (string, optional, PRO only): Custom URL for iOS devices.androidUrl (string, optional, PRO only): Custom URL for Android devices.tags (array of strings, optional): Tags for organizing your links.fetch('https://n0t.link/api/v1/shorten', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com/very/long/path',
customAlias: 'my-campaign',
maxClicks: 100
})
})
.then(response => response.json())
.then(data => console.log(data));
{
"success": true,
"shortUrl": "https://n0t.link/my-campaign",
"shortCode": "my-campaign"
}
This short link is password protected by the creator. Please enter the password to continue.
The short link you requested does not exist. It may have been deleted by its creator.