Placeholder
GET
/health
const url = 'https://api.wink.travel/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.wink.travel/healthThis path exists only so the OpenAPI document validates while the real spec is unavailable.
Responses
Section titled “ Responses ”OK