webring-checker
32 logs for 1110 minutes
explore 3.0%
admin 3.0%
research 3.0%
code 91.0%
Status: Archived
webring-checker is a simple service and api for the xxiivv . The api is able to provide a list of sites in the webring, check the status of the webring, and also show an rss feed of the webring. The full options are below.
GET /
will return a description pageGET /check?format=html
will return an html report of all sites, their status code, and if available, the last modified dateGET /check?format=json
will return the same info as the html format but in jsonGET /sites
will return a json array of site objects that are part of the webringGET /rss?format=html
to view a collection of all available rss feeds in the Webring ordered by dateGET /rss?format=json
to retrieve the collection of rss feeds in json format ordered by date
The webring currently has rss feeds that are either rss or atom feeds. Since
they both have a bit different format, I've standardized them into a common json
object. This is the format that the json of the /rss?format=json
will return.
{
"title": String,
"link": String,
"post": {
"postTitle": String,
"postDate": String,
"postLink": String,
"postConent": String
}
}