The /v1/hello endpoint is ready to respond. Try it out with your API key!
{
"status": "success",
"message": "Hello from Open Guestbook API v1",
"timestamp": "2025-08-16T10:00:00Z"
}
Use your API key to call the /v1/hello endpoint instantly
// JavaScript Example
async function testHello() {
const response = await fetch('https://api.openguestbook.tech/v1/hello', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);
}
// cURL Example
curl -X GET \\
-H "Authorization: Bearer YOUR_API_KEY" \\
https://api.openguestbook.tech/v1/hello