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
Example
{ "ok": true, "data": { "version": "2.71.0", "build_commit": "67556a6075", "started_at": "2026-05-27T20:39:04.119Z", "uptime_seconds": 12345, "docs_url": "https://api.astroway.info/docs/api/" }} Корисно?
Дякуємо за фідбек.