Welcome to API v1

The /v1/hello endpoint is ready to respond. Try it out with your API key!

Quick Integration

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