Version
GET
/version
const url = 'https://api.astroway.info/v1/version';const options = {method: 'GET', headers: {'X-Api-Key': '<X-Api-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”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/" }} Корисно?
Дякуємо за фідбек.