Skip to main content
GET
/
api
/
v1
/
monitoring
/
status
Get Monitoring Status
curl --request GET \
  --url https://api.entityml.com/api/v1/monitoring/status
{
  "overall_status": "<string>",
  "sections": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.entityml.com/llms.txt

Use this file to discover all available pages before exploring further.

Request

Authorization
string
Optional bearer token when monitoring status protection is enabled.
x-monitoring-token
string
Optional monitoring token alternative.

Response

overall_status
string
operational, degraded, or down.
sections
object
Infrastructure sections such as ec2 and s3.

Example

from entityml import EntityMLClient

client = EntityMLClient()
status = client.system.monitoring_status()
print(status["overall_status"])

Example response

{
  "overall_status": "operational",
  "checked_at": "2026-05-03T20:30:00+00:00",
  "region": "us-east-1",
  "sections": {
    "ec2": [],
    "s3": []
  },
  "errors": [],
  "source": "live"
}