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