Wikipedia Scraper avatar
Wikipedia Scraper

Pricing

$30.00/month + usage

Go to Store
Wikipedia Scraper

Wikipedia Scraper

kilerhg/wikipedia

Developed by

Lucas Nunes

Maintained by Community

Wikipedia Scraper, designed and developed to make your life easier on searching for answers.

0.0 (0)

Pricing

$30.00/month + usage

3

Monthly users

7

Runs succeeded

>99%

Last modified

3 years ago

You can access the Wikipedia 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": "XA59tJ92OopNlJ8bS"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/kilerhg~wikipedia/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-kilerhg-wikipedia",
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/kilerhg~wikipedia/runs": {
50      "post": {
51        "operationId": "runs-sync-kilerhg-wikipedia",
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/kilerhg~wikipedia/run-sync": {
93      "post": {
94        "operationId": "run-sync-kilerhg-wikipedia",
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          "lang",
135          "input_value"
136        ],
137        "properties": {
138          "lang": {
139            "title": "Language to Search",
140            "enum": [
141              "af",
142              "pl",
143              "sk",
144              "ar",
145              "ast",
146              "az",
147              "bg",
148              "nan",
149              "bn",
150              "be",
151              "ca",
152              "cs",
153              "cy",
154              "da",
155              "de",
156              "et",
157              "el",
158              "en",
159              "es",
160              "eo",
161              "eu",
162              "fa",
163              "fr",
164              "gl",
165              "ko",
166              "hy",
167              "hi",
168              "hr",
169              "id",
170              "it",
171              "he",
172              "ka",
173              "la",
174              "lv",
175              "lt",
176              "hu",
177              "mk",
178              "arz",
179              "ms",
180              "min",
181              "nl",
182              "ja",
183              "no",
184              "nn",
185              "ce",
186              "uz",
187              "pt",
188              "kk",
189              "ro",
190              "ru",
191              "simple",
192              "ceb",
193              "sl",
194              "sr",
195              "sh",
196              "fi",
197              "sv",
198              "ta",
199              "tt",
200              "th",
201              "tg",
202              "azb",
203              "tr",
204              "uk",
205              "ur",
206              "vi",
207              "vo",
208              "war",
209              "zh-yue",
210              "zh",
211              "my"
212            ],
213            "type": "string",
214            "description": "Select the language to search",
215            "default": "en"
216          },
217          "input_value": {
218            "title": "Search Term or Url",
219            "type": "array",
220            "description": "Term or Url to be searched in Wikipedia",
221            "default": [
222              "example value",
223              "https://en.wikipedia.org/wiki/Example"
224            ],
225            "items": {
226              "type": "string"
227            }
228          },
229          "output_type": {
230            "title": "Output Type array or key value",
231            "enum": [
232              "key_value",
233              "array"
234            ],
235            "type": "string",
236            "description": "Type of data structure to be returned",
237            "default": "key_value"
238          },
239          "paragraph_together": {
240            "title": "Combine paragraphs",
241            "type": "boolean",
242            "description": "Combine paragraphs into one when output_type is key_value",
243            "default": false
244          },
245          "only_description": {
246            "title": "Description only",
247            "type": "boolean",
248            "description": "Return Only the description of the article",
249            "default": false
250          }
251        }
252      },
253      "runsResponseSchema": {
254        "type": "object",
255        "properties": {
256          "data": {
257            "type": "object",
258            "properties": {
259              "id": {
260                "type": "string"
261              },
262              "actId": {
263                "type": "string"
264              },
265              "userId": {
266                "type": "string"
267              },
268              "startedAt": {
269                "type": "string",
270                "format": "date-time",
271                "example": "2025-01-08T00:00:00.000Z"
272              },
273              "finishedAt": {
274                "type": "string",
275                "format": "date-time",
276                "example": "2025-01-08T00:00:00.000Z"
277              },
278              "status": {
279                "type": "string",
280                "example": "READY"
281              },
282              "meta": {
283                "type": "object",
284                "properties": {
285                  "origin": {
286                    "type": "string",
287                    "example": "API"
288                  },
289                  "userAgent": {
290                    "type": "string"
291                  }
292                }
293              },
294              "stats": {
295                "type": "object",
296                "properties": {
297                  "inputBodyLen": {
298                    "type": "integer",
299                    "example": 2000
300                  },
301                  "rebootCount": {
302                    "type": "integer",
303                    "example": 0
304                  },
305                  "restartCount": {
306                    "type": "integer",
307                    "example": 0
308                  },
309                  "resurrectCount": {
310                    "type": "integer",
311                    "example": 0
312                  },
313                  "computeUnits": {
314                    "type": "integer",
315                    "example": 0
316                  }
317                }
318              },
319              "options": {
320                "type": "object",
321                "properties": {
322                  "build": {
323                    "type": "string",
324                    "example": "latest"
325                  },
326                  "timeoutSecs": {
327                    "type": "integer",
328                    "example": 300
329                  },
330                  "memoryMbytes": {
331                    "type": "integer",
332                    "example": 1024
333                  },
334                  "diskMbytes": {
335                    "type": "integer",
336                    "example": 2048
337                  }
338                }
339              },
340              "buildId": {
341                "type": "string"
342              },
343              "defaultKeyValueStoreId": {
344                "type": "string"
345              },
346              "defaultDatasetId": {
347                "type": "string"
348              },
349              "defaultRequestQueueId": {
350                "type": "string"
351              },
352              "buildNumber": {
353                "type": "string",
354                "example": "1.0.0"
355              },
356              "containerUrl": {
357                "type": "string"
358              },
359              "usage": {
360                "type": "object",
361                "properties": {
362                  "ACTOR_COMPUTE_UNITS": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "DATASET_READS": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATASET_WRITES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "KEY_VALUE_STORE_READS": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "KEY_VALUE_STORE_WRITES": {
379                    "type": "integer",
380                    "example": 1
381                  },
382                  "KEY_VALUE_STORE_LISTS": {
383                    "type": "integer",
384                    "example": 0
385                  },
386                  "REQUEST_QUEUE_READS": {
387                    "type": "integer",
388                    "example": 0
389                  },
390                  "REQUEST_QUEUE_WRITES": {
391                    "type": "integer",
392                    "example": 0
393                  },
394                  "DATA_TRANSFER_INTERNAL_GBYTES": {
395                    "type": "integer",
396                    "example": 0
397                  },
398                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
399                    "type": "integer",
400                    "example": 0
401                  },
402                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "PROXY_SERPS": {
407                    "type": "integer",
408                    "example": 0
409                  }
410                }
411              },
412              "usageTotalUsd": {
413                "type": "number",
414                "example": 0.00005
415              },
416              "usageUsd": {
417                "type": "object",
418                "properties": {
419                  "ACTOR_COMPUTE_UNITS": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "DATASET_READS": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATASET_WRITES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "KEY_VALUE_STORE_READS": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "KEY_VALUE_STORE_WRITES": {
436                    "type": "number",
437                    "example": 0.00005
438                  },
439                  "KEY_VALUE_STORE_LISTS": {
440                    "type": "integer",
441                    "example": 0
442                  },
443                  "REQUEST_QUEUE_READS": {
444                    "type": "integer",
445                    "example": 0
446                  },
447                  "REQUEST_QUEUE_WRITES": {
448                    "type": "integer",
449                    "example": 0
450                  },
451                  "DATA_TRANSFER_INTERNAL_GBYTES": {
452                    "type": "integer",
453                    "example": 0
454                  },
455                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
456                    "type": "integer",
457                    "example": 0
458                  },
459                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
460                    "type": "integer",
461                    "example": 0
462                  },
463                  "PROXY_SERPS": {
464                    "type": "integer",
465                    "example": 0
466                  }
467                }
468              }
469            }
470          }
471        }
472      }
473    }
474  }
475}

Wikipedia 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 Wikipedia 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

Rental 

To 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

14 days

Price

$30.00