socialsearchapi Dashboard Get a key

Search Facebook with one call.

Read Facebook, public Page posts and reactions, without building or maintaining a scraper. Same response shape as every other platform here, so one parser handles all of them.

2-3 credits a call
50 free credits on signup, no card
failed calls: 0 credits

1The call

curl -H "x-api-key: $SS_KEY" \
  "https://api.socialsearchapi.com/v1/facebook/profile/posts?url=https%3A%2F%2Fwww.facebook.com%2Fnasa"

This call costs 2 credits. A new account starts with 50 free credits on any platform: create a key in the dashboard and this command runs as-is.

2Why not build this yourself

The Graph API only reads Pages you administer or that have granted your app access, and app review for anything broader is a multi-week process with an uncertain outcome. Reading a public Page you do not own has no first-party path.

3What comes backcaptured 2026-08-27

{
  "success": true,
  "platform": "facebook",
  "data": {
    "total": 3,
    "items": [
      {
        "id": "1613892763439427",
        "platform": "facebook",
        "type": "post",
        "url": "https://www.facebook.com/NASA/posts/pfbid02kfrwM9QToMkX5GFRADzNyr4cGU8XhYk9uGx7uJSyYsndMGP9gWGA3XqAgPzkq9X3l",
        "author": "NASA - National Aeronautics and Space Administration",
        "created_at": "2026-08-27T13:10:02Z",
        "metrics": {
          "comments": 11,
          "likes": 123
        }
      }
    ]
  },
  "credits_used": 3
}

Items from Facebook carry: author, created_at, extra, id, metrics, platform, text, type, url.

4Characteristics

ParameterValue
/v1/facebook/group/posts2 credits a call
/v1/facebook/post2 credits a call
/v1/facebook/post/comments3 credits a call
/v1/facebook/profile2 credits a call
/v1/facebook/profile/posts2 credits a call
Typical latency3,675 ms, measured 2026-08-27
CoveragePublic Pages only. No personal profiles, no Groups, no private content.
DataPublicly available content only, nothing behind a login. See the public data notice.
ReferenceEvery Facebook endpoint, its parameters and its price: API reference

5Other platforms

Get a key50 free credits ยท no card