Shortened your url on the go!

Designed for everyone, Upto.Site is the ultimate url shortener which can be used to create instant FREE short urls for .
Download Browser Extension
home's hero image

Made For everyone

Fast API, web interface & browser extension for shortening urls.
Secure as created
You can preview any short URL destination before visiting, by simply adding an exclamation mark ( ! ) at the end of the URL.
https://upto.site/example!
Lightening Fast
Upto.site's underlying mechanisms to create short urls and to redirect to long urls is pretty good, we also take care of your meta tags!
API Available
Shorting URLs using API is simple, you just need to call the API with your long url and you get your url shortened.
(or do it from here)
Always FREE
Upto.site does not have any paid plans for now, but if we do introduce paid plans in the future, free plan will be there, always.

How Does It Work (API)

It is just the process of two easy steps!
pc monitor illustration
1Call Shortener API

Simply send a HTTP Post request with the link you want to shorten along with an optional slug if you need, and accessToken if you have one. (optional)

credit card illustration
2Get Shortened Link!

You will get a response back with the short url which you can use however you want, we use 301 redirect which helps you in the SEO :)

Here is an example of how simply you can use upto.site
              
  // using async function
  const res = await fetch('https://api.upto.site/short', {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      long: <YOUR_LONG_URL>,        // required
      slug: <CUSTOM_SLUG>,          // optional
      accessToken: <ACCESS_TOKEN>,  // optional
    })
  });

  const json = await res.json();
  console.log(json);
  /*
  {
    "long": "myawesomewebsite.com",
    "shortUrl": "https://upto.site/maw",
    "success": true,
  }
  */

  // using CURL
  // curl -XPOST -H "Content-type: application/json" -d '{ "long": "<YOUR_LONG_URL>" }' 'https://api.upto.site/short'
              
          
See this in action on CodePen

Get Started in No Time

Let's get your long urls shortened!