Go to file
2013-08-01 04:03:44 +01:00
assets added responsive styles from nmec 2013-08-01 04:03:27 +01:00
codes clarify 302 and 303 being temporary vs. permanent 2013-04-27 00:24:09 +01:00
lib/Httpstatuses Moved into proper class structur 2013-08-01 04:02:33 +01:00
views corrected http -> https on 404 page 2013-08-01 04:02:45 +01:00
composer.json tidying up 2013-03-19 23:18:10 +00:00
humans.txt tidying up 2013-03-19 23:18:10 +00:00
index.php Migrated to Klein v2 2013-08-01 04:03:38 +01:00
LICENSE license formattin 2013-03-03 19:58:29 +00:00
README.markdown cleaned up readme 2013-08-01 04:03:44 +01:00
robots.txt undefined variable; check if it's set instead 2013-03-19 23:38:59 +00:00

httpstatus.es is an easy to use http status code reference site. An individual code can be accessed via httpstatus.es/{status_code}.

Each individual code is stored in a file specific to the class it is a part of. For example 404 is stored in 4.json, along with all other 4xx codes.

json format

{
    "class":{
        "title":"1xx Informational"
    },
    "codes":{
        "100":{
            "title":"Continue",
            "summary":"Client should continue with request",
            "descriptions":{
                "wiki":{
                    "body":"Wikipedia description",
                    "link":"http:\/\/en.wikipedia.org\/wiki\/List_of_HTTP_status_codes#100"
                },
                "ietf":{
                    "body":"IETF Description",
                    "link":"http:\/\/www.ietf.org\/rfc\/rfc2616.txt"
                }
            },
            "references":{
                "item":{
                    "title":"Reference Title",
                    "value":"Reference Value"
                },
                "item2":{
                    "title":"Reference Title",
                    "value":"Reference Value"
                }
            }
        }
    }
}

JSON should be formatted as above using four space tab and \r\n for new lines in descriptions. There is no validation on the output and the only processing is turning new lines into line breaks, if you wish to include HTML that's fine (preferably only links though and code tags).