Install a Nuitee Connect SDK, pass your API key, and call search, prebook, and book without hand-rolling every HTTP request.
What is the Nuitee Connect SDK?
Language bindings that wrap Nuitee Connect endpoints — request building, response parsing, and basic error handling — so you can call search, prebook, and book from your stack.
Why use an SDK?
- Less boilerplate — The SDK builds HTTP requests, parses responses, and surfaces errors so you stay on product logic.
- Consistent calls — Shared helpers keep auth and payload shape aligned across your team.
- Faster first call — Install, pass an API key, hit rates — no need to memorize every endpoint on day one.
How it works
- Install — Add the package (for example
npmfor Node.js). - Initialize — Pass your API key (sandbox first).
- Call methods — Use SDK helpers for Nuitee Connect endpoints.
- Handle results — Work with parsed response objects in your app.
Example: Node.js SDK
// Import the SDK
const liteApi = require('liteapi-node-sdk')(YOUR_API_KEY);
async function fetchRates() {
try {
const result = await liteApi.getFullRates({
checkin: "2024-12-15",
checkout: "2024-12-18",
currency: "USD",
guestNationality: "US",
hotelIds: ["lp3803c", "lp1f982", "lp19b70", "lp19e75"],
occupancies: [
{
rooms: 1,
adults: 2,
children: [2, 3]
}
]
});
console.log(result);
} catch (error) {
console.error('Error fetching rates:', error);
}
}
fetchRates();liteApi.getFullRates sends the request and returns the parsed rates payload.
Next
Full reference: Node.js SDK docs. Questions? Use Intercom on this site or Discord.

