
Kayak Hotels Scraper
Pricing
$30.00/month + usage

Kayak Hotels Scraper
Scrape hotels prices from Kayak.com
0.0 (0)
Pricing
$30.00/month + usage
3
Monthly users
1
Runs succeeded
>99%
Response time
21 hours
Last modified
a month ago
You can access the Kayak Hotels Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1{
2 "openapi": "3.0.1",
3 "info": {
4 "version": "0.2",
5 "x-build-id": "lp0bbKyDbzWq1e3MN"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/jupri~kayak-hotels/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-jupri-kayak-hotels",
16 "x-openai-isConsequential": false,
17 "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18 "tags": [
19 "Run Actor"
20 ],
21 "requestBody": {
22 "required": true,
23 "content": {
24 "application/json": {
25 "schema": {
26 "$ref": "#/components/schemas/inputSchema"
27 }
28 }
29 }
30 },
31 "parameters": [
32 {
33 "name": "token",
34 "in": "query",
35 "required": true,
36 "schema": {
37 "type": "string"
38 },
39 "description": "Enter your Apify token here"
40 }
41 ],
42 "responses": {
43 "200": {
44 "description": "OK"
45 }
46 }
47 }
48 },
49 "/acts/jupri~kayak-hotels/runs": {
50 "post": {
51 "operationId": "runs-sync-jupri-kayak-hotels",
52 "x-openai-isConsequential": false,
53 "summary": "Executes an Actor and returns information about the initiated run in response.",
54 "tags": [
55 "Run Actor"
56 ],
57 "requestBody": {
58 "required": true,
59 "content": {
60 "application/json": {
61 "schema": {
62 "$ref": "#/components/schemas/inputSchema"
63 }
64 }
65 }
66 },
67 "parameters": [
68 {
69 "name": "token",
70 "in": "query",
71 "required": true,
72 "schema": {
73 "type": "string"
74 },
75 "description": "Enter your Apify token here"
76 }
77 ],
78 "responses": {
79 "200": {
80 "description": "OK",
81 "content": {
82 "application/json": {
83 "schema": {
84 "$ref": "#/components/schemas/runsResponseSchema"
85 }
86 }
87 }
88 }
89 }
90 }
91 },
92 "/acts/jupri~kayak-hotels/run-sync": {
93 "post": {
94 "operationId": "run-sync-jupri-kayak-hotels",
95 "x-openai-isConsequential": false,
96 "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97 "tags": [
98 "Run Actor"
99 ],
100 "requestBody": {
101 "required": true,
102 "content": {
103 "application/json": {
104 "schema": {
105 "$ref": "#/components/schemas/inputSchema"
106 }
107 }
108 }
109 },
110 "parameters": [
111 {
112 "name": "token",
113 "in": "query",
114 "required": true,
115 "schema": {
116 "type": "string"
117 },
118 "description": "Enter your Apify token here"
119 }
120 ],
121 "responses": {
122 "200": {
123 "description": "OK"
124 }
125 }
126 }
127 }
128 },
129 "components": {
130 "schemas": {
131 "inputSchema": {
132 "type": "object",
133 "required": [
134 "location"
135 ],
136 "properties": {
137 "location": {
138 "title": "Location",
139 "type": "string",
140 "description": "Where are you going ?"
141 },
142 "check_in": {
143 "title": "Check-in",
144 "type": "string",
145 "description": "YYYY-MM-DD <i>(default = tomorrow+1)</i>"
146 },
147 "check_out": {
148 "title": "Check-out",
149 "type": "string",
150 "description": "YYYY-MM-DD <i>(default = tomorrow+2)</i>"
151 },
152 "guest_adults": {
153 "title": "Adults",
154 "type": "integer",
155 "description": "",
156 "default": 1
157 },
158 "guest_children": {
159 "title": "Children",
160 "type": "integer",
161 "description": "",
162 "default": 0
163 },
164 "room_count": {
165 "title": "Rooms",
166 "type": "integer",
167 "description": "",
168 "default": 1
169 },
170 "price_mode": {
171 "title": "Price Mode",
172 "enum": [
173 "nightly-base",
174 "nightly-total",
175 "total"
176 ],
177 "type": "string",
178 "description": ""
179 },
180 "currency": {
181 "title": "Currency",
182 "type": "string",
183 "description": "",
184 "default": "USD"
185 },
186 "sort": {
187 "title": "Sorting",
188 "enum": [
189 "rank",
190 "points",
191 "price",
192 "distance",
193 "deals",
194 "userRating",
195 "stars"
196 ],
197 "type": "string",
198 "description": ""
199 },
200 "limit": {
201 "title": "Limit",
202 "type": "integer",
203 "description": "try 10000 (default = 5)",
204 "default": 5
205 },
206 "includes:amenities": {
207 "title": "amenities",
208 "type": "boolean",
209 "description": "Hotel Amenities"
210 },
211 "includes:brands": {
212 "title": "Brands",
213 "type": "boolean",
214 "description": "Brands Info"
215 },
216 "includes:type": {
217 "title": "Type",
218 "type": "boolean",
219 "description": "Hotel type"
220 },
221 "includes:bookingsites": {
222 "title": "Booking Sites",
223 "type": "boolean",
224 "description": ""
225 },
226 "includes:freebies": {
227 "title": "Freebies",
228 "type": "boolean",
229 "description": ""
230 },
231 "includes:neighborhood": {
232 "title": "Neighborhood",
233 "type": "boolean",
234 "description": ""
235 },
236 "includes:overview": {
237 "title": "Overview",
238 "type": "boolean",
239 "description": "Hotel Overview"
240 },
241 "includes:promotedhotel": {
242 "title": "Promoted Hotel",
243 "type": "boolean",
244 "description": ""
245 },
246 "includes:rentalinformation": {
247 "title": "Rental Information",
248 "type": "boolean",
249 "description": ""
250 },
251 "includes:nearbylandmarks": {
252 "title": "Nearby Landmarks",
253 "type": "boolean",
254 "description": ""
255 },
256 "includes:nearbytransport": {
257 "title": "Nearby Transport",
258 "type": "boolean",
259 "description": ""
260 },
261 "includes:reviews": {
262 "title": "Reviews",
263 "type": "boolean",
264 "description": ""
265 },
266 "includes:photos": {
267 "title": "Photos",
268 "type": "boolean",
269 "description": ""
270 },
271 "includes:similar": {
272 "title": "Similar Hotels",
273 "type": "boolean",
274 "description": ""
275 },
276 "includes:offers": {
277 "title": "Price Offers",
278 "type": "boolean",
279 "description": "make sure to input check_in and check_out correctly."
280 },
281 "dev_proxy_config": {
282 "title": "🌐 PROXY NETWORKING",
283 "type": "object",
284 "description": "<b>Supported protocol:</b><br><br><b>HTTP(S), SOCKS5</b><br><code>{http|socks5}://{user:pass}@{hostname|ip-address}:port</code><br><br><b><a href=https://scrapeops.io/app/register/main target=_blank>ScrapeOps.IO</a></b><br><code>scrapeops://{api-key}</code><br><br><b>Example</b>: <code>socks5://example.com:9000</code>"
285 },
286 "dev_transform_enable": {
287 "title": "Enable Custom Fields",
288 "type": "boolean",
289 "description": ""
290 },
291 "dev_transform_fields": {
292 "title": "Fields List",
293 "type": "array",
294 "description": "",
295 "items": {
296 "type": "object",
297 "required": [
298 "key",
299 "value"
300 ],
301 "properties": {
302 "key": {
303 "type": "string",
304 "title": "Key"
305 },
306 "value": {
307 "type": "string",
308 "title": "Value"
309 }
310 }
311 }
312 },
313 "dev_dataset_enable": {
314 "title": "Enable Custom Storage",
315 "type": "boolean",
316 "description": ""
317 },
318 "dev_dataset_clear": {
319 "title": "Clear Storage",
320 "type": "boolean",
321 "description": "Clear Dataset before insert/update."
322 },
323 "dev_dataset_name": {
324 "title": "Dataset Name",
325 "type": "string",
326 "description": "Use mask to customize dataset name:<br><br><code>{ACTOR} = actor name<br>{DATE} = date (YYYYMMDD)<br>{TIME} = time (HHMMSS)</code><br><br><i>default: <code>data-{ACTOR}-{DATE}-{TIME}</code></i>"
327 },
328 "dev_dataset_key": {
329 "title": "Unique Column",
330 "type": "string",
331 "description": "Column name from results to use as Key for Key-Value Storage. For example: <code>product_id</code> (must be unique)."
332 }
333 }
334 },
335 "runsResponseSchema": {
336 "type": "object",
337 "properties": {
338 "data": {
339 "type": "object",
340 "properties": {
341 "id": {
342 "type": "string"
343 },
344 "actId": {
345 "type": "string"
346 },
347 "userId": {
348 "type": "string"
349 },
350 "startedAt": {
351 "type": "string",
352 "format": "date-time",
353 "example": "2025-01-08T00:00:00.000Z"
354 },
355 "finishedAt": {
356 "type": "string",
357 "format": "date-time",
358 "example": "2025-01-08T00:00:00.000Z"
359 },
360 "status": {
361 "type": "string",
362 "example": "READY"
363 },
364 "meta": {
365 "type": "object",
366 "properties": {
367 "origin": {
368 "type": "string",
369 "example": "API"
370 },
371 "userAgent": {
372 "type": "string"
373 }
374 }
375 },
376 "stats": {
377 "type": "object",
378 "properties": {
379 "inputBodyLen": {
380 "type": "integer",
381 "example": 2000
382 },
383 "rebootCount": {
384 "type": "integer",
385 "example": 0
386 },
387 "restartCount": {
388 "type": "integer",
389 "example": 0
390 },
391 "resurrectCount": {
392 "type": "integer",
393 "example": 0
394 },
395 "computeUnits": {
396 "type": "integer",
397 "example": 0
398 }
399 }
400 },
401 "options": {
402 "type": "object",
403 "properties": {
404 "build": {
405 "type": "string",
406 "example": "latest"
407 },
408 "timeoutSecs": {
409 "type": "integer",
410 "example": 300
411 },
412 "memoryMbytes": {
413 "type": "integer",
414 "example": 1024
415 },
416 "diskMbytes": {
417 "type": "integer",
418 "example": 2048
419 }
420 }
421 },
422 "buildId": {
423 "type": "string"
424 },
425 "defaultKeyValueStoreId": {
426 "type": "string"
427 },
428 "defaultDatasetId": {
429 "type": "string"
430 },
431 "defaultRequestQueueId": {
432 "type": "string"
433 },
434 "buildNumber": {
435 "type": "string",
436 "example": "1.0.0"
437 },
438 "containerUrl": {
439 "type": "string"
440 },
441 "usage": {
442 "type": "object",
443 "properties": {
444 "ACTOR_COMPUTE_UNITS": {
445 "type": "integer",
446 "example": 0
447 },
448 "DATASET_READS": {
449 "type": "integer",
450 "example": 0
451 },
452 "DATASET_WRITES": {
453 "type": "integer",
454 "example": 0
455 },
456 "KEY_VALUE_STORE_READS": {
457 "type": "integer",
458 "example": 0
459 },
460 "KEY_VALUE_STORE_WRITES": {
461 "type": "integer",
462 "example": 1
463 },
464 "KEY_VALUE_STORE_LISTS": {
465 "type": "integer",
466 "example": 0
467 },
468 "REQUEST_QUEUE_READS": {
469 "type": "integer",
470 "example": 0
471 },
472 "REQUEST_QUEUE_WRITES": {
473 "type": "integer",
474 "example": 0
475 },
476 "DATA_TRANSFER_INTERNAL_GBYTES": {
477 "type": "integer",
478 "example": 0
479 },
480 "DATA_TRANSFER_EXTERNAL_GBYTES": {
481 "type": "integer",
482 "example": 0
483 },
484 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
485 "type": "integer",
486 "example": 0
487 },
488 "PROXY_SERPS": {
489 "type": "integer",
490 "example": 0
491 }
492 }
493 },
494 "usageTotalUsd": {
495 "type": "number",
496 "example": 0.00005
497 },
498 "usageUsd": {
499 "type": "object",
500 "properties": {
501 "ACTOR_COMPUTE_UNITS": {
502 "type": "integer",
503 "example": 0
504 },
505 "DATASET_READS": {
506 "type": "integer",
507 "example": 0
508 },
509 "DATASET_WRITES": {
510 "type": "integer",
511 "example": 0
512 },
513 "KEY_VALUE_STORE_READS": {
514 "type": "integer",
515 "example": 0
516 },
517 "KEY_VALUE_STORE_WRITES": {
518 "type": "number",
519 "example": 0.00005
520 },
521 "KEY_VALUE_STORE_LISTS": {
522 "type": "integer",
523 "example": 0
524 },
525 "REQUEST_QUEUE_READS": {
526 "type": "integer",
527 "example": 0
528 },
529 "REQUEST_QUEUE_WRITES": {
530 "type": "integer",
531 "example": 0
532 },
533 "DATA_TRANSFER_INTERNAL_GBYTES": {
534 "type": "integer",
535 "example": 0
536 },
537 "DATA_TRANSFER_EXTERNAL_GBYTES": {
538 "type": "integer",
539 "example": 0
540 },
541 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
542 "type": "integer",
543 "example": 0
544 },
545 "PROXY_SERPS": {
546 "type": "integer",
547 "example": 0
548 }
549 }
550 }
551 }
552 }
553 }
554 }
555 }
556 }
557}
Kayak.com Hotels Scraper OpenAPI definition
OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for Kayak Hotels Scraper from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients:
Pricing
Pricing model
RentalTo use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.
Free trial
7 days
Price
$30.00