Collects a Facebook page directly from the platform at request time and returns its public profile fields. Realtime collection consumes more quota than database reads.
GET
/api/v1/facebook/realtime/page/infoQuota usage: Each successful request to this endpoint deducts 100 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 |
Response Fields
| Name | Type | Description |
|---|---|---|
success | boolean | Success |
code | integer | Code |
message | string | Message |
data | object | - |
data.page_id | string | Page ID |
data.page_name | string | Page name |
data.page_username | string | Page username |
data.page_url | string | Page URL |
data.avatar | string | Avatar URL |
data.cover_url | string | Cover image URL |
data.description | string | Page description |
data.category | string | Page category |
data.follower_count | integer | Follower count |
data.following_count | integer | Following count |
data.email | string | |
data.phone | string | Phone |
data.website | string | Website URL |
data.creation_date | string | Created at |
Try It
https://openapi.scdata.cc/api/v1/facebook/realtime/page/info
Select an API key from Dashboard
Add an API key before sending a request.Go to Dashboard
Query Params
page_url*cURL Example
bash
curl -X GET "https://openapi.scdata.cc/api/v1/facebook/realtime/page/info?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": {"page_id": "string","page_name": "string","page_username": "string","page_url": "string","avatar": "string","cover_url": "string","description": "string","category": "string","follower_count": 0,"following_count": 0,"email": "string","phone": "string","website": "string","creation_date": "string"}}
Use Cases
- Brand page audit — Pull a competitor's page metrics for a benchmark report.
- Partner verification — Confirm a page's follower base and category before a co-marketing deal.