roomorama_api 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +18 -0
- data/.travis.yml +8 -0
- data/CHANGELOG +23 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +77 -0
- data/Rakefile +11 -0
- data/lib/roomorama_api/version.rb +3 -0
- data/lib/roomorama_api.rb +182 -0
- data/roomorama_api.gemspec +23 -0
- data/test/fixtures/destinations/all.json +58174 -0
- data/test/fixtures/favorites/create.json +7 -0
- data/test/fixtures/favorites/list.json +28 -0
- data/test/fixtures/hosts/properties/list.json +84 -0
- data/test/fixtures/hosts/properties/show.json +81 -0
- data/test/fixtures/perks/get_data.json +25 -0
- data/test/fixtures/perks/list.json +453 -0
- data/test/fixtures/properties/availabilities.json +346 -0
- data/test/fixtures/properties/find.json +250 -0
- data/test/fixtures/properties/find_similar.json +119 -0
- data/test/fixtures/properties/get_data.json +105 -0
- data/test/fixtures/properties/price_check.json +29 -0
- data/test/fixtures/properties/reviews.json +149 -0
- data/test/fixtures/users/get_data.json +13 -0
- data/test/fixtures/users/me.json +29 -0
- data/test/fixtures/users/register.json +29 -0
- data/test/fixtures/users/reviews.json +989 -0
- data/test/fixtures/users/update_profile.json +13 -0
- data/test/minitest_helper.rb +57 -0
- data/test/roomorama_api_test.rb +175 -0
- metadata +161 -0
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": [
|
|
3
|
+
{
|
|
4
|
+
"date": "2013-12-01",
|
|
5
|
+
"available": true,
|
|
6
|
+
"currency_code": "USD",
|
|
7
|
+
"currency_display": "US$",
|
|
8
|
+
"nightly_rate": 178,
|
|
9
|
+
"weekly_rate": 1246,
|
|
10
|
+
"monthly_rate": 5340,
|
|
11
|
+
"can_checkin": true,
|
|
12
|
+
"can_checkout": true
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"date": "2013-12-02",
|
|
16
|
+
"available": true,
|
|
17
|
+
"currency_code": "USD",
|
|
18
|
+
"currency_display": "US$",
|
|
19
|
+
"nightly_rate": 178,
|
|
20
|
+
"weekly_rate": 1246,
|
|
21
|
+
"monthly_rate": 5340,
|
|
22
|
+
"can_checkin": true,
|
|
23
|
+
"can_checkout": true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"date": "2013-12-03",
|
|
27
|
+
"available": true,
|
|
28
|
+
"currency_code": "USD",
|
|
29
|
+
"currency_display": "US$",
|
|
30
|
+
"nightly_rate": 178,
|
|
31
|
+
"weekly_rate": 1246,
|
|
32
|
+
"monthly_rate": 5340,
|
|
33
|
+
"can_checkin": true,
|
|
34
|
+
"can_checkout": true
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"date": "2013-12-04",
|
|
38
|
+
"available": true,
|
|
39
|
+
"currency_code": "USD",
|
|
40
|
+
"currency_display": "US$",
|
|
41
|
+
"nightly_rate": 178,
|
|
42
|
+
"weekly_rate": 1246,
|
|
43
|
+
"monthly_rate": 5340,
|
|
44
|
+
"can_checkin": true,
|
|
45
|
+
"can_checkout": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"date": "2013-12-05",
|
|
49
|
+
"available": true,
|
|
50
|
+
"currency_code": "USD",
|
|
51
|
+
"currency_display": "US$",
|
|
52
|
+
"nightly_rate": 178,
|
|
53
|
+
"weekly_rate": 1246,
|
|
54
|
+
"monthly_rate": 5340,
|
|
55
|
+
"can_checkin": true,
|
|
56
|
+
"can_checkout": true
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"date": "2013-12-06",
|
|
60
|
+
"available": true,
|
|
61
|
+
"currency_code": "USD",
|
|
62
|
+
"currency_display": "US$",
|
|
63
|
+
"nightly_rate": 178,
|
|
64
|
+
"weekly_rate": 1246,
|
|
65
|
+
"monthly_rate": 5340,
|
|
66
|
+
"can_checkin": true,
|
|
67
|
+
"can_checkout": true
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"date": "2013-12-07",
|
|
71
|
+
"available": true,
|
|
72
|
+
"currency_code": "USD",
|
|
73
|
+
"currency_display": "US$",
|
|
74
|
+
"nightly_rate": 178,
|
|
75
|
+
"weekly_rate": 1246,
|
|
76
|
+
"monthly_rate": 5340,
|
|
77
|
+
"can_checkin": true,
|
|
78
|
+
"can_checkout": true
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"date": "2013-12-08",
|
|
82
|
+
"available": true,
|
|
83
|
+
"currency_code": "USD",
|
|
84
|
+
"currency_display": "US$",
|
|
85
|
+
"nightly_rate": 178,
|
|
86
|
+
"weekly_rate": 1246,
|
|
87
|
+
"monthly_rate": 5340,
|
|
88
|
+
"can_checkin": true,
|
|
89
|
+
"can_checkout": true
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"date": "2013-12-09",
|
|
93
|
+
"available": true,
|
|
94
|
+
"currency_code": "USD",
|
|
95
|
+
"currency_display": "US$",
|
|
96
|
+
"nightly_rate": 178,
|
|
97
|
+
"weekly_rate": 1246,
|
|
98
|
+
"monthly_rate": 5340,
|
|
99
|
+
"can_checkin": true,
|
|
100
|
+
"can_checkout": true
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"date": "2013-12-10",
|
|
104
|
+
"available": true,
|
|
105
|
+
"currency_code": "USD",
|
|
106
|
+
"currency_display": "US$",
|
|
107
|
+
"nightly_rate": 178,
|
|
108
|
+
"weekly_rate": 1246,
|
|
109
|
+
"monthly_rate": 5340,
|
|
110
|
+
"can_checkin": true,
|
|
111
|
+
"can_checkout": true
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"date": "2013-12-11",
|
|
115
|
+
"available": true,
|
|
116
|
+
"currency_code": "USD",
|
|
117
|
+
"currency_display": "US$",
|
|
118
|
+
"nightly_rate": 178,
|
|
119
|
+
"weekly_rate": 1246,
|
|
120
|
+
"monthly_rate": 5340,
|
|
121
|
+
"can_checkin": true,
|
|
122
|
+
"can_checkout": true
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"date": "2013-12-12",
|
|
126
|
+
"available": true,
|
|
127
|
+
"currency_code": "USD",
|
|
128
|
+
"currency_display": "US$",
|
|
129
|
+
"nightly_rate": 178,
|
|
130
|
+
"weekly_rate": 1246,
|
|
131
|
+
"monthly_rate": 5340,
|
|
132
|
+
"can_checkin": true,
|
|
133
|
+
"can_checkout": true
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"date": "2013-12-13",
|
|
137
|
+
"available": true,
|
|
138
|
+
"currency_code": "USD",
|
|
139
|
+
"currency_display": "US$",
|
|
140
|
+
"nightly_rate": 178,
|
|
141
|
+
"weekly_rate": 1246,
|
|
142
|
+
"monthly_rate": 5340,
|
|
143
|
+
"can_checkin": true,
|
|
144
|
+
"can_checkout": true
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"date": "2013-12-14",
|
|
148
|
+
"available": true,
|
|
149
|
+
"currency_code": "USD",
|
|
150
|
+
"currency_display": "US$",
|
|
151
|
+
"nightly_rate": 178,
|
|
152
|
+
"weekly_rate": 1246,
|
|
153
|
+
"monthly_rate": 5340,
|
|
154
|
+
"can_checkin": true,
|
|
155
|
+
"can_checkout": true
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"date": "2013-12-15",
|
|
159
|
+
"available": true,
|
|
160
|
+
"currency_code": "USD",
|
|
161
|
+
"currency_display": "US$",
|
|
162
|
+
"nightly_rate": 178,
|
|
163
|
+
"weekly_rate": 1246,
|
|
164
|
+
"monthly_rate": 5340,
|
|
165
|
+
"can_checkin": true,
|
|
166
|
+
"can_checkout": true
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"date": "2013-12-16",
|
|
170
|
+
"available": true,
|
|
171
|
+
"currency_code": "USD",
|
|
172
|
+
"currency_display": "US$",
|
|
173
|
+
"nightly_rate": 178,
|
|
174
|
+
"weekly_rate": 1246,
|
|
175
|
+
"monthly_rate": 5340,
|
|
176
|
+
"can_checkin": true,
|
|
177
|
+
"can_checkout": true
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"date": "2013-12-17",
|
|
181
|
+
"available": true,
|
|
182
|
+
"currency_code": "USD",
|
|
183
|
+
"currency_display": "US$",
|
|
184
|
+
"nightly_rate": 178,
|
|
185
|
+
"weekly_rate": 1246,
|
|
186
|
+
"monthly_rate": 5340,
|
|
187
|
+
"can_checkin": true,
|
|
188
|
+
"can_checkout": true
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"date": "2013-12-18",
|
|
192
|
+
"available": true,
|
|
193
|
+
"currency_code": "USD",
|
|
194
|
+
"currency_display": "US$",
|
|
195
|
+
"nightly_rate": 178,
|
|
196
|
+
"weekly_rate": 1246,
|
|
197
|
+
"monthly_rate": 5340,
|
|
198
|
+
"can_checkin": true,
|
|
199
|
+
"can_checkout": true
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"date": "2013-12-19",
|
|
203
|
+
"available": true,
|
|
204
|
+
"currency_code": "USD",
|
|
205
|
+
"currency_display": "US$",
|
|
206
|
+
"nightly_rate": 178,
|
|
207
|
+
"weekly_rate": 1246,
|
|
208
|
+
"monthly_rate": 5340,
|
|
209
|
+
"can_checkin": true,
|
|
210
|
+
"can_checkout": true
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"date": "2013-12-20",
|
|
214
|
+
"available": true,
|
|
215
|
+
"currency_code": "USD",
|
|
216
|
+
"currency_display": "US$",
|
|
217
|
+
"nightly_rate": 188,
|
|
218
|
+
"weekly_rate": 1316,
|
|
219
|
+
"monthly_rate": 5640,
|
|
220
|
+
"can_checkin": true,
|
|
221
|
+
"can_checkout": true
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"date": "2013-12-21",
|
|
225
|
+
"available": true,
|
|
226
|
+
"currency_code": "USD",
|
|
227
|
+
"currency_display": "US$",
|
|
228
|
+
"nightly_rate": 188,
|
|
229
|
+
"weekly_rate": 1316,
|
|
230
|
+
"monthly_rate": 5640,
|
|
231
|
+
"can_checkin": true,
|
|
232
|
+
"can_checkout": true
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"date": "2013-12-22",
|
|
236
|
+
"available": true,
|
|
237
|
+
"currency_code": "USD",
|
|
238
|
+
"currency_display": "US$",
|
|
239
|
+
"nightly_rate": 188,
|
|
240
|
+
"weekly_rate": 1316,
|
|
241
|
+
"monthly_rate": 5640,
|
|
242
|
+
"can_checkin": true,
|
|
243
|
+
"can_checkout": true
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"date": "2013-12-23",
|
|
247
|
+
"available": true,
|
|
248
|
+
"currency_code": "USD",
|
|
249
|
+
"currency_display": "US$",
|
|
250
|
+
"nightly_rate": 188,
|
|
251
|
+
"weekly_rate": 1316,
|
|
252
|
+
"monthly_rate": 5640,
|
|
253
|
+
"can_checkin": true,
|
|
254
|
+
"can_checkout": true
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"date": "2013-12-24",
|
|
258
|
+
"available": true,
|
|
259
|
+
"currency_code": "USD",
|
|
260
|
+
"currency_display": "US$",
|
|
261
|
+
"nightly_rate": 188,
|
|
262
|
+
"weekly_rate": 1316,
|
|
263
|
+
"monthly_rate": 5640,
|
|
264
|
+
"can_checkin": true,
|
|
265
|
+
"can_checkout": true
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"date": "2013-12-25",
|
|
269
|
+
"available": true,
|
|
270
|
+
"currency_code": "USD",
|
|
271
|
+
"currency_display": "US$",
|
|
272
|
+
"nightly_rate": 188,
|
|
273
|
+
"weekly_rate": 1316,
|
|
274
|
+
"monthly_rate": 5640,
|
|
275
|
+
"can_checkin": true,
|
|
276
|
+
"can_checkout": true
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"date": "2013-12-26",
|
|
280
|
+
"available": true,
|
|
281
|
+
"currency_code": "USD",
|
|
282
|
+
"currency_display": "US$",
|
|
283
|
+
"nightly_rate": 188,
|
|
284
|
+
"weekly_rate": 1316,
|
|
285
|
+
"monthly_rate": 5640,
|
|
286
|
+
"can_checkin": true,
|
|
287
|
+
"can_checkout": true
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"date": "2013-12-27",
|
|
291
|
+
"available": true,
|
|
292
|
+
"currency_code": "USD",
|
|
293
|
+
"currency_display": "US$",
|
|
294
|
+
"nightly_rate": 188,
|
|
295
|
+
"weekly_rate": 1316,
|
|
296
|
+
"monthly_rate": 5640,
|
|
297
|
+
"can_checkin": true,
|
|
298
|
+
"can_checkout": true
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"date": "2013-12-28",
|
|
302
|
+
"available": true,
|
|
303
|
+
"currency_code": "USD",
|
|
304
|
+
"currency_display": "US$",
|
|
305
|
+
"nightly_rate": 198,
|
|
306
|
+
"weekly_rate": 1386,
|
|
307
|
+
"monthly_rate": 5940,
|
|
308
|
+
"can_checkin": true,
|
|
309
|
+
"can_checkout": true
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"date": "2013-12-29",
|
|
313
|
+
"available": true,
|
|
314
|
+
"currency_code": "USD",
|
|
315
|
+
"currency_display": "US$",
|
|
316
|
+
"nightly_rate": 198,
|
|
317
|
+
"weekly_rate": 1386,
|
|
318
|
+
"monthly_rate": 5940,
|
|
319
|
+
"can_checkin": true,
|
|
320
|
+
"can_checkout": true
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"date": "2013-12-30",
|
|
324
|
+
"available": true,
|
|
325
|
+
"currency_code": "USD",
|
|
326
|
+
"currency_display": "US$",
|
|
327
|
+
"nightly_rate": 198,
|
|
328
|
+
"weekly_rate": 1386,
|
|
329
|
+
"monthly_rate": 5940,
|
|
330
|
+
"can_checkin": true,
|
|
331
|
+
"can_checkout": true
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"date": "2013-12-31",
|
|
335
|
+
"available": true,
|
|
336
|
+
"currency_code": "USD",
|
|
337
|
+
"currency_display": "US$",
|
|
338
|
+
"nightly_rate": 198,
|
|
339
|
+
"weekly_rate": 1386,
|
|
340
|
+
"monthly_rate": 5940,
|
|
341
|
+
"can_checkin": true,
|
|
342
|
+
"can_checkout": true
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"status": 200
|
|
346
|
+
}
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": [
|
|
3
|
+
{
|
|
4
|
+
"id": 67384,
|
|
5
|
+
"title": "Tiffany & Co. 2br Boutique Suite",
|
|
6
|
+
"type": "apartment",
|
|
7
|
+
"subtype": "apartment",
|
|
8
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/geylang/apartment/67384",
|
|
9
|
+
"num_rooms": 2,
|
|
10
|
+
"max_guests": 4,
|
|
11
|
+
"min_stay": 3,
|
|
12
|
+
"price": 138,
|
|
13
|
+
"currency_code": "SGD",
|
|
14
|
+
"currency_display": "S$",
|
|
15
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/756081/756081_search_result.jpg",
|
|
16
|
+
"city": "Singapore",
|
|
17
|
+
"country_code": "SG",
|
|
18
|
+
"lat": "1.3335272",
|
|
19
|
+
"lng": "103.8791197",
|
|
20
|
+
"host": {
|
|
21
|
+
"id": 176873,
|
|
22
|
+
"display": "ricktanchilie",
|
|
23
|
+
"url": "https://roomorama.com/users/ricktanchilie"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": 73185,
|
|
28
|
+
"title": "Retrolicious Penthouse @Tiong Bahru",
|
|
29
|
+
"type": "apartment",
|
|
30
|
+
"subtype": "apartment",
|
|
31
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/tiong-bahru/apartment/73185",
|
|
32
|
+
"num_rooms": 2,
|
|
33
|
+
"max_guests": 2,
|
|
34
|
+
"min_stay": 7,
|
|
35
|
+
"price": 320,
|
|
36
|
+
"currency_code": "SGD",
|
|
37
|
+
"currency_display": "S$",
|
|
38
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/883042/883042_search_result.jpg",
|
|
39
|
+
"city": "Singapore",
|
|
40
|
+
"country_code": "SG",
|
|
41
|
+
"lat": "1.28474",
|
|
42
|
+
"lng": "103.829353",
|
|
43
|
+
"host": {
|
|
44
|
+
"id": 211846,
|
|
45
|
+
"display": "benjaminezekieltan",
|
|
46
|
+
"url": "https://roomorama.com/users/benjaminezekieltan"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": 76289,
|
|
51
|
+
"title": "3 bed room apartment near sentosa",
|
|
52
|
+
"type": "apartment",
|
|
53
|
+
"subtype": "apartment_hotel",
|
|
54
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/clementi/apartment/76289",
|
|
55
|
+
"num_rooms": 3,
|
|
56
|
+
"max_guests": 6,
|
|
57
|
+
"min_stay": 5,
|
|
58
|
+
"price": 350,
|
|
59
|
+
"currency_code": "SGD",
|
|
60
|
+
"currency_display": "S$",
|
|
61
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/880292/880292_search_result.jpg",
|
|
62
|
+
"city": "Singapore",
|
|
63
|
+
"country_code": "SG",
|
|
64
|
+
"lat": "1.2904405",
|
|
65
|
+
"lng": "103.7740259",
|
|
66
|
+
"host": {
|
|
67
|
+
"id": 246447,
|
|
68
|
+
"display": "vera88",
|
|
69
|
+
"url": "https://roomorama.com/users/vera88"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": 13348,
|
|
74
|
+
"title": "Budget & Cosy Apartment Singapore",
|
|
75
|
+
"type": "apartment",
|
|
76
|
+
"subtype": "apartment",
|
|
77
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/geylang/apartment/13348",
|
|
78
|
+
"num_rooms": 3,
|
|
79
|
+
"max_guests": 5,
|
|
80
|
+
"min_stay": 3,
|
|
81
|
+
"price": 185,
|
|
82
|
+
"currency_code": "SGD",
|
|
83
|
+
"currency_display": "S$",
|
|
84
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/152512/152512_search_result.jpg",
|
|
85
|
+
"city": "Singapore",
|
|
86
|
+
"country_code": "SG",
|
|
87
|
+
"lat": "1.315500021",
|
|
88
|
+
"lng": "103.8895492554",
|
|
89
|
+
"host": {
|
|
90
|
+
"id": 83452,
|
|
91
|
+
"display": "Yacool",
|
|
92
|
+
"url": "https://roomorama.com/users/Yacool"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": 69513,
|
|
97
|
+
"title": "Central Family Friendly Apartment",
|
|
98
|
+
"type": "apartment",
|
|
99
|
+
"subtype": "condo",
|
|
100
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/orchard/apartment/69513",
|
|
101
|
+
"num_rooms": 4,
|
|
102
|
+
"max_guests": 8,
|
|
103
|
+
"min_stay": 7,
|
|
104
|
+
"price": 350,
|
|
105
|
+
"currency_code": "SGD",
|
|
106
|
+
"currency_display": "S$",
|
|
107
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/784274/784274_search_result.jpg",
|
|
108
|
+
"city": "Singapore",
|
|
109
|
+
"country_code": "SG",
|
|
110
|
+
"lat": "1.2948254",
|
|
111
|
+
"lng": "103.8400993",
|
|
112
|
+
"host": {
|
|
113
|
+
"id": 227378,
|
|
114
|
+
"display": "RaeBen99",
|
|
115
|
+
"url": "https://roomorama.com/users/RaeBen99"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"id": 61158,
|
|
120
|
+
"title": "The Modern Oriental 2Br Apt",
|
|
121
|
+
"type": "apartment",
|
|
122
|
+
"subtype": "serviced_apartment",
|
|
123
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/marina-bay/apartment/61158",
|
|
124
|
+
"num_rooms": 2,
|
|
125
|
+
"max_guests": 4,
|
|
126
|
+
"min_stay": 7,
|
|
127
|
+
"price": 265,
|
|
128
|
+
"currency_code": "SGD",
|
|
129
|
+
"currency_display": "S$",
|
|
130
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/679831/679831_search_result.jpg",
|
|
131
|
+
"city": "Singapore",
|
|
132
|
+
"country_code": "SG",
|
|
133
|
+
"lat": "1.276109",
|
|
134
|
+
"lng": "103.845924",
|
|
135
|
+
"host": {
|
|
136
|
+
"id": 101180,
|
|
137
|
+
"display": "Homestead",
|
|
138
|
+
"certified": true,
|
|
139
|
+
"url": "https://roomorama.com/users/Homestead"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": 63421,
|
|
144
|
+
"title": "Friendly Condominium: Whole Flat",
|
|
145
|
+
"type": "apartment",
|
|
146
|
+
"subtype": "condo",
|
|
147
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/little-india/apartment/63421",
|
|
148
|
+
"num_rooms": 2,
|
|
149
|
+
"max_guests": 6,
|
|
150
|
+
"min_stay": 3,
|
|
151
|
+
"price": 160,
|
|
152
|
+
"currency_code": "SGD",
|
|
153
|
+
"currency_display": "S$",
|
|
154
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/711037/711037_search_result.jpg",
|
|
155
|
+
"city": "Singapore",
|
|
156
|
+
"country_code": "SG",
|
|
157
|
+
"lat": "1.3287112635",
|
|
158
|
+
"lng": "103.8652136121",
|
|
159
|
+
"host": {
|
|
160
|
+
"id": 193768,
|
|
161
|
+
"display": "diepttn",
|
|
162
|
+
"certified": true,
|
|
163
|
+
"url": "https://roomorama.com/users/diepttn"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": 61165,
|
|
168
|
+
"title": "Scandinavian/Chinoiserie 3Br Apt",
|
|
169
|
+
"type": "apartment",
|
|
170
|
+
"subtype": "serviced_apartment",
|
|
171
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/marina-bay/apartment/61165",
|
|
172
|
+
"num_rooms": 3,
|
|
173
|
+
"max_guests": 6,
|
|
174
|
+
"min_stay": 7,
|
|
175
|
+
"price": 315,
|
|
176
|
+
"currency_code": "SGD",
|
|
177
|
+
"currency_display": "S$",
|
|
178
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/680012/680012_search_result.jpg",
|
|
179
|
+
"city": "Singapore",
|
|
180
|
+
"country_code": "SG",
|
|
181
|
+
"lat": "1.276109",
|
|
182
|
+
"lng": "103.845924",
|
|
183
|
+
"host": {
|
|
184
|
+
"id": 101180,
|
|
185
|
+
"display": "Homestead",
|
|
186
|
+
"certified": true,
|
|
187
|
+
"url": "https://roomorama.com/users/Homestead"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": 18670,
|
|
192
|
+
"title": "Modern themed 3br apt",
|
|
193
|
+
"type": "apartment",
|
|
194
|
+
"subtype": "serviced_apartment",
|
|
195
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/holland-village/apartment/18670",
|
|
196
|
+
"num_rooms": 3,
|
|
197
|
+
"max_guests": 6,
|
|
198
|
+
"min_stay": 7,
|
|
199
|
+
"price": 370,
|
|
200
|
+
"currency_code": "SGD",
|
|
201
|
+
"currency_display": "S$",
|
|
202
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/214835/214835_search_result.jpg",
|
|
203
|
+
"city": "Singapore",
|
|
204
|
+
"country_code": "SG",
|
|
205
|
+
"lat": "1.3035520315",
|
|
206
|
+
"lng": "103.7842483521",
|
|
207
|
+
"host": {
|
|
208
|
+
"id": 101180,
|
|
209
|
+
"display": "Homestead",
|
|
210
|
+
"certified": true,
|
|
211
|
+
"url": "https://roomorama.com/users/Homestead"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": 18585,
|
|
216
|
+
"title": "1920s Shangai New Millennium 2bdr apt",
|
|
217
|
+
"type": "apartment",
|
|
218
|
+
"subtype": "serviced_apartment",
|
|
219
|
+
"url": "https://roomorama.com/short-term-rentals/singapore/holland-village/apartment/18585",
|
|
220
|
+
"num_rooms": 2,
|
|
221
|
+
"max_guests": 4,
|
|
222
|
+
"min_stay": 7,
|
|
223
|
+
"price": 350,
|
|
224
|
+
"currency_code": "SGD",
|
|
225
|
+
"currency_display": "S$",
|
|
226
|
+
"thumbnail": "https://duyhudmhxzxmd.cloudfront.net/photos/rooms/213754/213754_search_result.jpg",
|
|
227
|
+
"city": "Singapore",
|
|
228
|
+
"country_code": "SG",
|
|
229
|
+
"lat": "1.3056900501",
|
|
230
|
+
"lng": "103.7838668823",
|
|
231
|
+
"host": {
|
|
232
|
+
"id": 101180,
|
|
233
|
+
"display": "Homestead",
|
|
234
|
+
"certified": true,
|
|
235
|
+
"url": "https://roomorama.com/users/Homestead"
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"min_price": "28.0",
|
|
240
|
+
"max_price": "642.0",
|
|
241
|
+
"pagination": {
|
|
242
|
+
"previous": 0,
|
|
243
|
+
"next": 2,
|
|
244
|
+
"current": 1,
|
|
245
|
+
"per_page": 10,
|
|
246
|
+
"count": 23,
|
|
247
|
+
"pages": 3
|
|
248
|
+
},
|
|
249
|
+
"status": 200
|
|
250
|
+
}
|