Launch your guestbook in minutes with our secure, self-hosted API. Zero configuration, enterprise-grade.
Deploy instantly with no server management. Just an API key and 1 line of code.
All guestbook data is encrypted and anonymized by default.
Handles 250,000+ entries/second with <1ms latency.
// POST /entries
fetch('https://api.openguestbook.tech/v1/entries', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Jane Doe',
message: 'Amazing service!'
})
})
.then(res => res.json())
.then(data => console.log(data));
curl -X POST 'https://api.openguestbook.tech/v1/entries' \\
-H 'Authorization: Bearer YOUR_API_KEY' \\
-d '{
"name": "John Smith",
"message": "Great platform"
}'
{
"id": "12345",
"name": "Jane Doe",
"message": "Amazing service!",
"created_at": "2025-08-16T10:00:00Z"
}
Visit the API Key page to generate your 2048-bit token in 30 seconds.
Enterprise plans include CNAME support for brand alignment.
All entries can be exported as JSON with one API call.