Documentation

Developer / v1

HTTP status

Looks up the standard title and class for a supported HTTP response status code.

Live
GET/api/v1/http-status/418
Live requestRuns from your browser

Parameters

codeinteger · path · required
HTTP status from 100 to 599.

Example request

curl 'https://informantion.com/api/v1/http-status/418'

Example response

{
  "success": true,
  "data": {
    "code": 418,
    "title": "I'm a Teapot",
    "class": "client_error"
  }
}

Response schema

codenumber
HTTP response status code.
titlestring
Standard status phrase.
classstring
Response status family.

Possible errors

404 · STATUS_NOT_FOUNDThe code is outside the supported reference set.

Rate limit

60 requests per minute under the current anonymous fair-use policy. Check the response headers for the active window.