web_data_facebook_company_reviews
Extract structured Facebook company reviews data by providing a valid company URL and desired number of reviews. Uses cached data for reliable access to review information.
Instructions
Quickly read structured Facebook company reviews data. Requires a valid Facebook company URL and number of reviews. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_of_reviews | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"num_of_reviews": {
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"num_of_reviews"
],
"type": "object"
}