This is a simple API that can be used as a backend for a link shortener website.
This endpoint allows you to create a short link from a long URL.
Request
Body:
json
{
"linkid": "a-memorable-link-identifier",
"link": "a-website.com",
"createdat": "current-time-in-iso"
}
Response
Status: 200 OK
Body:
json
{
"status": "Created"
}
This endpoint allows you to retrieve a redirect to a previously shortened URL. Intended for browsers.
Request
Response
Status: 301 MOVED PERMANENTLY
Body:
"The link"