Skip to main content
GET
/
api
/
system
/
heartbeat
System heartbeat / health check
curl --request GET \
  --url https://api.propops.app/api/system/heartbeat \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": "operational",
  "service": "PropOps Platform",
  "version": "2.0.0",
  "timestamp": "2024-06-01T12:00:00Z",
  "uptime_seconds": 86400,
  "environment": "production"
}

Authorizations

Authorization
string
header
required

All API requests must include a valid Bearer token in the Authorization header. Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.

Example:

Authorization: Bearer a1b2c3d4e5f6...

Response

System operational

success
boolean
Example:

true

status
string
Example:

"operational"

service
string
Example:

"PropOps Platform"

version
string
Example:

"2.0.0"

timestamp
string<date-time>
Example:

"2024-06-01T12:00:00Z"

uptime_seconds
integer
Example:

86400

environment
string
Example:

"production"