I am creating website to search places using graph API. I got the places details from graph API. Is there any way to get the page rating and reviews of the places via graph API?
Get facebook page rate and reviews using Graph api
24.7k Views Asked by user3082327 AtThere are 3 best solutions below

I had the same problem and I answered my own question here:
you need to call {page-id}/ratings?field=open_graph_story, but you need the access token of your page for that (use /me/accounts in the Graph API Explorer to get the token). You find further information in the facebook documentation.

This is an old post, but I wanted to give some extra info to others that might be looking for a solution to this problem still. As stated in the Facebook Open Graph documentation, you definitely need a page access token to get the page's individual ratings/reviews. If you are looking for the overall rating and the count of reviews, however, you are in luck. By simply making a call to /{page-id}?fields=overall_star_rating,rating_count
, you will be able to access that data.
Here's an example response:
{
"overall_star_rating": 4.7,
"rating_count": 31,
"id": "{page-id}"
}
David R. Myers II's answer is just what I needed. Thank you! You can get the
overall_star_rating
and therating_count
fields of any page.You need to submit your app for review by Facebook and request to use the Page Public Content Access feature.
For developing, while your Facebook app status is
In development
you automatically have access to the public content for pages that you own. Before going live, request a review from Facebook so you can access other pages.To list pages you own: https://www.facebook.com/bookmarks/pages?ref=u2u
Sample code to get the ratings: