ShortURL API Client & Documentation

Shorten Your URL

API Documentation

1. Shorten URL with All Services

Endpoint: /all

Method: GET

Description: Shortens the provided URL using all supported services.

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

Endpoint: /tinyurl

Method: GET

Description: Shortens the provided URL using the TinyURL service.

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

Endpoint: /isgd

Method: GET

Description: Shortens the provided URL using the is.gd service.

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

Endpoint: /vgd

Method: GET

Description: Shortens the provided URL using the v.gd service.

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

Endpoint: /dagd

Method: GET

Description: Shortens the provided URL using the da.gd service.

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

Endpoint: /cleanuri

Method: GET

Description: Shortens the provided URL using the CleanURI service.

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"
    }