Public API Documentation > Resources > Status

This API endpoint does not require authentication or authorization.

Status API

This API retrieves the system status.

curl -v "https://api.artsy.net/api/status"

This endpoint does not accept any parameters and returns a status JSON document with the following fields.

error: the server responded with status 404

Possible Status Values

Status Condition
good All systems operational.
minor Some parts of the API may not be fully functioning.
major System is down and is experiencing a major outage.

Example

{
  "status": "good",
  "updated_at": "2024-03-01T01:29:03+00:00",
  "_links": {
    "self": {
      "href": "https://api.artsy.net/api/status"
    }
  }
}