For the complete documentation index, see llms.txt. This page is also available as Markdown.

Health

Health check and service status endpoints

Service status information

get

Returns version, commit hash, and current timestamp for the service

Responses
200

Successful response with service status

application/json
versionstringRequired

Current service version

Example: 1.0.0
currentTimenumberRequired

Unix timestamp in milliseconds

Example: 1729785600000
commitHashstringRequired

Git commit hash of the deployed version

Example: b635386a8c9d1e2f3b4c5d6e7f8g9h0i1j2k3l4m
get/status
GET /status HTTP/1.1
Host: realm-provider.decentraland.org
Accept: */*
{
  "version": "1.0.0",
  "currentTime": 1729785600000,
  "commitHash": "b635386a8c9d1e2f3b4c5d6e7f8g9h0i1j2k3l4m"
}

Last updated