Gab Search Scraper avatar
Gab Search Scraper

Deprecated

Pricing

$15.00/month + usage

Go to Store
Gab Search Scraper

Gab Search Scraper

Deprecated

Developed by

Web Harvester

Maintained by Community

Scrape search results and accounts and groups' info as well as the posts and comments of accounts and groups from Gab's website. Download your data in any format (JSON, CSV, XML, RSS, HTML Table). Seamless integration with apps, reports, and databases.

0.0 (0)

Pricing

$15.00/month + usage

4

Monthly users

1

Runs succeeded

>99%

Last modified

6 months ago

You can access the Gab Search 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": "1.0",
5    "x-build-id": "inYuAy4YQ9GzycVSZ"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/web.harvester~gab-search-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-web.harvester-gab-search-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/web.harvester~gab-search-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-web.harvester-gab-search-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/web.harvester~gab-search-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-web.harvester-gab-search-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          "desiredPostsCount"
135        ],
136        "properties": {
137          "startUrls": {
138            "title": "Search Urls",
139            "type": "array",
140            "description": "",
141            "default": [],
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          "searchQueries": {
157            "title": "Search queries",
158            "type": "array",
159            "description": "",
160            "default": [],
161            "items": {
162              "type": "string"
163            }
164          },
165          "searchType": {
166            "title": "Search type",
167            "enum": [
168              "TOP",
169              "STATUSES",
170              "PEOPLE",
171              "GROUPS"
172            ],
173            "type": "string",
174            "description": "",
175            "default": "TOP"
176          },
177          "desiredPostsCount": {
178            "title": "Desired posts count (per search query, account, or group)",
179            "minimum": 0,
180            "type": "integer",
181            "description": "Desired number of posts to scrape per search query (Top and Statuses), account (each found account), or group (each found group).",
182            "default": 100
183          },
184          "desiredCommentsCount": {
185            "title": "Desired comments count (per post)",
186            "minimum": 0,
187            "type": "integer",
188            "description": "Desired number of comments to scrape per post."
189          },
190          "desiredAccountsCount": {
191            "title": "Desired account count for 'People' search type (per search query)",
192            "minimum": 0,
193            "type": "integer",
194            "description": "Desired number of accounts to scrape for 'People' search type per search query."
195          },
196          "desiredGroupsCount": {
197            "title": "Desired group count for 'Groups' search type (per search query)",
198            "minimum": 0,
199            "type": "integer",
200            "description": "Desired number of groups to scrape for 'Groups' search type per search query."
201          },
202          "accountPostsSortBy": {
203            "title": "Account posts sort by for 'People' search type",
204            "enum": [
205              "NEWEST",
206              "NO_REPOSTS",
207              "TOP_TODAY",
208              "TOP_WEEKLY",
209              "TOP_MONTHLY",
210              "TOP_YEARLY",
211              "TOP_ALL_TIME"
212            ],
213            "type": "string",
214            "description": "",
215            "default": "NEWEST"
216          },
217          "groupPostsSortBy": {
218            "title": "Group posts sort by for 'Groups' search type",
219            "enum": [
220              "HOT",
221              "RISING",
222              "NEWEST",
223              "RECENT",
224              "TOP_TODAY",
225              "TOP_WEEKLY",
226              "TOP_MONTHLY",
227              "TOP_YEARLY",
228              "TOP_ALL_TIME"
229            ],
230            "type": "string",
231            "description": "",
232            "default": "NEWEST"
233          },
234          "commentsSortBy": {
235            "title": "Comments sort by",
236            "enum": [
237              "MOST_LIKED",
238              "NEWEST",
239              "OLDEST"
240            ],
241            "type": "string",
242            "description": "",
243            "default": "MOST_LIKED"
244          },
245          "addUserInfo": {
246            "title": "Include user info in posts",
247            "type": "boolean",
248            "description": "Expands the posts by integrating user information and appending it to the account field."
249          },
250          "addGroupInfo": {
251            "title": "Include group info in posts",
252            "type": "boolean",
253            "description": "Expands the posts by integrating group information and appending it to the group field."
254          },
255          "searchOnlyVerified": {
256            "title": "Scrape only from verified accounts and groups (for 'People' and 'Groups' search types)",
257            "type": "boolean",
258            "description": "Whether to scrape only from verified accounts and groups (for 'People' and 'Groups' search types)."
259          },
260          "groupsMediaOnly": {
261            "title": "Scrape media only for 'Groups' search type (no posts, comments, etc.)",
262            "type": "boolean",
263            "description": "Weather to scrape media only for 'Groups' search type (no posts, comments, etc.)",
264            "default": false
265          }
266        }
267      },
268      "runsResponseSchema": {
269        "type": "object",
270        "properties": {
271          "data": {
272            "type": "object",
273            "properties": {
274              "id": {
275                "type": "string"
276              },
277              "actId": {
278                "type": "string"
279              },
280              "userId": {
281                "type": "string"
282              },
283              "startedAt": {
284                "type": "string",
285                "format": "date-time",
286                "example": "2025-01-08T00:00:00.000Z"
287              },
288              "finishedAt": {
289                "type": "string",
290                "format": "date-time",
291                "example": "2025-01-08T00:00:00.000Z"
292              },
293              "status": {
294                "type": "string",
295                "example": "READY"
296              },
297              "meta": {
298                "type": "object",
299                "properties": {
300                  "origin": {
301                    "type": "string",
302                    "example": "API"
303                  },
304                  "userAgent": {
305                    "type": "string"
306                  }
307                }
308              },
309              "stats": {
310                "type": "object",
311                "properties": {
312                  "inputBodyLen": {
313                    "type": "integer",
314                    "example": 2000
315                  },
316                  "rebootCount": {
317                    "type": "integer",
318                    "example": 0
319                  },
320                  "restartCount": {
321                    "type": "integer",
322                    "example": 0
323                  },
324                  "resurrectCount": {
325                    "type": "integer",
326                    "example": 0
327                  },
328                  "computeUnits": {
329                    "type": "integer",
330                    "example": 0
331                  }
332                }
333              },
334              "options": {
335                "type": "object",
336                "properties": {
337                  "build": {
338                    "type": "string",
339                    "example": "latest"
340                  },
341                  "timeoutSecs": {
342                    "type": "integer",
343                    "example": 300
344                  },
345                  "memoryMbytes": {
346                    "type": "integer",
347                    "example": 1024
348                  },
349                  "diskMbytes": {
350                    "type": "integer",
351                    "example": 2048
352                  }
353                }
354              },
355              "buildId": {
356                "type": "string"
357              },
358              "defaultKeyValueStoreId": {
359                "type": "string"
360              },
361              "defaultDatasetId": {
362                "type": "string"
363              },
364              "defaultRequestQueueId": {
365                "type": "string"
366              },
367              "buildNumber": {
368                "type": "string",
369                "example": "1.0.0"
370              },
371              "containerUrl": {
372                "type": "string"
373              },
374              "usage": {
375                "type": "object",
376                "properties": {
377                  "ACTOR_COMPUTE_UNITS": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "DATASET_READS": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "DATASET_WRITES": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "KEY_VALUE_STORE_READS": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "KEY_VALUE_STORE_WRITES": {
394                    "type": "integer",
395                    "example": 1
396                  },
397                  "KEY_VALUE_STORE_LISTS": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "REQUEST_QUEUE_READS": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "REQUEST_QUEUE_WRITES": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "DATA_TRANSFER_INTERNAL_GBYTES": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "PROXY_SERPS": {
422                    "type": "integer",
423                    "example": 0
424                  }
425                }
426              },
427              "usageTotalUsd": {
428                "type": "number",
429                "example": 0.00005
430              },
431              "usageUsd": {
432                "type": "object",
433                "properties": {
434                  "ACTOR_COMPUTE_UNITS": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "DATASET_READS": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "DATASET_WRITES": {
443                    "type": "integer",
444                    "example": 0
445                  },
446                  "KEY_VALUE_STORE_READS": {
447                    "type": "integer",
448                    "example": 0
449                  },
450                  "KEY_VALUE_STORE_WRITES": {
451                    "type": "number",
452                    "example": 0.00005
453                  },
454                  "KEY_VALUE_STORE_LISTS": {
455                    "type": "integer",
456                    "example": 0
457                  },
458                  "REQUEST_QUEUE_READS": {
459                    "type": "integer",
460                    "example": 0
461                  },
462                  "REQUEST_QUEUE_WRITES": {
463                    "type": "integer",
464                    "example": 0
465                  },
466                  "DATA_TRANSFER_INTERNAL_GBYTES": {
467                    "type": "integer",
468                    "example": 0
469                  },
470                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
471                    "type": "integer",
472                    "example": 0
473                  },
474                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
475                    "type": "integer",
476                    "example": 0
477                  },
478                  "PROXY_SERPS": {
479                    "type": "integer",
480                    "example": 0
481                  }
482                }
483              }
484            }
485          }
486        }
487      }
488    }
489  }
490}

Gab Search 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 Gab Search 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

1 day

Price

$15.00