Health check
GET
/health
const url = 'https://api.deploybase.eu/api/v1/health';const options = {method: 'GET'};
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.deploybase.eu/api/v1/healthReturns the health status of the API server
Responses
Section titled “ Responses ”OK
Media type application/json
object
service
string
status
string
timestamp
string
Example generated
{ "service": "example", "status": "example", "timestamp": "example"}