Facebook Page Details API
Fetch a public Facebook page — links, bio, and profile fields as structured JSON.
GET request to /v1/facebook/page-details that responds with clean JSON and costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.What is the Facebook Page Details API?
The Facebook Page Details API lets you fetch profile or page details and audience stats for Facebook page details with a single REST call. No OAuth, no infrastructure to maintain, and no platform SDKs — send the request, get clean structured JSON back. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh.
What you get
- Display name, handle or URL, bio, and avatar when available
- Follower / subscriber and content counts
- Verification status and external links when exposed
- Structured JSON ready for enrichment and dashboards
Try it
Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).
Parameters
curl "https://api.captapi.com/v1/facebook/page-details?url=https%3A%2F%2Fwww.facebook.com%2FNASA" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."Edit the parameters and the code updates instantly. Switch languages and hit copy.
Example response
{
"success": true,
"data": {
"platform": "facebook",
"url": "https://www.facebook.com/NASA",
"username": "NASA",
"name": "NASA",
"displayName": "NASA",
"fullName": "NASA - National Aeronautics and Space Administration",
"bio": "Explore the universe and discover our home planet. \nThere's space for everybody. ✨",
"followers": 28661037,
"following": 52,
"likes": 28661037,
"verified": true,
"profileImage": "https://scontent.fsac1-1.fna.fbcdn.net/v/t39.30808-1/243095782_416661036495945_3843362260429099279_n.png?stp=dst-png&cstp=mx800x800&ctp=s200x200&_nc_cat=108&ccb=1-7&_nc_sid=f907e8&_nc_ohc=rc5kNRYek84Q7kNvwF8Sa_u&_nc_oc=AdrNvQfTevsfOPnr9fNsTnlh9J829gS2FUbp3T7-OE4v3qnLsURBqMMwq6zKi3x3jnA&_nc_zt=24&_nc_ht=scontent.fsac1-1.fna&_nc_gid=R5adZW0LMUuuYyLoZKxfZQ&_nc_ss=7b289&oh=00_AQCvsaV4YwQoigD-2yXvzz5KJ0wSPrw9jH8qLU9nIrFwBw&oe=6A6D8255",
"coverImage": "https://scontent.fsac1-2.fna.fbcdn.net/v/t39.30808-6/663298991_1496429661852405_5171518456419416626_n.jpg?stp=dst-jpg_tt6&cstp=mx2048x1366&ctp=s960x960&_nc_cat=105&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=qTuXCYf3o_IQ7kNvwHdjJ4X&_nc_oc=AdqtYKrQs5jP45CGjFAOTTU1zFWFFzf9eE3qCZKk6A3sTl0Bt3L_xBwBQ-gSHNpmrnE&_nc_zt=23&_nc_ht=scontent.fsac1-2.fna&_nc_gid=R5adZW0LMUuuYyLoZKxfZQ&_nc_ss=7b289&oh=00_AQDUkGzKMQhEkgqFBKtc9Hv0I9CLn1T8a0ZzxfSl3uEOHQ&oe=6A6D5EE3",
"category": "Government organization",
"website": "https://nasa.gov/nasa-app",
"email": "public-inquiries@hq.nasa.gov"
}
}Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.
Response structure
A successful call returns success, cached, creditsUsed, and a data object with the following fields:
Top-level fields
platformPlatform identifier (e.g. youtube, instagram).urlCanonical URL of the item.usernameAccount username / handle.nameName of the item or account.displayNameDisplay name of the account.fullNameFull display name.bioProfile bio or description.followersFollower count.followingNumber of accounts followed.likesLike count.verifiedWhether the account is verified.profileImageProfile image URL.coverImageCover image URL.categoryCategory of the item.websiteWebsite listed on the profile.emailPublic email address, when exposed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Facebook page URL, @handle, or page name, e.g. https://facebook.com/PageName. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble. |
| cache | boolean | No | Set true to serve from the 24h response cache. Default false — always fetch fresh data. |
Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh.
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 or page details and audience stats from a public Facebook profile or page using one GET request to /v1/facebook/page-details. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Facebook Page Details API cost?+
Each successful call costs 2 credits. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Failed or empty results are never charged.
Do I need a Facebook API key or OAuth?+
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. 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 and automatic retries. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Use it for 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.