
Google News Scraper
Pricing
$25.00/month + usage

Google News Scraper
Effortlessly gather news data from Google News. Our Actor is designed for speed, reliability, and scalability, handling multiple articles in a single run with ease. Perfect for businesses, developers, and analysts looking to gain insights and make data-driven decisions.
0.0 (0)
Pricing
$25.00/month + usage
3
Monthly users
1
Runs succeeded
>99%
Last modified
6 months ago
You can access the Google News 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.0",
5 "x-build-id": "8N83Qa3FdY1YdE7gZ"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/scraped_org~google-news-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-scraped_org-google-news-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/scraped_org~google-news-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-scraped_org-google-news-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/scraped_org~google-news-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-scraped_org-google-news-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 "action"
135 ],
136 "properties": {
137 "action": {
138 "title": "Action",
139 "enum": [
140 "stories",
141 "search_articles"
142 ],
143 "type": "string",
144 "description": "Select an action to perform",
145 "default": "stories"
146 },
147 "country": {
148 "title": "Country",
149 "minLength": 2,
150 "maxLength": 2,
151 "type": "string",
152 "description": "2 letters country code (ISO 3166-2)",
153 "default": "us"
154 },
155 "language": {
156 "title": "Language",
157 "minLength": 2,
158 "maxLength": 2,
159 "type": "string",
160 "description": "2 letters language code (ISO 639-1)",
161 "default": "en"
162 },
163 "pages": {
164 "title": "Pages",
165 "type": "array",
166 "description": "Pages",
167 "items": {
168 "type": "string",
169 "enum": [
170 "home-latest",
171 "world-latest",
172 "business-latest",
173 "business-economy",
174 "business-markets",
175 "business-jobs",
176 "business-personal_finance",
177 "business-entrepreneurship",
178 "technologies-latest",
179 "technologies-mobile",
180 "technologies-gadgets",
181 "technologies-internet",
182 "technologies-virtual_reality",
183 "technologies-artificial_intelligence",
184 "technologies-computing",
185 "entertainment-latest",
186 "entertainment-movies",
187 "entertainment-music",
188 "entertainment-tv",
189 "entertainment-books",
190 "entertainment-arts_and_design",
191 "entertainment-celebrities",
192 "sport-latest",
193 "sport-nfl",
194 "sport-nba",
195 "sport-mlb",
196 "sport-nhl",
197 "sport-ncaa_football",
198 "sport-ncaa_basketball",
199 "sport-soccer",
200 "sport-nascar",
201 "sport-golf",
202 "sport-tennis",
203 "sport-wnba",
204 "science-latest",
205 "science-environment",
206 "science-space",
207 "science-physics",
208 "science-genetics",
209 "science-wildlife",
210 "health-latest",
211 "health-medication",
212 "health-health_care",
213 "health-mental_health",
214 "health-nutrition",
215 "health-fitness"
216 ],
217 "enumTitles": [
218 "Home page Latest section",
219 "World page Latest section",
220 "Business page Latest section",
221 "Business page Economy section",
222 "Business page Markets section",
223 "Business page Jobs section",
224 "Business page Personal_finance section",
225 "Business page Entrepreneurship section",
226 "Technologies page Latest section",
227 "Technologies page Mobile section",
228 "Technologies page Gadgets section",
229 "Technologies page Internet section",
230 "Technologies page Virtual_reality section",
231 "Technologies page Artificial_intelligence section",
232 "Technologies page Computing section",
233 "Entertainment page Latest section",
234 "Entertainment page Movies section",
235 "Entertainment page Music section",
236 "Entertainment page Tv section",
237 "Entertainment page Books section",
238 "Entertainment page Arts_and_design section",
239 "Entertainment page Celebrities section",
240 "Sport page Latest section",
241 "Sport page Nfl section",
242 "Sport page Nba section",
243 "Sport page Mlb section",
244 "Sport page Nhl section",
245 "Sport page Ncaa_football section",
246 "Sport page Ncaa_basketball section",
247 "Sport page Soccer section",
248 "Sport page Nascar section",
249 "Sport page Golf section",
250 "Sport page Tennis section",
251 "Sport page WNBA section",
252 "Science page Latest section",
253 "Science page Environment section",
254 "Science page Space section",
255 "Science page Physics section",
256 "Science page Genetics section",
257 "Science page Wildlife section",
258 "Health page Latest section",
259 "Health page Medication section",
260 "Health page Health_care section",
261 "Health page Mental_health section",
262 "Health page Nutrition section",
263 "Health page Fitness section"
264 ]
265 },
266 "default": [
267 "home-latest"
268 ]
269 },
270 "search_articles": {
271 "title": "Search Articles",
272 "type": "string",
273 "description": "Search Articles"
274 },
275 "proxy": {
276 "title": "Proxy configuration",
277 "type": "object",
278 "description": "Select proxies to be used by your crawler."
279 }
280 }
281 },
282 "runsResponseSchema": {
283 "type": "object",
284 "properties": {
285 "data": {
286 "type": "object",
287 "properties": {
288 "id": {
289 "type": "string"
290 },
291 "actId": {
292 "type": "string"
293 },
294 "userId": {
295 "type": "string"
296 },
297 "startedAt": {
298 "type": "string",
299 "format": "date-time",
300 "example": "2025-01-08T00:00:00.000Z"
301 },
302 "finishedAt": {
303 "type": "string",
304 "format": "date-time",
305 "example": "2025-01-08T00:00:00.000Z"
306 },
307 "status": {
308 "type": "string",
309 "example": "READY"
310 },
311 "meta": {
312 "type": "object",
313 "properties": {
314 "origin": {
315 "type": "string",
316 "example": "API"
317 },
318 "userAgent": {
319 "type": "string"
320 }
321 }
322 },
323 "stats": {
324 "type": "object",
325 "properties": {
326 "inputBodyLen": {
327 "type": "integer",
328 "example": 2000
329 },
330 "rebootCount": {
331 "type": "integer",
332 "example": 0
333 },
334 "restartCount": {
335 "type": "integer",
336 "example": 0
337 },
338 "resurrectCount": {
339 "type": "integer",
340 "example": 0
341 },
342 "computeUnits": {
343 "type": "integer",
344 "example": 0
345 }
346 }
347 },
348 "options": {
349 "type": "object",
350 "properties": {
351 "build": {
352 "type": "string",
353 "example": "latest"
354 },
355 "timeoutSecs": {
356 "type": "integer",
357 "example": 300
358 },
359 "memoryMbytes": {
360 "type": "integer",
361 "example": 1024
362 },
363 "diskMbytes": {
364 "type": "integer",
365 "example": 2048
366 }
367 }
368 },
369 "buildId": {
370 "type": "string"
371 },
372 "defaultKeyValueStoreId": {
373 "type": "string"
374 },
375 "defaultDatasetId": {
376 "type": "string"
377 },
378 "defaultRequestQueueId": {
379 "type": "string"
380 },
381 "buildNumber": {
382 "type": "string",
383 "example": "1.0.0"
384 },
385 "containerUrl": {
386 "type": "string"
387 },
388 "usage": {
389 "type": "object",
390 "properties": {
391 "ACTOR_COMPUTE_UNITS": {
392 "type": "integer",
393 "example": 0
394 },
395 "DATASET_READS": {
396 "type": "integer",
397 "example": 0
398 },
399 "DATASET_WRITES": {
400 "type": "integer",
401 "example": 0
402 },
403 "KEY_VALUE_STORE_READS": {
404 "type": "integer",
405 "example": 0
406 },
407 "KEY_VALUE_STORE_WRITES": {
408 "type": "integer",
409 "example": 1
410 },
411 "KEY_VALUE_STORE_LISTS": {
412 "type": "integer",
413 "example": 0
414 },
415 "REQUEST_QUEUE_READS": {
416 "type": "integer",
417 "example": 0
418 },
419 "REQUEST_QUEUE_WRITES": {
420 "type": "integer",
421 "example": 0
422 },
423 "DATA_TRANSFER_INTERNAL_GBYTES": {
424 "type": "integer",
425 "example": 0
426 },
427 "DATA_TRANSFER_EXTERNAL_GBYTES": {
428 "type": "integer",
429 "example": 0
430 },
431 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
432 "type": "integer",
433 "example": 0
434 },
435 "PROXY_SERPS": {
436 "type": "integer",
437 "example": 0
438 }
439 }
440 },
441 "usageTotalUsd": {
442 "type": "number",
443 "example": 0.00005
444 },
445 "usageUsd": {
446 "type": "object",
447 "properties": {
448 "ACTOR_COMPUTE_UNITS": {
449 "type": "integer",
450 "example": 0
451 },
452 "DATASET_READS": {
453 "type": "integer",
454 "example": 0
455 },
456 "DATASET_WRITES": {
457 "type": "integer",
458 "example": 0
459 },
460 "KEY_VALUE_STORE_READS": {
461 "type": "integer",
462 "example": 0
463 },
464 "KEY_VALUE_STORE_WRITES": {
465 "type": "number",
466 "example": 0.00005
467 },
468 "KEY_VALUE_STORE_LISTS": {
469 "type": "integer",
470 "example": 0
471 },
472 "REQUEST_QUEUE_READS": {
473 "type": "integer",
474 "example": 0
475 },
476 "REQUEST_QUEUE_WRITES": {
477 "type": "integer",
478 "example": 0
479 },
480 "DATA_TRANSFER_INTERNAL_GBYTES": {
481 "type": "integer",
482 "example": 0
483 },
484 "DATA_TRANSFER_EXTERNAL_GBYTES": {
485 "type": "integer",
486 "example": 0
487 },
488 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
489 "type": "integer",
490 "example": 0
491 },
492 "PROXY_SERPS": {
493 "type": "integer",
494 "example": 0
495 }
496 }
497 }
498 }
499 }
500 }
501 }
502 }
503 }
504}
Google News 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 Google News 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
3 days
Price
$25.00