Health check
GET
/health
const url = 'https://api.hookbridge.io/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.hookbridge.io/healthReturns the health status of the API service
Responses
Section titled “Responses”Service is healthy
Media typeapplication/json
object
status
string
service
string
version
string
timestamp
string format: date-time
Example
{ "status": "healthy", "service": "hookbridge-api", "version": "1.0.0", "timestamp": "2025-12-06T01:30:00Z"}Personalize Examples
Enter your credentials to populate code examples throughout the docs.