クイックスタート
// ONDA予約エンジンAPIを初期化
const response = await fetch('https://api.onda.me/v1/availability', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
propertyId: 'PROP123',
checkIn: '2025-01-15',
checkOut: '2025-01-17',
guests: 2
})
});
const availability = await response.json();
console.log(availability);