Endpoint:
POST https://api.i-as.dev/api/shortener/cleanuri
{
"url": "url" // The URL you want to shorten
}
{
"result": "url" // The shortened URL
}
POST https://api.i-as.dev/api/shortener/cleanuri
Content-Type: application/json
{
"url": "https://example.com/long-url"
}
{
"result": "https://short.url/example"
}