Skip to main content
GET
/
health
Health check endpoint
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/health', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "status": "<string>",
  "timestamp": "<string>",
  "uptime": 123
}

Response

200 - application/json

Service is healthy

status
string
required
timestamp
string
required
uptime
number
required