Get reviews for a Facebook page by page ID. Returns review text, recommendation status, and author information. Supports pagination.
curl "https://apidirect.io/v1/facebook/page/reviews?page_id=100063543614476" \
-H "X-API-Key: YOUR_API_KEY"
{
"reviews": [
{
"review_text": "Great customer service and fast response times!",
"sentiment": {
"emotions": {
"joy": 40,
"trust": 55,
"fear": 0,
"surprise": 10,
"sadness": 0,
"disgust": 0,
"anger": 0,
"anticipation": 30
},
"dominant_emotion": "trust",
"emotional_intensity": 5,
"polarity": "positive"
},
"recommend": true,
"author_name": "Sarah Johnson",
"author_url": "https://www.facebook.com/profile.php?id=100012345678",
"reactions_count": 12
}
],
"count": 1,
"pages": 1
}