Перейти до вмісту
AstroWay/api v2.158.7 · docs
усі системи в нормі

Version

GET
/version
request.txt
curl --request GET \
--url https://api.astroway.info/v1/version \
--header 'X-Api-Key: <X-Api-Key>'

Returns the current deploy version, build commit, start time, and uptime. Free, no authentication required. SDK clients can call this on boot to diagnose unexpected behaviour: build_commit uniquely identifies the deploy.

Current deploy metadata

Media type application/json
object
ok
boolean
data
object
version
string
build_commit
string
started_at
string
uptime_seconds
number
docs_url
string
Example
{
"ok": true,
"data": {
"version": "2.157.1",
"build_commit": "615bc336fbf",
"started_at": "2026-08-23T13:02:28.247Z",
"uptime_seconds": 3,
"docs_url": "https://api.astroway.info/docs/api/"
}
}
Корисно?