api
CleanURI Shortener

Documentation

Endpoint:

POST https://api.i-as.dev/api/shortener/cleanuri

Request Body

{
  "url": "url"  // The URL you want to shorten
}

Response Format

{
  "result": "url"  // The shortened URL
}

Example Request

POST https://api.i-as.dev/api/shortener/cleanuri
Content-Type: application/json

{
  "url": "https://example.com/long-url"
}

Example Response

{
  "result": "https://short.url/example"
}