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

Status

Service health and version information

Get service status

get
/status

Returns the current version, commit hash, and server time

Responses
200

Service status information

application/json
versionstringOptional

Service version

Example: 1.0.0
currentTimenumberOptional

Current server time in milliseconds

Example: 1698765432000
commitHashstringOptional

Git commit hash

Example: abc123def456
get/status
GET /status HTTP/1.1
Host: exploration-games.decentraland.org
Accept: */*
200

Service status information

{
  "version": "1.0.0",
  "currentTime": 1698765432000,
  "commitHash": "abc123def456"
}

Last updated