Facebook Page Details API
Fetch Facebook profile data — follower counts, bio, verification, and stats.
GET request to /v1/facebook/page-details that responds with clean JSON, costs 1 credit, and is cached for 24 hours (repeat calls are free). Start with 100 free credits — no credit card.What is the Facebook Page Details API?
The Facebook Page Details API lets you fetch profile/channel details and audience stats from Facebook with a single REST call. No OAuth, no scraping infrastructure, and no platform SDKs — send the URL, get clean structured JSON back. Results are cached for 24 hours, so repeat lookups are instant and free.
What you get
- Display name, handle, bio, and avatar
- Follower / subscriber and content counts
- Verification status and external links
- Aggregate engagement signals
Try it
Fill in the parameters below and copy a ready-to-run request in your language of choice.
Parameters
curl "https://api.captapi.com/v1/facebook/page-details?url=https%3A%2F%2Fwww.facebook.com%2FNASA" \
-H "Authorization: Bearer capt_live_..."Edit the parameters and the code updates instantly. Switch languages and hit copy.
Example response
{
"success": true,
"cached": false,
"creditsUsed": 1,
"data": {
"platform": "facebook",
"url": "https://www.facebook.com/NASA",
"username": null,
"displayName": "NASA",
"bio": "Explore the universe and discover our home planet. \nThere's space for everybody. ✨",
"followers": 28629254,
"likes": 28629254,
"verified": null,
"profileImage": "https://scontent.fagc1-2.fna.fbcdn.net/v/t39.30808-1/243095782_416661036495945_3843362260429099279_n.png?stp=dst-png_s200x200&_nc_cat=1&ccb=1-7&_nc_sid=f907e8&_nc_ohc=NqMcrocOb5QQ7kNvwGD_XSN&_nc_oc=AdoR-emjSV4Z6a-5Iar1pkUb6rsqOA6ImakRtu5tvM9mnG5-awFAh2GXxG3BnVwMCQZpsOm__Uc0C5s7mChyT02t&_nc_zt=24&_nc_ht=scontent.fagc1-2.fna&_nc_gid=LA6tAn90z29GBR-JHMZQeA&_nc_ss=7c289&oh=00_Af_os4rn6E00JtLfmlEFDNAxMaZth6xKMl9BDdAQO-oviA&oe=6A265155",
"category": "Government organization",
"website": "https://www.nasa.gov/nasa-app/"
}
}Response structure
A successful call returns success, cached, creditsUsed, and a data object with the following fields:
Profile
handleProfile / channel handle.nameDisplay name.bioProfile bio or description.verifiedWhether the account is verified.
Stats
followersFollower / subscriber count.postsTotal number of posts / videos.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Facebook page URL, e.g. https://facebook.com/PageName. |
Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 1 credit. Repeat calls for the same request are served from cache for free.
facebook_page_details via @captapi/mcp. Set it up →How it works
- 1. Sign up — get 100 free credits, no card required.
- 2. Create a key from your dashboard.
- 3. Send one request to
/v1/facebook/page-detailsand parse the JSON response.
Use cases
Influencer Discovery
Find and vet creators by audience size.
CRM Enrichment
Add social stats to your contact profiles.
Competitive Analysis
Track follower growth and posting cadence.
Outreach
Qualify partnership and sponsorship targets.
Frequently asked questions
What does the Facebook Page Details API do?+
The Facebook Page Details API lets you fetch profile/channel details and audience stats from a public Facebook profile using one GET request to /v1/facebook/page-details. It returns clean JSON — no OAuth or scraping setup required.
How many credits does the Facebook Page Details API cost?+
Each successful call costs 1 credit. Responses are cached for 24 hours, and cached results cost 0 credits. Failed or empty results are never charged.
Do I need a Facebook API key or OAuth?+
No. A single Captapi key works across YouTube, TikTok, Instagram, and Facebook. We handle proxies, rate limits, retries, and authentication for you.
Is the Facebook Page Details API suitable for production use?+
Yes. It is a stable REST endpoint with predictable JSON, automatic retries, and a shared 24-hour cache. Use it for RAG pipelines, analytics, monitoring, and content automation.
More Facebook APIs
Ready to use the Facebook Page Details API?
Sign up, grab your key, and make your first call in 60 seconds.