Nuvho
API & Developers8 min readUpdated Jun 12, 2026

Nuvho API overview

Introduction to the Nuvho REST API — authentication, base URLs, and rate limits.

About the Nuvho API

The Nuvho REST API gives developers programmatic access to your property data, reservations, availability, rates, and reporting. It's designed for building custom integrations, internal dashboards, and automated workflows.

Base URL

https://api.nuvho.com/v1

Rate limits

  • Starter — 100 requests per minute
  • Growth — 500 requests per minute
  • Pro — 2,000 requests per minute

Rate limit headers are included in every response: X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset.

Available endpoints

  • GET /properties — List your properties
  • GET /availability — Check room availability for a date range
  • GET /reservations — List reservations with filters
  • POST /reservations — Create a new reservation
  • PATCH /reservations/{id} — Modify an existing reservation
  • DELETE /reservations/{id} — Cancel a reservation
  • GET /rates — Retrieve rate plans and pricing
  • PUT /rates — Update rates for a date range
  • GET /reports/occupancy — Pull occupancy data

📖 Full API reference

Complete endpoint documentation with request/response examples is available at developers.nuvho.com.

Was this article helpful?