This is a very simple url shortner, it does exactly that
It has an increadbly simple API
Very simple API
Create
curl --request POST \
--url http://api.1tn.pw/v1/create \
--header 'Content-Type: application/json' \
--data '{
"url": "https://keloran.dev"
}'
Returns
{
"short": "yJjWqM",
"url": "https://keloran.dev"
}
Get
curl --request GET \
--url https://api.1tn.pw/v1/yJjWqM \
Returns
{
"long": "https://keloran.dev"
}