Facebook Profile API
Scrape Facebook Profile data with one API call. Returns a unified Facebook Author profile with page ID, display name, profile URL, profile image, bio (the page intro), follower count, page-like count, and creation date. A **business page** carries considerably more than a personal profile, and all of it rides in `author.ext`: `business_category`, `website`, `links[]`, `public_phone`, `public_email`, `address`, `price_range`, `rating` (Facebook's recommendation string) with `rating_count`, `talking_about_count`, `cover_url`, `page_active`, and `ad_library_page_id` / `ad_library_status`: the Ad Library page id is a different id from `author.id` and is the one `/v1/facebook/adlibrary/company/ads` takes, so you can chain profile → ads off a single lookup. A personal profile returns null for the listing fields it has no equivalent for rather than omitting them. `links[]` and `business_hours[]` are also mapped, the latter only when you pass `get_business_hours=true`, but Facebook returned both empty on every page measured on 2026-08-11, so treat them as best effort rather than data you can depend on. `author.following` and `author.posts_count` remain null because the upstream profile response does not provide those totals.
Last updated August 2026Maintained by the SocialCrawl team
Returns a Facebook page's public profile: page id, display name, profile image, bio, follower count, and page-like count.
Use it when you have a page URL and want a quick snapshot before pulling that page's posts, photos, or reels.
Try the Facebook Profile API
See real data before writing a single line
Searching 51 platforms in parallel
What can you do with the Profile API?
The Profile endpoint gives you structured Facebook data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/facebook/profile?url=https%3A%2F%2Fwww.facebook.com%2FMeta"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/facebook/profile",
params={
'url': 'https://www.facebook.com/Meta',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/facebook/profile?url=https%3A%2F%2Fwww.facebook.com%2FMeta",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| url | Yes | Full URL of the Facebook page or profile |
| get_business_hours | No | Get the business's hours |
What does the Facebook Profile API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "facebook",
"endpoint": "/v1/facebook/profile",
"data": {
"author": {
"id": "100044561550831",
"username": null,
"display_name": "NASA - National Aeronautics and Space Administration",
"avatar_url": "https://scontent-phl2-1.xx.fbcdn.net/v/t39.30808-1/243095782_416661036495945_3843362260429099279_n.png?stp=dst-png&cstp=mx800x800&ctp=s480x480&_nc_cat=1&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=8JwJCEbIJtcQ7kNvwE7bHf3&_nc_oc=Adpgm0tdqHzQi8hCG-6PZSgRGHRJJ4ZOD_GEvGFQVYA9zCX8gaFVxpDZEVFz2fGoHN8&_nc_zt=24&_nc_ht=scontent-phl2-1.xx&_nc_gid=h7hpILJTNe37zLDnM58RQA&_nc_ss=7f289&oh=00_AQB3Q17oyz_VPmyzoVUwa9YnzN3KnPuvUESweRQdc7kzRQ&oe=6A632E95",
"bio": "Explore the universe and discover our home planet. \nThere's space for everybody. ✨",
"verified": null,
"followers": 28000000,
"following": null,
"posts_count": null,
"likes_count": 28657125,
"url": "https://www.facebook.com/NASA/",
"private": null,
"joined_at": "March 4, 2009"
},
"computed": {
"engagement_rate": null,
"language": "en",
"content_category": "other",
"estimated_reach": null
},
"_warnings": [
"computed.engagement_rate: author ratio exceeded 1.0 (raw: 1.023469); returned null — a lifetime likes/followers ratio is not a real engagement rate"
]
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Facebook Profile API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 51 platforms covering 10B+ monthly active users.
One schema, every platform
Query 51 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I get Facebook page data with an API?
What fields does GET /v1/facebook/profile return?
Can I scrape Facebook profiles without a Graph API token?
How much does the Facebook Profile API cost?
Can I get business hours for a Facebook page?
Ask AI about SocialCrawl
Ready to scrape Facebook Profile data?
Get your API key and start pulling Facebook data in under 60 seconds.
