Skip to content

athompson11/LinkShortener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Link Shortener API

Introduction

This is a simple API that can be used as a backend for a link shortener website.

Endpoints

POST /create

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

GET /link/:id

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"

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages