Page collection runs asynchronously: this call creates the task and returns its id; poll the task-result endpoint until it completes.
GET
/api/v1/facebook/task/page/postsQuota usage: Each successful request to this endpoint deducts 1 quota units from your plan.
Request Parameters
Required Parameters
| Name | In | Type | Description |
|---|---|---|---|
page_url | query | string | page url example: https://www.facebook.com/nike |
Optional Parameters
| Name | In | Type | Description |
|---|---|---|---|
limit | query | integer | Number of results |
publish_at_start | query | string | Publish time from example: 2026-01-01 |
publish_at_end | query | string | Publish time to example: 2026-01-31 |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.task_id | string | Task ID |
data.task_status | string | Task status |
Try It
https://openapi.scdata.cc/api/v1/facebook/task/page/posts
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard
Query Params
page_url*limitpublish_at_startpublish_at_endcURL Example
bash
curl -X GET "https://openapi.scdata.cc/api/v1/facebook/task/page/posts?page_url=https%3A%2F%2Fwww.facebook.com%2Fnike" \-H "Authorization: YOUR_API_KEY"
Response Example (200 application/json)
json
{"success": true,"code": 200,"message": "Request successful","data": {"task_id": "string","task_status": "string"}}
Use Cases
- Content calendar analysis — Collect a competitor page's posts to study cadence and formats.
- Partner content audit — Verify that a partner page published the agreed number of posts.