Status
Get Combined Status
GEThttps://status.e621.church/json
A JSON schema for this response can be found here
Path Parameters
| Name | Type | Description |
|---|---|---|
| limit | Number | The number of history entries to return. Defaults to 100, any number between 1 and 1000 can be provided. |
200 OK: Success
{ "current": { "available": true, "state": "up", // down, partially-down, maintenance, error "status": 200, "statusMessage": "OK", "since": "0000-00-00T00:00:00.000Z", "note": "" // nullable }, "history": [ { "available": false, "state": "maintenance", "status": 1, "statusMessage": "Maintenance", "since": "0000-00-00T00:00:00.000Z", "note": "E621 is currently in maintenance mode." } ] }
Get Current Status
GEThttps://status.e621.church/json/current
A JSON schema for this response can be found here
200 OK: Success
{ "available": true, "state": "up", // down, partially-down, maintenance, error "status": 200, "statusMessage": "OK", "since": "0000-00-00T00:00:00.000Z", "note": "" // nullable }
Get Historical Status
GEThttps://status.e621.church/json/history
A JSON schema for this response can be found here
Path Parameters
| Name | Type | Description |
|---|---|---|
| limit | Number | The number of history entries to return. Defaults to 100, any number between 1 and 1000 can be provided. |
| date | String | The date to get the history of as an ISO-8601 timestamp. Only the day, month, and year are considered. |
200 OK: Success
[ { "available": false, "state": "maintenance", "status": 1, "statusMessage": "Maintenance", "since": "0000-00-00T00:00:00.000Z", "note": "E621 is currently in maintenance mode." } ]
