
Cruisemapper Cruises Scraper
Pay $1.90 for 1,000 results

Cruisemapper Cruises Scraper
Pay $1.90 for 1,000 results
The Cruisemapper Cruises Scraper extracts detailed cruise data, including ship names, itineraries, departure dates, prices, and more. Receive structured data in JSON, CSV, or Excel formats for travel planning, market research, or integration into applications.
You can access the Cruisemapper Cruises Scraper programmatically from your own applications by using the Apify API. You can 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": "1.1",
5 "x-build-id": "HUYM7a1ExY66ztLLA"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/vulnv~cruisemapper-cruises-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-vulnv-cruisemapper-cruises-scraper",
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/vulnv~cruisemapper-cruises-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-vulnv-cruisemapper-cruises-scraper",
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/vulnv~cruisemapper-cruises-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-vulnv-cruisemapper-cruises-scraper",
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 "start_date",
135 "end_date"
136 ],
137 "properties": {
138 "start_date": {
139 "title": "Start Date",
140 "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
141 "type": "string",
142 "description": "The start date for the cruise search (format: DD-MMM-YYYY).",
143 "default": "2025-01-01"
144 },
145 "end_date": {
146 "title": "End Date",
147 "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
148 "type": "string",
149 "description": "The end date for the cruise search (format: DD-MMM-YYYY).",
150 "default": "2025-01-05"
151 },
152 "cruise_length": {
153 "title": "Cruise Length",
154 "enum": [
155 "0",
156 "1",
157 "2",
158 "3",
159 "4",
160 "5"
161 ],
162 "type": "string",
163 "description": "Filter by cruise length.",
164 "default": "0"
165 },
166 "ship_name": {
167 "title": "Ship Name",
168 "type": "string",
169 "description": "Filter by ship name.",
170 "default": ""
171 },
172 "cruise_line": {
173 "title": "Cruise Line",
174 "type": "string",
175 "description": "Filter by cruise line.",
176 "default": ""
177 },
178 "departure_port": {
179 "title": "Departure Port",
180 "type": "string",
181 "description": "Filter by departure port.",
182 "default": ""
183 },
184 "destination": {
185 "title": "Destination",
186 "enum": [
187 "0",
188 "10",
189 "2",
190 "1",
191 "20",
192 "23",
193 "4",
194 "6",
195 "8",
196 "7",
197 "5",
198 "22",
199 "11",
200 "13",
201 "9",
202 "21",
203 "12",
204 "14",
205 "24",
206 "15",
207 "16",
208 "17",
209 "18",
210 "26"
211 ],
212 "type": "string",
213 "description": "Filter by destination.",
214 "default": "0"
215 },
216 "ship_type": {
217 "title": "Ship Type",
218 "enum": [
219 "0",
220 "1",
221 "2"
222 ],
223 "type": "string",
224 "description": "Filter by ship type.",
225 "default": "0"
226 },
227 "port_of_call": {
228 "title": "Preferable Port of Call / Country",
229 "type": "string",
230 "description": "Filter by port of call.",
231 "default": ""
232 },
233 "max_number_of_pages": {
234 "title": "Maximum Number of Pages",
235 "type": "integer",
236 "description": "Maximum number of pages to scrape. Use -1 to scrape all available pages.",
237 "default": -1
238 },
239 "max_number_of_parallel_requests": {
240 "title": "Maximum Number of Parallel Requests",
241 "type": "integer",
242 "description": "Maximum number of parallel requests to make.",
243 "default": 10
244 }
245 }
246 },
247 "runsResponseSchema": {
248 "type": "object",
249 "properties": {
250 "data": {
251 "type": "object",
252 "properties": {
253 "id": {
254 "type": "string"
255 },
256 "actId": {
257 "type": "string"
258 },
259 "userId": {
260 "type": "string"
261 },
262 "startedAt": {
263 "type": "string",
264 "format": "date-time",
265 "example": "2025-01-08T00:00:00.000Z"
266 },
267 "finishedAt": {
268 "type": "string",
269 "format": "date-time",
270 "example": "2025-01-08T00:00:00.000Z"
271 },
272 "status": {
273 "type": "string",
274 "example": "READY"
275 },
276 "meta": {
277 "type": "object",
278 "properties": {
279 "origin": {
280 "type": "string",
281 "example": "API"
282 },
283 "userAgent": {
284 "type": "string"
285 }
286 }
287 },
288 "stats": {
289 "type": "object",
290 "properties": {
291 "inputBodyLen": {
292 "type": "integer",
293 "example": 2000
294 },
295 "rebootCount": {
296 "type": "integer",
297 "example": 0
298 },
299 "restartCount": {
300 "type": "integer",
301 "example": 0
302 },
303 "resurrectCount": {
304 "type": "integer",
305 "example": 0
306 },
307 "computeUnits": {
308 "type": "integer",
309 "example": 0
310 }
311 }
312 },
313 "options": {
314 "type": "object",
315 "properties": {
316 "build": {
317 "type": "string",
318 "example": "latest"
319 },
320 "timeoutSecs": {
321 "type": "integer",
322 "example": 300
323 },
324 "memoryMbytes": {
325 "type": "integer",
326 "example": 1024
327 },
328 "diskMbytes": {
329 "type": "integer",
330 "example": 2048
331 }
332 }
333 },
334 "buildId": {
335 "type": "string"
336 },
337 "defaultKeyValueStoreId": {
338 "type": "string"
339 },
340 "defaultDatasetId": {
341 "type": "string"
342 },
343 "defaultRequestQueueId": {
344 "type": "string"
345 },
346 "buildNumber": {
347 "type": "string",
348 "example": "1.0.0"
349 },
350 "containerUrl": {
351 "type": "string"
352 },
353 "usage": {
354 "type": "object",
355 "properties": {
356 "ACTOR_COMPUTE_UNITS": {
357 "type": "integer",
358 "example": 0
359 },
360 "DATASET_READS": {
361 "type": "integer",
362 "example": 0
363 },
364 "DATASET_WRITES": {
365 "type": "integer",
366 "example": 0
367 },
368 "KEY_VALUE_STORE_READS": {
369 "type": "integer",
370 "example": 0
371 },
372 "KEY_VALUE_STORE_WRITES": {
373 "type": "integer",
374 "example": 1
375 },
376 "KEY_VALUE_STORE_LISTS": {
377 "type": "integer",
378 "example": 0
379 },
380 "REQUEST_QUEUE_READS": {
381 "type": "integer",
382 "example": 0
383 },
384 "REQUEST_QUEUE_WRITES": {
385 "type": "integer",
386 "example": 0
387 },
388 "DATA_TRANSFER_INTERNAL_GBYTES": {
389 "type": "integer",
390 "example": 0
391 },
392 "DATA_TRANSFER_EXTERNAL_GBYTES": {
393 "type": "integer",
394 "example": 0
395 },
396 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
397 "type": "integer",
398 "example": 0
399 },
400 "PROXY_SERPS": {
401 "type": "integer",
402 "example": 0
403 }
404 }
405 },
406 "usageTotalUsd": {
407 "type": "number",
408 "example": 0.00005
409 },
410 "usageUsd": {
411 "type": "object",
412 "properties": {
413 "ACTOR_COMPUTE_UNITS": {
414 "type": "integer",
415 "example": 0
416 },
417 "DATASET_READS": {
418 "type": "integer",
419 "example": 0
420 },
421 "DATASET_WRITES": {
422 "type": "integer",
423 "example": 0
424 },
425 "KEY_VALUE_STORE_READS": {
426 "type": "integer",
427 "example": 0
428 },
429 "KEY_VALUE_STORE_WRITES": {
430 "type": "number",
431 "example": 0.00005
432 },
433 "KEY_VALUE_STORE_LISTS": {
434 "type": "integer",
435 "example": 0
436 },
437 "REQUEST_QUEUE_READS": {
438 "type": "integer",
439 "example": 0
440 },
441 "REQUEST_QUEUE_WRITES": {
442 "type": "integer",
443 "example": 0
444 },
445 "DATA_TRANSFER_INTERNAL_GBYTES": {
446 "type": "integer",
447 "example": 0
448 },
449 "DATA_TRANSFER_EXTERNAL_GBYTES": {
450 "type": "integer",
451 "example": 0
452 },
453 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
454 "type": "integer",
455 "example": 0
456 },
457 "PROXY_SERPS": {
458 "type": "integer",
459 "example": 0
460 }
461 }
462 }
463 }
464 }
465 }
466 }
467 }
468 }
469}
Cruisemapper Cruises 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 Cruisemapper Cruises 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:
Actor Metrics
11 monthly users
-
2 stars
92% runs succeeded
2.2 hours response time
Created in Nov 2024
Modified 5 days ago