SDKs

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?

  1. Less boilerplate — The SDK builds HTTP requests, parses responses, and surfaces errors so you stay on product logic.
  2. Consistent calls — Shared helpers keep auth and payload shape aligned across your team.
  3. Faster first call — Install, pass an API key, hit rates — no need to memorize every endpoint on day one.

How it works

  1. Install — Add the package (for example npm for Node.js).
  2. Initialize — Pass your API key (sandbox first).
  3. Call methods — Use SDK helpers for Nuitee Connect endpoints.
  4. Handle results — Work with parsed response objects in your app.

Example: Node.js SDK

Nuitee Connect 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.