
Google Map Simple scraper
Pay $3.00 for 1,000 results

Google Map Simple scraper
Pay $3.00 for 1,000 results
Scrape data from Google map. It only extract core informations, Shop name/Score/Address/Phone number/Comment counts. The process of scraping is very fast. You can get plenty of phone numbers in a short time
Actor Metrics
12 Monthly users
No reviews yet
3 bookmarks
>99% runs succeeded
Created in Jul 2024
Modified a month ago
You can access the Google Map Simple 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": "0.0",
5 "x-build-id": "BhW4jaqBGBHdOYbzn"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/danny.hub~google-map-simple-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-danny.hub-google-map-simple-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/danny.hub~google-map-simple-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-danny.hub-google-map-simple-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/danny.hub~google-map-simple-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-danny.hub-google-map-simple-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 "startUrl",
135 "language"
136 ],
137 "properties": {
138 "startUrl": {
139 "title": "Google Map URLs",
140 "type": "array",
141 "description": "Google Map Urls",
142 "items": {
143 "type": "object",
144 "required": [
145 "url"
146 ],
147 "properties": {
148 "url": {
149 "type": "string",
150 "title": "URL of a web page",
151 "format": "uri"
152 }
153 }
154 }
155 },
156 "max": {
157 "title": "Limit the number",
158 "minimum": 1,
159 "type": "integer",
160 "description": "max result count"
161 },
162 "language": {
163 "title": "Language",
164 "enum": [
165 "en",
166 "af",
167 "az",
168 "id",
169 "ms",
170 "bs",
171 "ca",
172 "cs",
173 "da",
174 "de",
175 "et",
176 "es",
177 "es-419",
178 "eu",
179 "fil",
180 "fr",
181 "gl",
182 "hr",
183 "zu",
184 "is",
185 "it",
186 "sw",
187 "lv",
188 "lt",
189 "hu",
190 "nl",
191 "no",
192 "uz",
193 "pl",
194 "pt-BR",
195 "pt-PT",
196 "ro",
197 "sq",
198 "sk",
199 "sl",
200 "fi",
201 "sv",
202 "vi",
203 "tr",
204 "el",
205 "bg",
206 "ky",
207 "kk",
208 "mk",
209 "mn",
210 "ru",
211 "sr",
212 "uk",
213 "ka",
214 "hy",
215 "iw",
216 "ur",
217 "ar",
218 "fa",
219 "am",
220 "ne",
221 "hi",
222 "mr",
223 "bn",
224 "pa",
225 "gu",
226 "ta",
227 "te",
228 "kn",
229 "ml",
230 "si",
231 "th",
232 "lo",
233 "my",
234 "km",
235 "ko",
236 "ja",
237 "zh-CN",
238 "zh-TW"
239 ],
240 "type": "string",
241 "description": "Results details will show in this language."
242 },
243 "proxy": {
244 "title": "Proxy configuration",
245 "type": "object",
246 "description": "Select proxies to be used."
247 }
248 }
249 },
250 "runsResponseSchema": {
251 "type": "object",
252 "properties": {
253 "data": {
254 "type": "object",
255 "properties": {
256 "id": {
257 "type": "string"
258 },
259 "actId": {
260 "type": "string"
261 },
262 "userId": {
263 "type": "string"
264 },
265 "startedAt": {
266 "type": "string",
267 "format": "date-time",
268 "example": "2025-01-08T00:00:00.000Z"
269 },
270 "finishedAt": {
271 "type": "string",
272 "format": "date-time",
273 "example": "2025-01-08T00:00:00.000Z"
274 },
275 "status": {
276 "type": "string",
277 "example": "READY"
278 },
279 "meta": {
280 "type": "object",
281 "properties": {
282 "origin": {
283 "type": "string",
284 "example": "API"
285 },
286 "userAgent": {
287 "type": "string"
288 }
289 }
290 },
291 "stats": {
292 "type": "object",
293 "properties": {
294 "inputBodyLen": {
295 "type": "integer",
296 "example": 2000
297 },
298 "rebootCount": {
299 "type": "integer",
300 "example": 0
301 },
302 "restartCount": {
303 "type": "integer",
304 "example": 0
305 },
306 "resurrectCount": {
307 "type": "integer",
308 "example": 0
309 },
310 "computeUnits": {
311 "type": "integer",
312 "example": 0
313 }
314 }
315 },
316 "options": {
317 "type": "object",
318 "properties": {
319 "build": {
320 "type": "string",
321 "example": "latest"
322 },
323 "timeoutSecs": {
324 "type": "integer",
325 "example": 300
326 },
327 "memoryMbytes": {
328 "type": "integer",
329 "example": 1024
330 },
331 "diskMbytes": {
332 "type": "integer",
333 "example": 2048
334 }
335 }
336 },
337 "buildId": {
338 "type": "string"
339 },
340 "defaultKeyValueStoreId": {
341 "type": "string"
342 },
343 "defaultDatasetId": {
344 "type": "string"
345 },
346 "defaultRequestQueueId": {
347 "type": "string"
348 },
349 "buildNumber": {
350 "type": "string",
351 "example": "1.0.0"
352 },
353 "containerUrl": {
354 "type": "string"
355 },
356 "usage": {
357 "type": "object",
358 "properties": {
359 "ACTOR_COMPUTE_UNITS": {
360 "type": "integer",
361 "example": 0
362 },
363 "DATASET_READS": {
364 "type": "integer",
365 "example": 0
366 },
367 "DATASET_WRITES": {
368 "type": "integer",
369 "example": 0
370 },
371 "KEY_VALUE_STORE_READS": {
372 "type": "integer",
373 "example": 0
374 },
375 "KEY_VALUE_STORE_WRITES": {
376 "type": "integer",
377 "example": 1
378 },
379 "KEY_VALUE_STORE_LISTS": {
380 "type": "integer",
381 "example": 0
382 },
383 "REQUEST_QUEUE_READS": {
384 "type": "integer",
385 "example": 0
386 },
387 "REQUEST_QUEUE_WRITES": {
388 "type": "integer",
389 "example": 0
390 },
391 "DATA_TRANSFER_INTERNAL_GBYTES": {
392 "type": "integer",
393 "example": 0
394 },
395 "DATA_TRANSFER_EXTERNAL_GBYTES": {
396 "type": "integer",
397 "example": 0
398 },
399 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
400 "type": "integer",
401 "example": 0
402 },
403 "PROXY_SERPS": {
404 "type": "integer",
405 "example": 0
406 }
407 }
408 },
409 "usageTotalUsd": {
410 "type": "number",
411 "example": 0.00005
412 },
413 "usageUsd": {
414 "type": "object",
415 "properties": {
416 "ACTOR_COMPUTE_UNITS": {
417 "type": "integer",
418 "example": 0
419 },
420 "DATASET_READS": {
421 "type": "integer",
422 "example": 0
423 },
424 "DATASET_WRITES": {
425 "type": "integer",
426 "example": 0
427 },
428 "KEY_VALUE_STORE_READS": {
429 "type": "integer",
430 "example": 0
431 },
432 "KEY_VALUE_STORE_WRITES": {
433 "type": "number",
434 "example": 0.00005
435 },
436 "KEY_VALUE_STORE_LISTS": {
437 "type": "integer",
438 "example": 0
439 },
440 "REQUEST_QUEUE_READS": {
441 "type": "integer",
442 "example": 0
443 },
444 "REQUEST_QUEUE_WRITES": {
445 "type": "integer",
446 "example": 0
447 },
448 "DATA_TRANSFER_INTERNAL_GBYTES": {
449 "type": "integer",
450 "example": 0
451 },
452 "DATA_TRANSFER_EXTERNAL_GBYTES": {
453 "type": "integer",
454 "example": 0
455 },
456 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
457 "type": "integer",
458 "example": 0
459 },
460 "PROXY_SERPS": {
461 "type": "integer",
462 "example": 0
463 }
464 }
465 }
466 }
467 }
468 }
469 }
470 }
471 }
472}
google map scraper/easy google map/simple google map 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 Map Simple 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: