Static Assets
All required static assets can be downloaded from the following url.
URL: https://cdn.grnconnect.com/static-assets/
The above link will contain the master data for the following:
Countries
You can use this method to fetch
- All the countries and their details
- Country details based on the country code.
Get Countries
| Method |
URL |
| GET |
api/v3/countries |
Sample Response
{
"total": 2,
"countries": [
{
"name": "Zimbabwe",
"code3": "ZWE",
"code": "ZW"
},
{
"name": "Zambia",
"code3": "ZMB",
"code": "ZM"
}
]
}
Get Country details using Country code
| Method |
URL |
| GET |
api/v3/countries/<country_code> |
Sample Get Country details using Country code request
| Method |
URL |
| GET |
api/v3/countries/ZW |
Sample Response
{
"total": 1,
"country": {
"name": "Zimbabwe",
"code3": "ZWE",
"code": "ZW"
}
}
Destinations
You can use this method to fetch
- All the destinations and their details
- Destination details based on the Destination code
- All the Destinations available in the Country.
Get Destinations
| Method |
URL |
| GET |
api/v3/destinations |
Sample Response
{
"total": 2,
"destinations": [
{
"code": "D!000683",
"name": "Aarhus",
"country": "DK"
},
{
"code": "D!001447",
"name": "Abchasien",
"country": "GE"
}
]
}
Get Destination details using destination code
| Method |
URL |
| GET |
api/v3/destinations/<destination_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/destinations/D!000683 |
Sample Response
{
"total": 1,
"destination": {
"code": "D!000683",
"name": "Aarhus",
"country": "DK"
}
}
Get Destinations available in the Country
| Method |
URL |
| GET |
api/v3/destinations?country=<country_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/destinations?country=DZ |
Sample Response
{
"total": 2,
"destinations": [
{
"code": "D!000890",
"name": "Algeria",
"country": "DZ"
},
{
"code": "D!000891",
"name": "Algeria",
"country": "DZ"
}
]
}
Areas
You can use this method to fetch
- All the areas and their details
- Area details based on the Area code
- All the Areas available in the Country.
Get Areas
| Method |
URL |
| GET |
api/v3/areas |
Sample Response
{
"total": 2,
"areas": [
{
"name": "ANDROS",
"country_name": "Greece",
"country": "GR",
"code": "G!446171"
},
{
"name": "CHALKI",
"country_name": "Greece",
"country": "GR",
"code": "G!043468"
}
]
}
Get Area details using area code
| Method |
URL |
| GET |
api/v3/areas/<area_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/areas/G!007351 |
Sample Response
{
"total": 1,
"area": {
"name": "MAJORCA",
"country_name": "Spain",
"country": "ES",
"code": "G!007351"
}
}
Get Areas available in the Country
| Method |
URL |
| GET |
api/v3/areas?country=<country_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/areas?country=MV |
Sample Response
{
"total": 2,
"areas": [
{
"name": "Noonu Atoll",
"country_name": "Maldives",
"country": "MV",
"code": "G!454770"
},
{
"name": "Gaafu Dhaalu Atoll",
"country_name": "Maldives",
"country": "MV",
"code": "G!366275"
}
]
}
Cities
You can use this method to fetch
- All the Cities and their details
- City details based on the City code
- All the Cities available in the Country.
- All the Cities available in the Destination.
Get Cities Request
| Method |
URL |
| GET |
api/v3/cities/ |
Sample Response
{
"total": 2,
"cities": [
{
"name": "Zaafaranah, Red Sea, Egypt, EG",
"code": "C!000001"
},
{
"name": "Dahab, Sinai, Egypt, EG",
"code": "C!000002"
}
]
}
Get City Details using City code
| Method |
URL |
| GET |
api/v3/cities/<city_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/cities/C!000001 |
Sample Response
{
"total": 1,
"city": {
"name": "Zaafaranah, Red Sea, Egypt, EG",
"dest_code": "D!001031",
"country": "EG",
"code": "C!000001"
}
}
Get Cities available in the Country
| Method |
URL |
| GET |
api/v3/cities?country=<country_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/cities?country=IN |
Sample Response
{
"total": 2,
"cities":
[
{
"name": "South 24 Parganas, West Bengal, India, IN",
"code": "C!076452"
},
{
"name": "Abohar, Punjab, India, IN",
"code": "C!077294"
}
]
}
Get Cities available in the Destination
| Method |
URL |
| GET |
api/v3/cities?destination=<destination_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/cities?destination=D!001031 |
Sample Response
{
"total": 2,
"cities": [
{
"name": "Hurghada",
"dest_code": "D!001031",
"country": "EG",
"code": "C!000003"
},
{
"name": "Zaafaranah",
"dest_code": "D!001031",
"country": "EG",
"code": "C!000001"
}
]
}
Get Cities available in the Area
| Method |
URL |
| GET |
api/v3/cities?area=<area_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/cities?area=G!007351 |
Sample Response
{
"total": 2,
"cities": [
{
"name": "Santanyí",
"dest_code": "D!000133",
"country": "ES",
"code": "C!079807"
},
{
"name": "Cala Santanyí",
"dest_code": "D!000133",
"country": "ES",
"code": "C!065047"
}
]
}
Airports
You can use this method to fetch
- All the Airports and their details
- Airport details based on the airport code.
Request
| Method |
URL |
| GET |
api/v3/airports/ |
Sample Response
{
"total": 1,
"airports": [
{
"name": "Rome State Airport",
"code": "A!REO",
"city_name": "Rome"
}
]
}
Get Airport Details using Airport code
| Method |
URL |
| GET |
api/v3/airports/<airport_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/airports/A!REO |
Sample Response
{
"total": 1,
"airport": {
"name": "Rome State Airport",
"code": "A!REO",
"city_name": "Rome"
}
}
Stations
You can use this method to fetch
- All the Stations and their details
- Station details based on the station code.
Request
| Method |
URL |
| GET |
api/v3/stations/ |
Sample Response
{
"total": 1,
"stations": [{
"name": "Zermatt Train Station",
"code": "S!000865",
"city_code": "C!002968"
}]
}
Get Station Details using Station code
| Method |
URL |
| GET |
api/v3/stations/<station_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/stations/S!000858 |
Sample Response
{
"total": 1,
"station": {
"name": "London Train Station",
"code": "S!000858",
"city_code": "C!014742"
}
}
Currencies
You can use this method to fetch
- All the Currencies and their details
- Currency details based on the currency code.
Get Currencies Request
| Method |
URL |
| GET |
api/v3/currencies/ |
Sample Response
{
"total": 1,
"currencies": [
{
"name": "Euro",
"code": "EUR"
}
]
}
Get Currency details using currency code
| Method |
URL |
| GET |
api/v3/currencies/<currency_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/currencies/EUR |
Sample Response
{
"total": 1,
"currency": {
"name": "Euro",
"code": "EUR"
}
}
Languages
You can use this method to fetch
- All the languages and their details
- Language details based on the language code.
Get Currencies Request
| Method |
URL |
| GET |
api/v3/languages/ |
Sample Response
{
"total": 1,
"languages": [{
"name": "English (US)",
"code": "US"
}]
}
Get Language details using language code
| Method |
URL |
| GET |
api/v3/languages/<language_code> |
Sample Request
| Method |
URL |
| GET |
api/v3/languages/US |
Sample Response
{
"total": 1,
"language": {
"name": "English (US)",
"code": "US"
}
}
Hotels
You can use this method to fetch
- Static data for hotels using Country Code.
- Static data for hotels using Destination Code.
- Static data for hotels using City Code.
- Static data for hotels using Airport Code.
- Static data for single hotel using Hotel Code.
Get Hotels for the Country Request
| Method |
URL |
| GET |
api/v3/hotels/?country=<country> |
Sample Request
| Method |
URL |
| GET |
api/v3/hotels/?country=IN |
Sample Response
{
"hotels": [
{
"postal_code": "302001",
"name": "Hotel Jai Singh Palace",
"longitude": "75.806907016667",
"latitude": "26.918670033333",
"facilities": "meeting rooms 2; total number of rooms - 28; safety deposit boxes; desk; free toiletries; rollaway/extra beds (surcharge); check-out time is noon; ceiling fan; mastercard payment cards accepted; taxi service; dry cleaning/laundry service; visa payment cards accepted; currency exchange; visa; free self parking; free wi-fi in all rooms; safe-deposit box at front desk; express check-in/check-out; restaurant; english languages spoken; iron/ironing board (on request); barbecue grill(s); luggage storage; wi-fi in public areas; 24-hour front desk; check-in time starts at noon; fireplace; hair dryer (on request); concierge services; room service (limited hours); 24-hour security; mastercard; laundry service; ticket service; tours/ticket assistance; elevator; check-in time ends at noon; free wifi; no cribs (infant beds) available; rooftop terrace; family room; garden; free newspapers in lobby; tours; car park; pets not allowed; private check in/check out; room service; airport transfer; hindi languages spoken; business center; minimum check-in age is 18; newspapers; concierge; free newspaper; smoking area; elevator/lift; laundry facilities",
"dest_code": "D!000853",
"description": "Property Location Located in Jaipur (M.I. Road), Hotel Jai Singh Palace is convenient to Ram Niwas Gardens and Birla Auditorium. This hotel is within close proximity of Central Museum and Heaven-Piercing Minaret.Rooms Treat yourself to a stay in one of the 28 guestrooms, featuring fireplaces. Conveniences include desks and complimentary newspapers, and you can also request irons/ironing boards.Amenities Take in the views from a rooftop terrace and a garden and make use of amenities such as complimentary wireless Internet access. Additional amenities include concierge services and barbecue grills.Dining Enjoy a meal at a restaurant, or stay in and take advantage of the hotel's room service (during limited hours).Business, Other Amenities Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning/laundry services. Free self parking is available onsite.",
"country": "IN",
"code": "H!0393090",
"city_code": "C!008896",
"category": "2.5",
"address": "Gopinath Marg M.I. Road Jaipur 302001 Rajasthan"
},
{
"postal_code": "695 001",
"name": "The Capital - Trivandrum City",
"longitude": "76.947054",
"latitude": "8.494404",
"facilities": "safety deposit boxes; desk; mastercard payment cards accepted; american express payment cards accepted; ironing facilities; check-out time is 11 am; complimentary bottled water; dry cleaning/laundry service; visa payment cards accepted; 24-hour business center; 24-hour room service; currency exchange; coffee/tea maker; free wi-fi in all rooms; satellite/cable tv; restaurant; english languages spoken; internet access – wireless (complimentary); private bathroom; wi-fi in public areas; wifi (surcharge); 24-hour front desk; check-in time starts at noon; total number of rooms - 37; in-room safe; concierge services; flat screen television; mini bar; air conditioning; laundry service; bathrobes; room service (24 hours); television; elevator; facilities for disabled guests; check-in time ends at noon; shower; tours; internet access – wireless; garden; car park; room service; airport transfer; hindi languages spoken; fan; coffee shop; newspapers; daily newspaper; one meeting room; dry cleaning; smoking area; pets allowed",
"dest_code": "D!000882",
"description": "Property Location Located in Thiruvananthapuram, The Capital - Trivandrum City is minutes from Trivandrum Secretariat and close to Shri Padmanabhaswamy Temple. This hotel is within close proximity of Thiruvananthapuram Zoo and Napier Museum.Rooms Make yourself at home in one of the 37 guestrooms. Conveniences include safes and coffee/tea makers.Amenities Make use of convenient amenities, which include wireless Internet access (surcharge) and concierge services.Dining Enjoy a meal at a restaurant, or stay in and take advantage of the hotel's 24-hour room service.Business, Other Amenities Featured amenities include a 24-hour business center and dry cleaning/laundry services.",
"country": "IN",
"code": "H!0248067",
"city_code": "C!027157",
"category": "3",
"address": "Near GPO Pulimoodu Thiruvananthapuram 695 001"
}
],
"total": 20542
}
Get Hotels for the Destination Request
| Method |
URL |
| GET |
api/v3/hotels?destination=<destination> |
Sample Request
| Method |
URL |
| GET |
api/v3/hotels?destination=D!000283 |
Sample Response
{
"hotels": [
{
"postal_code": "00185",
"name": "The Opera",
"longitude": "12.492932",
"latitude": "41.900392",
"facilities": "free breakfast; safety deposit boxes; desk; express check-out; mastercard payment cards accepted; american express payment cards accepted; check-out time is 11 am; spanish languages spoken; balcony/terrace; in room safe; visa payment cards accepted; visa; soundproofed rooms; free wi-fi in all rooms; satellite/cable tv; restaurant; diners club; english languages spoken; iron/ironing board (on request); area shuttle (surcharge); airport transportation (surcharge); internet access – wireless (complimentary); private bathroom; wi-fi in public areas; 24-hour front desk; check-in time starts at noon; in-room climate control (air conditioning); number of floors - 5; total number of rooms - 14; in-room safe; concierge services; bidet; flat screen television; mini bar; air conditioning; mastercard; room service (limited hours); led tv; television; non smoking rooms; elevator; shuttle service; bar; shower; free wifi; tours; rooftop terrace; family room; garden; italian languages spoken; hair dryer; pets not allowed; room service; airport transfer; minibar; shower only; coffee shop; american express; concierge; smoking area; express check-in; shops; elevator/lift; free wired high-speed internet; bathtub",
"dest_code": "D!000283",
"description": "\"Located on Via Nazionale - one of Rome's best known streets and finest shopping areas, you'll find we're deep in the heart of the city's commercial and historical centre. The National Opera Theatre, from which we take our name, is just a few minutes away on foot, as is Piazza Venezia, Piazza Della Repubblica and the Trevi Fountain.\"",
"country": "IT",
"code": "H!0125511",
"city_code": "C!001175",
"category": "3",
"address": "Via Nazionale 36 00185 Rome"
},
{
"postal_code": "00178",
"name": "Appia Park",
"longitude": "12.550872",
"latitude": "41.839206",
"facilities": "security safe (room); free breakfast; ironing facilities; in room safe; visa; parking - onsite; restaurant; voltage 220v; ironing amenities (on request); wi-fi in public areas; internet corner; elevator; large sized lobby; tours; garden; free newspapers in lobby; direct-dial telephone; room service; shower only; concierge; express check-in; desk; seating area; connection for laptop; balcony/terrace; dry cleaning/laundry service; free self parking; soundproofed rooms; number of floors - 2; air conditioning (room); year built 1999; satellite television; iron/ironing board (on request); free wi-fi (public areas); 24-hour front desk; air conditioned (public areas); disabled facilities; snack bar/deli; air conditioning; balcony; free wi-fi; television; shower; premium bedding; free wifi; number of buildings/towers - 3; babysitting available; flat-panel tv; hair dryer; high-speed internet; jcb international; airport transfer; one meeting room; computer station; elevator/lift; car rental services; free toiletries; restaurant(s); babysitting; wedding services; work desk; 2 lifts; non-smoking rooms; free wi-fi in all rooms; no rollaway/extra beds available; diners club; airport transportation (surcharge); internet access – wireless (complimentary); check-in time starts at noon; fitness center; in-room safe; flat screen television; mastercard; tours/ticket assistance; bar; daily housekeeping; gym; pets not allowed; dial-up internet; bar(s); room service from 6:30 to 23:59; breakfast room; fitness facilities; conference facilities; earliest check-in at 11:00; safety deposit boxes; total number of rooms - 102; check-out time is noon; satellite/cable tv; rainfall showerhead; hairdryer; luggage storage; private bathroom; dvd/cd player; hypo-allergenic bedding available; bidet; mini bar; bar/lounge; laundry service; coach parking; coffee shop or café; no cribs (infant beds) available; business centre; car park; minibar; business center; american express; limo or town car service available; multilingual staff; 2 floors; satellite tv service",
"dest_code": "D!000283",
"description": "Appia Park Hotel is an elegant hotel surrounded by greenery and located at only 5 km from Ciampino Airport and just 7 km from the historical center of Rome and the EUR district (Viale Europa). It features comfortable rooms with private balconies at 10 minutes drive from junction 24 of the GRA Highway. The comfortable rooms are decorated in an elegant and functional style and are equipped with satellite TV with Sky channels, Wi-Fi internet connection, minibar and safe. At guests' disposal there is also a bar, a restaurant, a parking, fitness area, a business corner and a conference center consisting of spacious and elegant meeting rooms with a maximum capacity of about 300 people. The property is located close to many points of interest: at 500 meters from the Villa of Quintiles, 1 km from the golf club \"Holy Water\", 3 Km from the Cinecitta film studios. In addition, at less than 3 km from the hotel there is the metro stop \"Arco di Travertino\" (line A), it will easily take you to the city center. The airport Leonardo da Vinci Fiumicino Airport is only 25 kilometers away.",
"country": "IT",
"code": "H!0086409",
"city_code": "C!001175",
"category": "4",
"address": "Via Appia Nuova 934 00178 Roma"
}
],
"total": 2970
}
Get Hotels for the City Request
| Method |
URL |
| GET |
api/v3/hotels?city=<city> |
Sample Request
| Method |
URL |
| GET |
api/v3/hotels?city=C!001118 |
Sample Response
{
"hotels": [
{
"postal_code": "89109",
"name": "Las Vegas Suites at The Signature",
"longitude": "-115.166616",
"latitude": "36.107998",
"facilities": "mastercard; check-in time starts at 3:00 pm; no rollaway/extra beds available; refrigerator; free toiletries; shared bathroom; check-out time is noon; fitness facilities; free valet parking; free wifi; no cribs (infant beds) available; visa; kitchen; cable tv service; outdoor pool; shower/tub combination; minimum check-in age is 21; pets not allowed; sofa bed",
"dest_code": "D!000403",
"description": "Property Location With a stay at SpareTime Resorts at The Signature Condo Hotel in Las Vegas (East of The Strip), you'll be convenient to Crystals at City Center and University of Nevada-Las Vegas. This vacation home is within close proximity of Miracle Mile Shops and T-Mobile Arena.Rooms Make yourself at home in of the guestrooms, featuring kitchens. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include refrigerators and sofa beds.Amenities Enjoy recreational amenities such as an outdoor pool and a fitness center.Business, Other Amenities Free valet parking is available onsite.",
"country": "US",
"code": "H!0401956",
"city_code": "C!001118",
"category": "4",
"address": "135 East Harmon Avenue Las Vegas Nevada 89109"
},
{
"postal_code": "89109",
"name": "Harrah's Las Vegas",
"longitude": "-115.17220949696",
"latitude": "36.120019507539",
"facilities": "alarm clock; discover; american express payment cards accepted; ironing facilities; spanish languages spoken; in room safe; visa; restaurant; separate shower and tub; wi-fi in public areas; breakfast available (surcharge); only dogs are allowed; concierge services; atm/banking; conference space size (feet) - 25000; elevator; tours; internet access – lan; room service; shower only; concierge; conference space size (meters) - 2323; free valet parking; pet maximum weight in lb is 50; conference space; conference center; shops; pets allowed; phone; porter/bellhop; bathtub; nightclub; desk; seating area; visa payment cards accepted; dry cleaning/laundry service; shopping on site; telephone; 24-hour room service; cable tv service; free self parking; iron/ironing board; number of restaurants - 6; hair salon; health club; safe-deposit box at front desk; english languages spoken; blackout drapes/curtains; 24-hour front desk; casino; internet access – lan (charges apply); air conditioning; television; shower; free wifi; hair dryer; spa; salon; daily newspaper; one meeting room; in room video games; elevator/lift; in-room safe (laptop compatible); number of bars/lounges - 4; free wired high-speed internet; hot tub; discover card payment cards accepted; free toiletries; poolside bar; express check-out; wedding services; check-out time is 11 am; steamroom; minimum check-in age is 21; no rollaway/extra beds available; total number of rooms - 2,526; toiletries; diners club; valet parking; spa treatment room(s); in-room climate control (air conditioning); fitness center; check-in time ends at 4 pm; flat screen television; outdoor seasonal pool; mastercard; room service (24 hours); facilities for disabled guests; bar; pay movies; daily housekeeping; free area shuttle; gift shops or newsstand; outdoor pool; sauna; diners club payment cards accepted; full-service spa; check-in time starts at 4 pm; safety deposit boxes; massage; pool sun loungers; pool cabanas (surcharge); atm/cash machine on site; coffee/tea maker; internet access – wireless (charges apply); satellite/cable tv; maximum number of pets per room 2; private bathroom; hypo-allergenic bedding available; mini bar; laundry service; inhouse movies; coffee shop or café; non smoking rooms; spa tub; heating; no cribs (infant beds) available; car park; spa services on site; minibar; business center; american express; limo or town car service available; smoking area; multilingual staff",
"dest_code": "D!000403",
"description": "The Harrah's Las Vegas Casino & Hotel is strategically located in the renowned Las Vegas Strip, a very convenient location for those who wish to discover the most vibrant side of the city. A monorail stop is located at this property, and a daily complimentary shuttle to other Harrah's Entertainment properties is also available. The hotel provides a professional and 24 hour service and boasts incredible facilities for entertainment and relaxation.",
"country": "US",
"code": "H!0078316",
"city_code": "C!001118",
"category": "3",
"address": "3475 Las Vegas Boulevard South Las Vegas Nevada 89109"
}
],
"total": 262
}
Get Hotels for the Airport Request
| Method |
URL |
| GET |
api/v3/hotels?airport=<airport> |
Sample Request
| Method |
URL |
| GET |
api/v3/hotels?airport=A!CIA |
Sample Response
{
"hotels": [
{
"postal_code": "00184",
"name": "Salotto Monti",
"longitude": "12.4865",
"latitude": "41.8997",
"facilities": "library; desk; free toiletries; down comforter; check-out time is 11 am; egyptian-cotton sheets; visa; coffee/tea maker; soundproofed rooms; no rollaway/extra beds available; luggage storage; airport transportation (surcharge); private bathroom; check-in time starts at 2 pm; breakfast available (surcharge); front desk (limited hours); smoke-free property; concierge services; room service (limited hours); air conditioning; mastercard; debit cards not accepted; number of floors - 3; tours/ticket assistance; daily housekeeping; premium bedding; free wifi; heating; rooftop terrace; cruise terminal shuttle (surcharge); flat-panel tv; hair dryer; pets not allowed; number of buildings/towers - 1; minibar; shower only; minimum check-in age is 18; year built 2014; check-in time ends at 9:30 pm; multilingual staff; elevator/lift; in-room safe (laptop compatible); laundry facilities; phone; total number of rooms - 15",
"dest_code": "D!000283",
"description": "Property Location A stay at Salotto Monti places you in the heart of Rome, walking distance from Palazzo Valentini and Trajan's Market. This guesthouse is close to Roman Forum and St. Peter's Basilica.Rooms Make yourself at home in one of the 15 air-conditioned rooms featuring minibars and flat-screen televisions. Your bed comes with down comforters and Egyptian cotton sheets. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with showers feature complimentary toiletries and hair dryers.Amenities Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.Dining Take advantage of the guesthouse's room service (during limited hours).Business, Other Amenities Featured amenities include multilingual staff, luggage storage, and laundry facilities. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a cruise ship terminal shuttle.",
"country": "IT",
"code": "H!0469226",
"city_code": "C!001175",
"category": ".0",
"address": "Via Della Consulta 1b Rione Monti 00184 Roma"
}
],
"total": 2250
}
Get Hotel Details for the Hotel Code
| Method |
URL |
| GET |
api/v3/hotels?hcode=<hotel-code> |
Sample Request
| Method |
URL |
| GET |
api/v3/hotels?hcode=H!0469226 |
Sample Response
{
"hotels": [
{
"postal_code": "00184",
"name": "Salotto Monti",
"longitude": "12.4865",
"latitude": "41.8997",
"facilities": "library; desk; free toiletries; down comforter; check-out time is 11 am; egyptian-cotton sheets; visa; coffee/tea maker; soundproofed rooms; no rollaway/extra beds available; luggage storage; airport transportation (surcharge); private bathroom; check-in time starts at 2 pm; breakfast available (surcharge); front desk (limited hours); smoke-free property; concierge services; room service (limited hours); air conditioning; mastercard; debit cards not accepted; number of floors - 3; tours/ticket assistance; daily housekeeping; premium bedding; free wifi; heating; rooftop terrace; cruise terminal shuttle (surcharge); flat-panel tv; hair dryer; pets not allowed; number of buildings/towers - 1; minibar; shower only; minimum check-in age is 18; year built 2014; check-in time ends at 9:30 pm; multilingual staff; elevator/lift; in-room safe (laptop compatible); laundry facilities; phone; total number of rooms - 15",
"dest_code": "D!000283",
"description": "Property Location A stay at Salotto Monti places you in the heart of Rome, walking distance from Palazzo Valentini and Trajan's Market. This guesthouse is close to Roman Forum and St. Peter's Basilica.Rooms Make yourself at home in one of the 15 air-conditioned rooms featuring minibars and flat-screen televisions. Your bed comes with down comforters and Egyptian cotton sheets. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with showers feature complimentary toiletries and hair dryers.Amenities Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services.Dining Take advantage of the guesthouse's room service (during limited hours).Business, Other Amenities Featured amenities include multilingual staff, luggage storage, and laundry facilities. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a cruise ship terminal shuttle.",
"country": "IT",
"code": "H!0469226",
"city_code": "C!001175",
"category": ".0",
"address": "Via Della Consulta 1b Rione Monti 00184 Roma"
}
],
"total": 1
}