S

ShortURL API Docs

Interactive client and reference for the ShortURL Cloudflare Worker endpoint.

Shorten your URL

Test the worker endpoint directly from this page.

Uses GET on the selected worker endpoint.

Response

Idle
Run a request to see the JSON response here.

REST API Reference

All endpoints are served by https://shorturl.ashlynn.workers.dev

1. Shorten URL with all services

Get shortened links from every supported provider in a single request.

GET /all

Query parameters

url: (required) The URL to be shortened.

Example request

GET https://shorturl.ashlynn.workers.dev/all?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_urls": {
      "TinyURL": "https://tinyurl.com/2jgrxv8d",
      "is.gd": "https://is.gd/Pa2AT5",
      "v.gd": "https://v.gd/Dr3vN0",
      "da.gd": "https://da.gd/38ubko",
      "CleanURI": "https://cleanuri.com/6deeGY"
    },
    "creator": "https://t.me/Ashlynn_Repository"
  }

2. Shorten URL with TinyURL

Use the TinyURL service to create compact links.

GET /tinyurl

Example request

GET https://shorturl.ashlynn.workers.dev/tinyurl?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_url": "https://tinyurl.com/2jgrxv8d",
    "creator": "https://t.me/Ashlynn_Repository"
  }

3. Shorten URL with is.gd

Generate a short link with the is.gd service.

GET /isgd

Example request

GET https://shorturl.ashlynn.workers.dev/isgd?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_url": "https://is.gd/Pa2AT5",
    "creator": "https://t.me/Ashlynn_Repository"
  }

4. Shorten URL with v.gd

Use v.gd to create minimal short links.

GET /vgd

Example request

GET https://shorturl.ashlynn.workers.dev/vgd?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_url": "https://v.gd/Dr3vN0",
    "creator": "https://t.me/Ashlynn_Repository"
  }

5. Shorten URL with da.gd

Shorten URLs using the da.gd service.

GET /dagd

Example request

GET https://shorturl.ashlynn.workers.dev/dagd?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_url": "https://da.gd/38ubko",
    "creator": "https://t.me/Ashlynn_Repository"
  }

6. Shorten URL with CleanURI

Create clean, minimal links via CleanURI.

GET /cleanuri

Example request

GET https://shorturl.ashlynn.workers.dev/cleanuri?url=https://example.com

Example response

{
    "original_url": "https://web.telegram.org/a/",
    "shortened_url": "https://cleanuri.com/6deeGY",
    "creator": "https://t.me/Ashlynn_Repository"
  }