Health Check
GET
/health
const url = 'https://api.astroway.info/v1/health';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/health \ --header 'X-Api-Key: <X-Api-Key>'Returns API health status. No authentication required.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”API is healthy
Media type application/json
Example
{ "ok": true, "data": { "status": "ok", "timestamp": "2026-04-11T12:00:00Z" }} Корисно?
Дякуємо за фідбек.