Javascript
const url = 'https://api.worqhat.com/'; const options = {method: 'GET', body: undefined}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); }
{ "name": "WorqHat API", "version": "1.0.0", "environment": "production" }
Get basic server information and status
Server information
"WorqHat API"
"1.0.0"
"production"
Was this page helpful?