Facebook page posts checker avatar

Facebook page posts checker

Under maintenance
Try for free

30 days trial then $39.00/month - No credit card required now

Go to Store
This Actor is under maintenance.

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

See alternative Actors
Facebook page posts checker

Facebook page posts checker

apify/facebook-page-posts-checker
Try for free

30 days trial then $39.00/month - No credit card required now

Facebook page checker extracts posts until several years from past, reviews and page details. Groups added as beta, less posts expected but with better details.

You can access the Facebook page posts checker 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": "wPXtEr5GVKqWXH8CL"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/apify~facebook-page-posts-checker/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-apify-facebook-page-posts-checker",
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/apify~facebook-page-posts-checker/runs": {
50      "post": {
51        "operationId": "runs-sync-apify-facebook-page-posts-checker",
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/apify~facebook-page-posts-checker/run-sync": {
93      "post": {
94        "operationId": "run-sync-apify-facebook-page-posts-checker",
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        "properties": {
134          "pageNames": {
135            "title": "Page names",
136            "uniqueItems": false,
137            "type": "array",
138            "description": "Names of the public facebook pages to get posts from",
139            "items": {
140              "type": "string"
141            }
142          },
143          "maxPosts": {
144            "title": "Max posts",
145            "type": "integer",
146            "description": "Limit the max number of posts to return",
147            "default": 3
148          },
149          "maxPostDate": {
150            "title": "Max post date in YYYY-MM-DD format",
151            "pattern": "^\\d{4}\\-(0[1-9]|1[012])\\-(0[1-9]|[12][0-9]|3[01])$",
152            "type": "string",
153            "description": "Posts are retrieved from newest to oldest. Use this setting to limit how many posts in the past it should fetch."
154          },
155          "minPostDate": {
156            "title": "Min post date in YYYY-MM-DD format",
157            "pattern": "^\\d{4}\\-(0[1-9]|1[012])\\-(0[1-9]|[12][0-9]|3[01])$",
158            "type": "string",
159            "description": "Set the minimum post date, remembering that posts start from newest to oldest, it will skip the newest posts up to the specified date"
160          },
161          "groupUrls": {
162            "title": "Groups URLs by ID, if specified Pages and Search will be disabled",
163            "type": "array",
164            "description": "URL by ID (NOT NAME!) i.e. https://www.facebook.com/groups/2246133101",
165            "items": {
166              "type": "object",
167              "required": [
168                "url"
169              ],
170              "properties": {
171                "url": {
172                  "type": "string",
173                  "title": "URL of a web page",
174                  "format": "uri"
175                }
176              }
177            }
178          },
179          "groupLimit": {
180            "title": "Amount of posts per group",
181            "type": "integer",
182            "description": "If this amount is not set no comments will be fetched",
183            "default": 0
184          },
185          "commentsLimit": {
186            "title": "Amount of comments per post from page or group",
187            "type": "integer",
188            "description": "If this amount is not random default comments will be fetched",
189            "default": 0
190          },
191          "viewOption": {
192            "title": "Mode: IMPORTANT! Facebook default might returns zero results",
193            "enum": [
194              "default",
195              "RANKED_THREADED",
196              "RECENT_ACTIVITY",
197              "RANKED_UNFILTERED"
198            ],
199            "type": "string",
200            "description": "Choose the way the comments are sorted",
201            "default": "RECENT_ACTIVITY"
202          },
203          "searchList": {
204            "title": "Search posts by keywords",
205            "type": "array",
206            "description": "Search posts and few additional top pages and profiles",
207            "default": [],
208            "items": {
209              "type": "string"
210            }
211          },
212          "resultsLimit": {
213            "title": "Search results amount",
214            "maximum": 50,
215            "type": "integer",
216            "description": "If this limit is not set only initial page of results returned",
217            "default": 10
218          },
219          "proxy": {
220            "title": "Proxy configuration",
221            "type": "object",
222            "description": "<strong>A proxy server is required to run this actor!</strong> Either use an Apify residential proxy, or provide your own proxy servers. Datacenter proxies will not work."
223          },
224          "maxRequestRetries": {
225            "title": "Max Retries",
226            "type": "integer",
227            "description": "maxConcurrency",
228            "default": 10
229          }
230        }
231      },
232      "runsResponseSchema": {
233        "type": "object",
234        "properties": {
235          "data": {
236            "type": "object",
237            "properties": {
238              "id": {
239                "type": "string"
240              },
241              "actId": {
242                "type": "string"
243              },
244              "userId": {
245                "type": "string"
246              },
247              "startedAt": {
248                "type": "string",
249                "format": "date-time",
250                "example": "2025-01-08T00:00:00.000Z"
251              },
252              "finishedAt": {
253                "type": "string",
254                "format": "date-time",
255                "example": "2025-01-08T00:00:00.000Z"
256              },
257              "status": {
258                "type": "string",
259                "example": "READY"
260              },
261              "meta": {
262                "type": "object",
263                "properties": {
264                  "origin": {
265                    "type": "string",
266                    "example": "API"
267                  },
268                  "userAgent": {
269                    "type": "string"
270                  }
271                }
272              },
273              "stats": {
274                "type": "object",
275                "properties": {
276                  "inputBodyLen": {
277                    "type": "integer",
278                    "example": 2000
279                  },
280                  "rebootCount": {
281                    "type": "integer",
282                    "example": 0
283                  },
284                  "restartCount": {
285                    "type": "integer",
286                    "example": 0
287                  },
288                  "resurrectCount": {
289                    "type": "integer",
290                    "example": 0
291                  },
292                  "computeUnits": {
293                    "type": "integer",
294                    "example": 0
295                  }
296                }
297              },
298              "options": {
299                "type": "object",
300                "properties": {
301                  "build": {
302                    "type": "string",
303                    "example": "latest"
304                  },
305                  "timeoutSecs": {
306                    "type": "integer",
307                    "example": 300
308                  },
309                  "memoryMbytes": {
310                    "type": "integer",
311                    "example": 1024
312                  },
313                  "diskMbytes": {
314                    "type": "integer",
315                    "example": 2048
316                  }
317                }
318              },
319              "buildId": {
320                "type": "string"
321              },
322              "defaultKeyValueStoreId": {
323                "type": "string"
324              },
325              "defaultDatasetId": {
326                "type": "string"
327              },
328              "defaultRequestQueueId": {
329                "type": "string"
330              },
331              "buildNumber": {
332                "type": "string",
333                "example": "1.0.0"
334              },
335              "containerUrl": {
336                "type": "string"
337              },
338              "usage": {
339                "type": "object",
340                "properties": {
341                  "ACTOR_COMPUTE_UNITS": {
342                    "type": "integer",
343                    "example": 0
344                  },
345                  "DATASET_READS": {
346                    "type": "integer",
347                    "example": 0
348                  },
349                  "DATASET_WRITES": {
350                    "type": "integer",
351                    "example": 0
352                  },
353                  "KEY_VALUE_STORE_READS": {
354                    "type": "integer",
355                    "example": 0
356                  },
357                  "KEY_VALUE_STORE_WRITES": {
358                    "type": "integer",
359                    "example": 1
360                  },
361                  "KEY_VALUE_STORE_LISTS": {
362                    "type": "integer",
363                    "example": 0
364                  },
365                  "REQUEST_QUEUE_READS": {
366                    "type": "integer",
367                    "example": 0
368                  },
369                  "REQUEST_QUEUE_WRITES": {
370                    "type": "integer",
371                    "example": 0
372                  },
373                  "DATA_TRANSFER_INTERNAL_GBYTES": {
374                    "type": "integer",
375                    "example": 0
376                  },
377                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "PROXY_SERPS": {
386                    "type": "integer",
387                    "example": 0
388                  }
389                }
390              },
391              "usageTotalUsd": {
392                "type": "number",
393                "example": 0.00005
394              },
395              "usageUsd": {
396                "type": "object",
397                "properties": {
398                  "ACTOR_COMPUTE_UNITS": {
399                    "type": "integer",
400                    "example": 0
401                  },
402                  "DATASET_READS": {
403                    "type": "integer",
404                    "example": 0
405                  },
406                  "DATASET_WRITES": {
407                    "type": "integer",
408                    "example": 0
409                  },
410                  "KEY_VALUE_STORE_READS": {
411                    "type": "integer",
412                    "example": 0
413                  },
414                  "KEY_VALUE_STORE_WRITES": {
415                    "type": "number",
416                    "example": 0.00005
417                  },
418                  "KEY_VALUE_STORE_LISTS": {
419                    "type": "integer",
420                    "example": 0
421                  },
422                  "REQUEST_QUEUE_READS": {
423                    "type": "integer",
424                    "example": 0
425                  },
426                  "REQUEST_QUEUE_WRITES": {
427                    "type": "integer",
428                    "example": 0
429                  },
430                  "DATA_TRANSFER_INTERNAL_GBYTES": {
431                    "type": "integer",
432                    "example": 0
433                  },
434                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "PROXY_SERPS": {
443                    "type": "integer",
444                    "example": 0
445                  }
446                }
447              }
448            }
449          }
450        }
451      }
452    }
453  }
454}

Facebook page posts checker 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 Facebook page posts checker 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:

Developer
Maintained by Apify

Actor Metrics

  • 11 monthly users

  • 14 bookmarks

  • >99% runs succeeded

  • Created in May 2022

  • Modified 9 months ago

Categories