
Google Maps Search
Pricing
Pay per event

Google Maps Search
Only 1 USD 1000 results. Fast response. Search for places using queries and get the results in JSON format. Works exactly like the Google Maps search bar.
5.0 (1)
Pricing
Pay per event
2
Monthly users
23
Runs succeeded
>99%
Response time
8.9 hours
Last modified
19 days ago
You can access the Google Maps Search 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.0",
5 "x-build-id": "ArL6BabiUTeFbS8rC"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/dan.scraper~google-maps-search/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-dan.scraper-google-maps-search",
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/dan.scraper~google-maps-search/runs": {
50 "post": {
51 "operationId": "runs-sync-dan.scraper-google-maps-search",
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/dan.scraper~google-maps-search/run-sync": {
93 "post": {
94 "operationId": "run-sync-dan.scraper-google-maps-search",
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 "queries"
135 ],
136 "properties": {
137 "queries": {
138 "title": "Search Queries",
139 "type": "array",
140 "description": "List of Google Maps search query.",
141 "items": {
142 "type": "string"
143 }
144 },
145 "mapView": {
146 "title": "GPS Coordinates and Zoom Level. Specify location.",
147 "type": "string",
148 "description": "GPS coordinates and zoom level for the map view. The format is <code>@latitude,longitude,zoom</code> (e.g. <code>@37.7778699,-122.4128834,16z</code>). We return <code>mapView</code> in the output. When latitude is 37.7749295 and longitude is -122.4194155, the <code>mapView</code> is <code>@37.7749295,-122.4194155,12z</code>. Zoom level is from 3z(zoom out) to 21z(zoom in).<br><br>Note: This parameter is very important for scraping at a location. If you want to scrape at a specific location, you should set this parameter."
149 },
150 "csvFriendlyOutput": {
151 "title": "Output CSV friendly format",
152 "type": "boolean",
153 "description": "Include shopping results data, use for CSV format"
154 },
155 "maxPagesPerQuery": {
156 "title": "Max pages per query",
157 "minimum": 1,
158 "type": "integer",
159 "description": "The maximum number of search result pages crawled for each search query or URL."
160 },
161 "countryCode": {
162 "title": "Country",
163 "enum": [
164 "",
165 "af",
166 "al",
167 "dz",
168 "as",
169 "ad",
170 "ao",
171 "ai",
172 "aq",
173 "ag",
174 "ar",
175 "am",
176 "aw",
177 "au",
178 "at",
179 "az",
180 "bs",
181 "bh",
182 "bd",
183 "bb",
184 "by",
185 "be",
186 "bz",
187 "bj",
188 "bm",
189 "bt",
190 "bo",
191 "ba",
192 "bw",
193 "bv",
194 "br",
195 "io",
196 "bn",
197 "bg",
198 "bf",
199 "bi",
200 "kh",
201 "cm",
202 "ca",
203 "cv",
204 "ky",
205 "cf",
206 "td",
207 "cl",
208 "cn",
209 "cx",
210 "cc",
211 "co",
212 "km",
213 "cg",
214 "cd",
215 "ck",
216 "cr",
217 "ci",
218 "hr",
219 "cu",
220 "cy",
221 "cz",
222 "dk",
223 "dj",
224 "dm",
225 "do",
226 "ec",
227 "eg",
228 "sv",
229 "gq",
230 "er",
231 "ee",
232 "et",
233 "fk",
234 "fo",
235 "fj",
236 "fi",
237 "fr",
238 "gf",
239 "pf",
240 "tf",
241 "ga",
242 "gm",
243 "ge",
244 "de",
245 "gh",
246 "gi",
247 "gr",
248 "gl",
249 "gd",
250 "gp",
251 "gu",
252 "gt",
253 "gn",
254 "gw",
255 "gy",
256 "ht",
257 "hm",
258 "va",
259 "hn",
260 "hk",
261 "hu",
262 "is",
263 "in",
264 "id",
265 "ir",
266 "iq",
267 "ie",
268 "il",
269 "it",
270 "jm",
271 "jp",
272 "jo",
273 "kz",
274 "ke",
275 "ki",
276 "kp",
277 "kr",
278 "kw",
279 "kg",
280 "la",
281 "lv",
282 "lb",
283 "ls",
284 "lr",
285 "ly",
286 "li",
287 "lt",
288 "lu",
289 "mo",
290 "mk",
291 "mg",
292 "mw",
293 "my",
294 "mv",
295 "ml",
296 "mt",
297 "mh",
298 "mq",
299 "mr",
300 "mu",
301 "yt",
302 "mx",
303 "fm",
304 "md",
305 "mc",
306 "mn",
307 "ms",
308 "ma",
309 "mz",
310 "mm",
311 "na",
312 "nr",
313 "np",
314 "nl",
315 "an",
316 "nc",
317 "nz",
318 "ni",
319 "ne",
320 "ng",
321 "nu",
322 "nf",
323 "mp",
324 "no",
325 "om",
326 "pk",
327 "pw",
328 "ps",
329 "pa",
330 "pg",
331 "py",
332 "pe",
333 "ph",
334 "pn",
335 "pl",
336 "pt",
337 "pr",
338 "qa",
339 "re",
340 "ro",
341 "ru",
342 "rw",
343 "sh",
344 "kn",
345 "lc",
346 "pm",
347 "vc",
348 "ws",
349 "sm",
350 "st",
351 "sa",
352 "sn",
353 "cs",
354 "sc",
355 "sl",
356 "sg",
357 "sk",
358 "si",
359 "sb",
360 "so",
361 "za",
362 "gs",
363 "es",
364 "lk",
365 "sd",
366 "sr",
367 "sj",
368 "sz",
369 "se",
370 "ch",
371 "sy",
372 "tw",
373 "tj",
374 "tz",
375 "th",
376 "tl",
377 "tg",
378 "tk",
379 "to",
380 "tt",
381 "tn",
382 "tr",
383 "tm",
384 "tc",
385 "tv",
386 "ug",
387 "ua",
388 "ae",
389 "gb",
390 "us",
391 "um",
392 "uy",
393 "uz",
394 "vu",
395 "ve",
396 "vn",
397 "vg",
398 "vi",
399 "wf",
400 "eh",
401 "ye",
402 "zm",
403 "zw"
404 ],
405 "type": "string",
406 "description": "Use <code>mapView</code> parameter to specify a location. This parameter is to specify the google web domain.<br><br>This param is for the Country (e.g. <code>es</code> for Spain). The values must be lower-cased <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\" target=\"_blank\">ISO 3166</a> country codes supported by Google. By default, the actor uses United States (<code>us</code>)."
407 },
408 "languageCode": {
409 "title": "Language",
410 "enum": [
411 "",
412 "af",
413 "sq",
414 "sm",
415 "ar",
416 "az",
417 "eu",
418 "be",
419 "bn",
420 "bh",
421 "bs",
422 "bg",
423 "ca",
424 "zh-CN",
425 "zh-TW",
426 "hr",
427 "cs",
428 "da",
429 "nl",
430 "en",
431 "eo",
432 "et",
433 "fo",
434 "fi",
435 "fr",
436 "fy",
437 "gl",
438 "ka",
439 "de",
440 "el",
441 "gu",
442 "iw",
443 "hi",
444 "hu",
445 "is",
446 "id",
447 "ia",
448 "ga",
449 "it",
450 "ja",
451 "jw",
452 "kn",
453 "ko",
454 "la",
455 "lv",
456 "lt",
457 "mk",
458 "ms",
459 "ml",
460 "mt",
461 "mr",
462 "ne",
463 "no",
464 "nn",
465 "oc",
466 "fa",
467 "pl",
468 "pt-BR",
469 "pt-PT",
470 "pa",
471 "ro",
472 "ru",
473 "gd",
474 "sr",
475 "si",
476 "sk",
477 "sl",
478 "es",
479 "su",
480 "sw",
481 "sv",
482 "tl",
483 "ta",
484 "te",
485 "th",
486 "ti",
487 "tr",
488 "uk",
489 "ur",
490 "uz",
491 "vi",
492 "cy",
493 "xh",
494 "zu"
495 ],
496 "type": "string",
497 "description": "Language for the search results, which is passed to Google Search as the <code>hl</code> URL query parameter. Only set this if you want to use a non-default language for the selected country. The values must be lower-cased <a href=\"https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes\" target=\"_blank\">ISO 639</a> language codes supported by Google.",
498 "default": ""
499 },
500 "googleDomain": {
501 "title": "Google Domain",
502 "enum": [
503 "",
504 "google.ad",
505 "google.ae",
506 "google.com.af",
507 "google.com.ag",
508 "google.com.ai",
509 "google.al",
510 "google.am",
511 "google.co.ao",
512 "google.com.ar",
513 "google.as",
514 "google.at",
515 "google.com.au",
516 "google.az",
517 "google.ba",
518 "google.com.bd",
519 "google.be",
520 "google.bf",
521 "google.bg",
522 "google.com.bh",
523 "google.bi",
524 "google.bj",
525 "google.com.bn",
526 "google.com.bo",
527 "google.com.br",
528 "google.bs",
529 "google.bt",
530 "google.co.bw",
531 "google.by",
532 "google.com.bz",
533 "google.ca",
534 "google.com.kh",
535 "google.cd",
536 "google.cf",
537 "google.cg",
538 "google.ch",
539 "google.ci",
540 "google.co.ck",
541 "google.cl",
542 "google.cm",
543 "google.com.co",
544 "google.co.cr",
545 "google.com.cu",
546 "google.cv",
547 "google.com.cy",
548 "google.cz",
549 "google.de",
550 "google.dj",
551 "google.dk",
552 "google.dm",
553 "google.com.do",
554 "google.dz",
555 "google.com.ec",
556 "google.ee",
557 "google.com.eg",
558 "google.es",
559 "google.com.et",
560 "google.fi",
561 "google.fm",
562 "google.com.fj",
563 "google.fr",
564 "google.ga",
565 "google.ge",
566 "google.com.gh",
567 "google.com.gi",
568 "google.gl",
569 "google.gm",
570 "google.gp",
571 "google.gr",
572 "google.com.gt",
573 "google.gy",
574 "google.com.hk",
575 "google.hn",
576 "google.hr",
577 "google.ht",
578 "google.hu",
579 "google.co.id",
580 "google.iq",
581 "google.ie",
582 "google.co.il",
583 "google.co.in",
584 "google.is",
585 "google.it",
586 "google.je",
587 "google.com.jm",
588 "google.jo",
589 "google.co.jp",
590 "google.co.ke",
591 "google.ki",
592 "google.kg",
593 "google.co.kr",
594 "google.com.kw",
595 "google.kz",
596 "google.la",
597 "google.com.lb",
598 "google.li",
599 "google.lk",
600 "google.co.ls",
601 "google.lt",
602 "google.lu",
603 "google.lv",
604 "google.com.ly",
605 "google.co.ma",
606 "google.md",
607 "google.mg",
608 "google.mk",
609 "google.ml",
610 "google.com.mm",
611 "google.mn",
612 "google.ms",
613 "google.com.mt",
614 "google.mu",
615 "google.mv",
616 "google.mw",
617 "google.com.mx",
618 "google.com.my",
619 "google.co.mz",
620 "google.com.na",
621 "google.ne",
622 "google.com.ng",
623 "google.com.ni",
624 "google.nl",
625 "google.no",
626 "google.com.np",
627 "google.nr",
628 "google.nu",
629 "google.co.nz",
630 "google.com.om",
631 "google.com.pk",
632 "google.com.pa",
633 "google.com.pe",
634 "google.com.ph",
635 "google.pl",
636 "google.com.pg",
637 "google.com.pr",
638 "google.ps",
639 "google.pt",
640 "google.com.py",
641 "google.com.qa",
642 "google.ro",
643 "google.rs",
644 "google.ru",
645 "google.rw",
646 "google.com.sa",
647 "google.com.sb",
648 "google.sc",
649 "google.se",
650 "google.com.sg",
651 "google.sh",
652 "google.si",
653 "google.sk",
654 "google.com.sl",
655 "google.sn",
656 "google.sm",
657 "google.so",
658 "google.sr",
659 "google.com.sv",
660 "google.td",
661 "google.tg",
662 "google.co.th",
663 "google.com.tj",
664 "google.tk",
665 "google.tl",
666 "google.tm",
667 "google.to",
668 "google.tn",
669 "google.com.tr",
670 "google.tt",
671 "google.com.tw",
672 "google.co.tz",
673 "google.com.ua",
674 "google.co.ug",
675 "google.co.uk",
676 "google.com.uy",
677 "google.co.uz",
678 "google.com.vc",
679 "google.co.ve",
680 "google.vg",
681 "google.co.vi",
682 "google.com.vn",
683 "google.vu",
684 "google.ws",
685 "google.co.za",
686 "google.co.zm",
687 "google.co.zw"
688 ],
689 "type": "string",
690 "description": "This param is for the Google Search Domain (e.g. <code>google.s</code> for Spain). By default, the actor uses United States (<code>google.com</code>)."
691 }
692 }
693 },
694 "runsResponseSchema": {
695 "type": "object",
696 "properties": {
697 "data": {
698 "type": "object",
699 "properties": {
700 "id": {
701 "type": "string"
702 },
703 "actId": {
704 "type": "string"
705 },
706 "userId": {
707 "type": "string"
708 },
709 "startedAt": {
710 "type": "string",
711 "format": "date-time",
712 "example": "2025-01-08T00:00:00.000Z"
713 },
714 "finishedAt": {
715 "type": "string",
716 "format": "date-time",
717 "example": "2025-01-08T00:00:00.000Z"
718 },
719 "status": {
720 "type": "string",
721 "example": "READY"
722 },
723 "meta": {
724 "type": "object",
725 "properties": {
726 "origin": {
727 "type": "string",
728 "example": "API"
729 },
730 "userAgent": {
731 "type": "string"
732 }
733 }
734 },
735 "stats": {
736 "type": "object",
737 "properties": {
738 "inputBodyLen": {
739 "type": "integer",
740 "example": 2000
741 },
742 "rebootCount": {
743 "type": "integer",
744 "example": 0
745 },
746 "restartCount": {
747 "type": "integer",
748 "example": 0
749 },
750 "resurrectCount": {
751 "type": "integer",
752 "example": 0
753 },
754 "computeUnits": {
755 "type": "integer",
756 "example": 0
757 }
758 }
759 },
760 "options": {
761 "type": "object",
762 "properties": {
763 "build": {
764 "type": "string",
765 "example": "latest"
766 },
767 "timeoutSecs": {
768 "type": "integer",
769 "example": 300
770 },
771 "memoryMbytes": {
772 "type": "integer",
773 "example": 1024
774 },
775 "diskMbytes": {
776 "type": "integer",
777 "example": 2048
778 }
779 }
780 },
781 "buildId": {
782 "type": "string"
783 },
784 "defaultKeyValueStoreId": {
785 "type": "string"
786 },
787 "defaultDatasetId": {
788 "type": "string"
789 },
790 "defaultRequestQueueId": {
791 "type": "string"
792 },
793 "buildNumber": {
794 "type": "string",
795 "example": "1.0.0"
796 },
797 "containerUrl": {
798 "type": "string"
799 },
800 "usage": {
801 "type": "object",
802 "properties": {
803 "ACTOR_COMPUTE_UNITS": {
804 "type": "integer",
805 "example": 0
806 },
807 "DATASET_READS": {
808 "type": "integer",
809 "example": 0
810 },
811 "DATASET_WRITES": {
812 "type": "integer",
813 "example": 0
814 },
815 "KEY_VALUE_STORE_READS": {
816 "type": "integer",
817 "example": 0
818 },
819 "KEY_VALUE_STORE_WRITES": {
820 "type": "integer",
821 "example": 1
822 },
823 "KEY_VALUE_STORE_LISTS": {
824 "type": "integer",
825 "example": 0
826 },
827 "REQUEST_QUEUE_READS": {
828 "type": "integer",
829 "example": 0
830 },
831 "REQUEST_QUEUE_WRITES": {
832 "type": "integer",
833 "example": 0
834 },
835 "DATA_TRANSFER_INTERNAL_GBYTES": {
836 "type": "integer",
837 "example": 0
838 },
839 "DATA_TRANSFER_EXTERNAL_GBYTES": {
840 "type": "integer",
841 "example": 0
842 },
843 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
844 "type": "integer",
845 "example": 0
846 },
847 "PROXY_SERPS": {
848 "type": "integer",
849 "example": 0
850 }
851 }
852 },
853 "usageTotalUsd": {
854 "type": "number",
855 "example": 0.00005
856 },
857 "usageUsd": {
858 "type": "object",
859 "properties": {
860 "ACTOR_COMPUTE_UNITS": {
861 "type": "integer",
862 "example": 0
863 },
864 "DATASET_READS": {
865 "type": "integer",
866 "example": 0
867 },
868 "DATASET_WRITES": {
869 "type": "integer",
870 "example": 0
871 },
872 "KEY_VALUE_STORE_READS": {
873 "type": "integer",
874 "example": 0
875 },
876 "KEY_VALUE_STORE_WRITES": {
877 "type": "number",
878 "example": 0.00005
879 },
880 "KEY_VALUE_STORE_LISTS": {
881 "type": "integer",
882 "example": 0
883 },
884 "REQUEST_QUEUE_READS": {
885 "type": "integer",
886 "example": 0
887 },
888 "REQUEST_QUEUE_WRITES": {
889 "type": "integer",
890 "example": 0
891 },
892 "DATA_TRANSFER_INTERNAL_GBYTES": {
893 "type": "integer",
894 "example": 0
895 },
896 "DATA_TRANSFER_EXTERNAL_GBYTES": {
897 "type": "integer",
898 "example": 0
899 },
900 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
901 "type": "integer",
902 "example": 0
903 },
904 "PROXY_SERPS": {
905 "type": "integer",
906 "example": 0
907 }
908 }
909 }
910 }
911 }
912 }
913 }
914 }
915 }
916}
Google Maps Search 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 Google Maps Search 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
Pay per eventThis Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
One Page
$0.02
One page contain 20 results. Scraping 1000 results = 50 pages cost 50 * 0.02 = 1 USD. Other Google Maps scrapers usually charge average 6USD for 1000 results.