ACME API Documentation logo

Search Facebook Pages

Search for Facebook Pages based on a search query

GEThttps://api.acme.com/api/brand/search/facebook
Available on Business, Enterprise plans.

Search for Facebook Pages based on a search query. Often used for typeahead mention completion.

The response is an array of objects with the id, link, name, and location of the Page. The location field will only be returned for Pages with public locations.

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Keystring
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Query Parameters

searchstringrequired

Search query to find Facebook pages by name.

curl \
-H "Authorization: Bearer API_KEY" \
-X GET https://api.acme.com/api/brand/search/facebook?search=facebook
{
  "facebook": [
    {
      "id": "7640348500",
      "isUnclaimed": false,
      "link": "https://www.facebook.com/7640348500",
      "location": {
        "city": "New York",
        "country": "United States",
        "latitude": 40.782910059774,
        "longitude": -73.959075808525,
        "state": "NY",
        "street": "1071 5th Ave",
        "zip": "10128"
      },
      "name": "Solomon R. Guggenheim Museum",
      "verificationStatus": "blue_verified"
    }
  ]
}