POST
/
facebook
/
reviews
cURL
curl --request POST \
  --url https://py-api.hobbo.ai/facebook/reviews \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "is_text_formatted": true,
  "reviews_to_fetch": 123,
  "sync_date": "<string>"
}'
{
  "all_reviews": [
    {
      "query": "<string>",
      "review_text": "<string>",
      "media_count": 123,
      "review_media": [
        {
          "review_media_type": "<string>",
          "review_media_url": "<string>"
        }
      ],
      "post_info": {},
      "author_data": {},
      "author_id": "<string>",
      "author_profile_url": "<string>",
      "author_name": "<string>",
      "author_profile_image_url": "<string>",
      "post_stats": {
        "comments_count": 123,
        "reactions_count": 123,
        "top_reactions": {},
        "shares_count": 123,
        "video_view_count": 123,
        "play_count": 123
      },
      "review_date": "<string>",
      "review_tags": [
        "<string>"
      ],
      "attached_post_data": {}
    }
  ],
  "extra_information": {
    "extra_information": {},
    "total_review_count": 123,
    "total_review_count_list": [
      123
    ]
  },
  "message": "<string>"
}

Body

application/json

Facebook post fetch parameters

query
string
required

Provide proper Facebook Page URL

is_text_formatted
boolean
default:true

Controls text formatting in output

reviews_to_fetch
number | null

Number of reviews to fetch (default: all reviews, or within 30-second timeout)

sync_date
string | null

Fetches reviews posted on a specific date using format: YYYY-MM-DD

Response

Post fetched successfully

all_reviews
object[]

Array of fetched reviews

extra_information
object
message
string

Status message about the review extraction