Zurly is a simple URL shorter service.
URL resources.
/{id}
Redirect to the original (long) URL.
string
> Accept: text/html
302
< Content-Type: text/html
< Location: http://original.url
<a href="http://original.url">Found</a>.
Return the URL resource as JSON
> Accept: application/json
200
< Content-Type: application/json
{ "Id": "1", "LongUrl": "http://original.url" }
/
Shorten a URL with a JSON POST request
{ "url": "http://original.url" }
201