{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"68c5b4bf-e117-4200-8203-a02eca7610ff","name":"Air_BNB","description":"# Air_BNB API\n\nA back-end clone of the AirBNB platform, built with Spring Boot. This API provides full hotel management, room inventory, user authentication, hotel browsing, and booking capabilities.\n\n---\n\n## Base URL\n\nAll requests are served from:\n```\nhttp://localhost:{{PORT8083}}\n```\n> The global variable `PORT8083` holds the port (default: `7070`). The base path for all endpoints is `/api/v1`.\n\n---\n\n## Authentication\n\nThis API uses **JWT (JSON Web Token)** based authentication.\n\n1. **Sign up** or **log in** using the `auth-controller` endpoints.\n2. On a successful login, the response contains an `accessToken`. A test script on the **Login AirBNB** request automatically saves this token to the `jwt_token` environment variable.\n3. Pass the token in the `Authorization` header for all protected endpoints:\n\n```\nAuthorization: Bearer {{jwt_token}}\n```\n\n> Make sure the **AirBNB Host** environment is active so that `{{jwt_token}}` resolves correctly.\n\n---\n\n## Folder Structure & Available Endpoints\n\n### 🔐 auth-controller\nUser registration, login, and token management.\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `POST` | `/api/v1/auth/signup` | Register a new user |\n| `POST` | `/api/v1/auth/login` | Login and receive a JWT token |\n| `POST` | `/api/v1/auth/refresh` | Refresh an expired JWT access token |\n\n---\n\n### 🏨 Generic API's (Admin APIs)\n\n#### hotel-controller\nFull CRUD operations for hotel management (admin only).\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `GET` | `/api/v1/admin/hotels` | Get list of all hotels |\n| `POST` | `/api/v1/admin/hotels` | Create a new hotel |\n| `GET` | `/api/v1/admin/hotels/{hotelId}` | Get a hotel by ID |\n| `PUT` | `/api/v1/admin/hotels/{hotelId}` | Update hotel details |\n| `PATCH` | `/api/v1/admin/hotels/{hotelId}/activate` | Activate a hotel |\n| `DELETE` | `/api/v1/admin/hotels/{hotelId}` | Delete a hotel and its inventory |\n\n#### room-admin-controller\nManage room inventory within hotels (admin only).\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `POST` | `/api/v1/admin/hotels/{hotelId}/rooms` | Create a room for a hotel |\n| `GET` | `/api/v1/admin/hotels/{hotelId}/rooms` | Get all rooms for a hotel |\n| `GET` | `/api/v1/admin/hotels/{hotelId}/rooms/{roomId}` | Get a specific room by ID |\n| `DELETE` | `/api/v1/admin/hotels/{hotelId}/rooms/{roomId}` | Delete a specific room |\n\n#### hotel-browse-controller\nPublic-facing hotel browsing and search.\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `GET` | `/api/v1/hotels/{hotelId}/info` | Get public info for a hotel |\n| `GET` | `/api/v1/hotels/search` | Search hotels by city, dates, and room count |\n\n#### hotel-booking-controller\nBooking lifecycle management for guests.\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| `POST` | `/api/v1/bookings/init` | Initialize a new booking |\n| `POST` | `/api/v1/bookings/{bookingId}/addGuests` | Add guests to an existing booking |\n\n---\n\n## Getting Started\n\n1. Start your Spring Boot server on port `7070` (or update `PORT8083`).\n2. Set the **AirBNB Host** environment as active.\n3. Call **SignUp AirBnB** to create a user account.\n4. Call **Login AirBNB** — the `jwt_token` variable will be auto-populated.\n5. Use the token-protected admin endpoints to create hotels and rooms.\n6. Use the browse and booking endpoints to search and book hotels.","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"50390415","team":11824323,"collectionId":"68c5b4bf-e117-4200-8203-a02eca7610ff","publishedId":"2sBXcHiyjD","public":true,"publicUrl":"https://documenter-api.postman.tech/view/50390415/2sBXcHiyjD","privateUrl":"https://go.postman.co/documentation/50390415-68c5b4bf-e117-4200-8203-a02eca7610ff","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"documentationLayout":"classic-double-column","customisation":{"metaTags":[{"name":"description","value":""},{"name":"title","value":""}],"appearance":{"default":"light","themes":[{"name":"dark","logo":null,"colors":{"top-bar":"212121","right-sidebar":"303030","highlight":"FF6C37"}},{"name":"light","logo":null,"colors":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"}}]}},"version":"8.10.0","publishDate":"2026-03-01T16:38:21.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{"title":"","description":""},"logos":{"logoLight":null,"logoDark":null}},"statusCode":200},"environments":[{"name":"AirBNB Host","id":"f42734d5-0ded-4072-98ec-de3ab74035bb","owner":"50390415","values":[{"key":"jwt_token","value":"","enabled":true,"type":"default"}],"published":true}],"user":{"authenticated":false,"permissions":{"publish":false}},"run":{"button":{"js":"https://run.pstmn.io/button.js","css":"https://run.pstmn.io/button.css"}},"web":"https://www.getpostman.com/","team":{"logo":"https://res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/4cb227da92b38a893c63659d563aa38185ab47b1049d8a51b36be3b5f7c68e20","favicon":""},"isEnvFetchError":false,"languages":"[{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"HttpClient\"},{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"RestSharp\"},{\"key\":\"curl\",\"label\":\"cURL\",\"variant\":\"cURL\"},{\"key\":\"dart\",\"label\":\"Dart\",\"variant\":\"http\"},{\"key\":\"go\",\"label\":\"Go\",\"variant\":\"Native\"},{\"key\":\"http\",\"label\":\"HTTP\",\"variant\":\"HTTP\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"OkHttp\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"Unirest\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"Fetch\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"jQuery\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"XHR\"},{\"key\":\"c\",\"label\":\"C\",\"variant\":\"libcurl\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Axios\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Native\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Request\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Unirest\"},{\"key\":\"objective-c\",\"label\":\"Objective-C\",\"variant\":\"NSURLSession\"},{\"key\":\"ocaml\",\"label\":\"OCaml\",\"variant\":\"Cohttp\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"cURL\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"Guzzle\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"HTTP_Request2\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"pecl_http\"},{\"key\":\"powershell\",\"label\":\"PowerShell\",\"variant\":\"RestMethod\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"http.client\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"Requests\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"httr\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"RCurl\"},{\"key\":\"ruby\",\"label\":\"Ruby\",\"variant\":\"Net::HTTP\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"Httpie\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"wget\"},{\"key\":\"swift\",\"label\":\"Swift\",\"variant\":\"URLSession\"}]","languageSettings":[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}],"languageOptions":[{"label":"C# - HttpClient","value":"csharp - HttpClient - C#"},{"label":"C# - RestSharp","value":"csharp - RestSharp - C#"},{"label":"cURL - cURL","value":"curl - cURL - cURL"},{"label":"Dart - http","value":"dart - http - Dart"},{"label":"Go - Native","value":"go - Native - Go"},{"label":"HTTP - HTTP","value":"http - HTTP - HTTP"},{"label":"Java - OkHttp","value":"java - OkHttp - Java"},{"label":"Java - Unirest","value":"java - Unirest - Java"},{"label":"JavaScript - Fetch","value":"javascript - Fetch - JavaScript"},{"label":"JavaScript - jQuery","value":"javascript - jQuery - JavaScript"},{"label":"JavaScript - XHR","value":"javascript - XHR - JavaScript"},{"label":"C - libcurl","value":"c - libcurl - C"},{"label":"NodeJs - Axios","value":"nodejs - Axios - NodeJs"},{"label":"NodeJs - Native","value":"nodejs - Native - NodeJs"},{"label":"NodeJs - Request","value":"nodejs - Request - NodeJs"},{"label":"NodeJs - Unirest","value":"nodejs - Unirest - NodeJs"},{"label":"Objective-C - NSURLSession","value":"objective-c - NSURLSession - Objective-C"},{"label":"OCaml - Cohttp","value":"ocaml - Cohttp - OCaml"},{"label":"PHP - cURL","value":"php - cURL - PHP"},{"label":"PHP - Guzzle","value":"php - Guzzle - PHP"},{"label":"PHP - HTTP_Request2","value":"php - HTTP_Request2 - PHP"},{"label":"PHP - pecl_http","value":"php - pecl_http - PHP"},{"label":"PowerShell - RestMethod","value":"powershell - RestMethod - PowerShell"},{"label":"Python - http.client","value":"python - http.client - Python"},{"label":"Python - Requests","value":"python - Requests - Python"},{"label":"R - httr","value":"r - httr - R"},{"label":"R - RCurl","value":"r - RCurl - R"},{"label":"Ruby - Net::HTTP","value":"ruby - Net::HTTP - Ruby"},{"label":"Shell - Httpie","value":"shell - Httpie - Shell"},{"label":"Shell - wget","value":"shell - wget - Shell"},{"label":"Swift - URLSession","value":"swift - URLSession - Swift"}],"layoutOptions":[{"value":"classic-single-column","label":"Single Column"},{"value":"classic-double-column","label":"Double Column"}],"versionOptions":[],"environmentOptions":[{"value":"0","label":"No Environment"},{"label":"AirBNB Host","value":"50390415-f42734d5-0ded-4072-98ec-de3ab74035bb"}],"canonicalUrl":"https://documenter.gw.postman.com/view/metadata/2sBXcHiyjD"}