SocialAPIs
Sources
PricingBlogFAQContact
Back to Sources

Meta Ads Page Details

Get detailed info about a specific Facebook page from the Ads Library.

AdsAvailableadsmetapage

Ready to try this API?

Edit parameters and send a live request from your browser

Introduction

Meta Ads Page Details API retrieves detailed information about a specific Facebook page from the Ads Library, including page verification status, ad count, and page metadata.


What data can i extract?

๐Ÿ“„ Page Name๐Ÿ†” Page IDโœ… Verified Status
๐Ÿ“ข Total Ad Count๐Ÿ“ Page Location๐Ÿ–ผ๏ธ Page Image
๐Ÿ“‚ Page Category๐Ÿ”— Page URL๐Ÿ“Š Ad Summary

Input options

  • page_id (Required): The Facebook Page ID to look up.
json
1{
2  "page_id": "144939265372419"  
3}

Output and dataset sample

json
1{
2  "page_id": "144939265372419",  
3  "page_name": "Nike",  
4  "page_url": "https://www.facebook.com/nike",  
5  "page_category": "Clothing brand",  
6  "is_verified": true,  
7  "total_ads": 1523,  
8  "page_image": "https://..."  
9}

Conclusion

Use Meta Ads Page Details to get a quick overview of any advertiser's presence in the Meta Ads Library.

About the Meta Ads Page Details API

The Meta Ads Page Details endpoint is part of SocialAPIs' unified REST API for public social-media data. Get detailed info about a specific Facebook page from the Ads Library. It belongs to the Ads category and follows the same auth, pagination, and error-handling conventions as every other endpoint on the platform โ€” so any code you write for one transfers cleanly to the others.

adsmetapage

What you can do with this endpoint

The Meta Ads Page Details endpoint is most often combined with other SocialAPIs endpoints to power the workflows below. Each one is achievable on the Free tier for evaluation; scale up to Pro or Ultra when you move to production.

Building a unified dataset

Pipe the GET response straight into BigQuery, Postgres, Airtable, or a Google Sheet via n8n / Make / Zapier. The response is structured JSON โ€” no HTML parsing, no headless browser, no upstream OAuth.

Powering an AI agent (MCP)

The same endpoint is exposed as a tool in the SocialAPIs MCP server, so Claude Desktop / ChatGPT custom integrations / Cursor / any MCP-aware client can call it directly inside a chat. No glue code, no separate auth โ€” the user's API token does both.

Scheduled monitoring & alerts

Schedule a recurring call (cron, GitHub Actions, n8n schedule), diff the latest response against the previous run, and notify Slack / email / Telegram when a meaningful change appears. The response shape is stable across calls so diffs stay reliable.

Backfilling a product feature

If you're building a feature on top of public social data (lead enrichment, brand monitoring, competitive intelligence, resale arbitrage), this endpoint usually replaces a brittle in-house scraper that broke every time Facebook tweaked its HTML. Same dataset, real-time, with an SLA.

Working code example

All SocialAPIs endpoints take your API token in the x-api-token header. Grab yours from your dashboard (or create a free account at /auth/signup โ€” 200 free calls per month, no credit card).

curl -X GET "https://api.socialapis.io/facebook/ads/page-details?page_id=144939265372419" \
  -H "x-api-token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json"

The response is JSON containing the requested data plus a request_id (echo it back in any support email โ€” it lets us pull the matching row from our request log in seconds). Detailed parameter schemas and copy-paste snippets in JavaScript, Python, PHP, Java, and Go are available in the playground above.

Pagination, rate limits, and error handling

Pagination

List-style endpoints return a next_cursor in the response. Pass it back in the next request to walk the full result set. Cursors are stable across calls โ€” safe to persist if you need to resume later.

Rate limits

1,000 req/hour on the Free tier; paid tiers step up by an order of magnitude each โ€” 1 req/sec on Pro, 5 req/sec on Ultra, 10 req/sec on Mega, 20+ req/sec on custom Enterprise plans. Limit hits return HTTP 429 with a Retry-After header โ€” respect it and you'll never see a sustained block.

Errors

4xx = your request (bad params, missing auth, hit limit). 5xx = our side (transient โ€” retry with backoff). Every error response includes error_code, message, and a request_id for support.

Related endpoints in the Ads category

These endpoints share the same data model and auth as Meta Ads Page Details. Most real-world integrations combine 2-3 of them.

Meta Ads Archive Details

Get detailed info about a specific archived ad including creative, spend, and impressions.

Meta Ads Keywords Search

Search for ads by keyword with optional country filter.

Meta Ads Supported Countries

Get all available country codes for filtering ads in the Meta Ad Library.

Meta Ads Library Search

Search ads in the Meta Ad Library by keyword or page ID with country, status, and date filters.

Frequently asked questions

Do I need to register a Facebook app or go through OAuth to use the Meta Ads Page Details endpoint?

No. SocialAPIs handles the upstream auth and infrastructure on our side. You just send a bearer token (your SocialAPIs API token) and call the endpoint. No Facebook app review, no OAuth scope dance, no expiring user access tokens. This is the primary reason most teams move off the Graph API to us.

How much does a single call to this endpoint cost in credits?

One credit per successful response. The exact cost is shown in the dashboard under "Usage" after every call. Failed requests (4xx errors caused by bad input) do not consume credits.

Is the data real-time or cached?

Real-time. Each call fetches from the upstream source at the moment you call us โ€” we don't cache responses between users. The exception is the Ads Library endpoints, which return Meta's own snapshots and therefore lag by 24-48 hours because Meta itself indexes them on that cadence (not us).

Can I use this endpoint inside Claude Desktop, ChatGPT, or another AI agent?

Yes. The SocialAPIs MCP server exposes every endpoint as an MCP tool, so any MCP-aware client (Claude Desktop, the ChatGPT Custom Integrations beta, Cursor, Cline) can call it directly inside a chat. The MCP server uses the same API token as direct HTTP calls, so your credit balance, rate limits, and usage history are unified across surfaces.

What happens if my call fails or returns an unexpected shape?

Every response โ€” success or error โ€” includes a request_id in both the body and the x-request-id header. Email it to support and we can pull the full request log (params, upstream response, timing, error trace) within minutes. We retain the log for 30 days on standard plans and indefinitely on enterprise. Don't ship a workaround for an edge case without checking with us first โ€” it's usually a two-line server fix.

Heads up if you're migrating from the Graph API

Some fields Meta's official Graph API used to return are no longer publicly accessible (page email, exact follower counts on small pages, post audience targeting). Where we can derive them from other public signals, we do; where we can't, the field will be absent from the response (we don't fabricate values). The full list of "what's still returnable in 2026" lives in the docs โ€” start there before assuming a field is broken on our side.

Ready to call Meta Ads Page Details?

Use the playground at the top of this page to send a live request against your account โ€” or grab the curl above and run it from your terminal. Free accounts get 200 calls per month, enough to integrate, prototype, and ship a working demo before deciding whether to upgrade.

Create a free API key ย ยทย  See pricing ย ยทย  Browse all endpoints