Hotel Data API
The single source of truth for all hotel room data, images, and maintenance. A unified API powering every internal service at Aparthotel Stare Miasto and Krowoderska 66B.
Base URL
https://hotel-data.k3s.ahsm-krakow.com/api/v1All API endpoints are relative to this base URL. The API does not require authentication for internal network access.
Make your first request
Get all properties in under 30 seconds.
"color:#c4b5fd">const BASE_URL = "https:">//hotel-data.k3s.ahsm-krakow.com/api/v1";
"color:#6b7280">// Fetch all properties
"color:#c4b5fd">const response = "color:#c4b5fd">await fetch("color:#86efac">`${BASE_URL}/properties`);
"color:#c4b5fd">const { data } = "color:#c4b5fd">await response.json();
console.log(data); "color:#6b7280">// Property[]Ready for more? Read the Quick Start guide for a complete walkthrough.
What you can build
The Hotel Data API is organized into three resource areas.
Room Data
Access detailed room and room-type records across all properties. Filter by floor, category, amenities, and availability.
GET /propertiesGET /room-typesGET /rooms
Image Assets
Retrieve CDN-hosted images in multiple variants (thumbnail, medium, large, original) with WebP support.
GET /room-types/:id/imagesGET /rooms/:number/images
Maintenance
Track issues, schedules, and equipment. Report new issues and complete maintenance tasks programmatically.
GET /issuesPOST /issuesGET /maintenance/schedules