# AnyAPI Facebook Reviews Scraper

> AnyAPI Facebook Reviews Scraper is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.035/call, status unknown (last checked 2026-09-14).

Scrapes and returns reviews from a Facebook page or business listing

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/facebook.reviews
- Price: $0.035/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-facebook-reviews-scraper-b540e43d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AtlKjqfHdfOxjocPjNE4m

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability anyapi-facebook-reviews-scraper-b540e43d -d '<json body>'
```

Example prompt: Can you pull all the public customer reviews from the Facebook page for 'Shake Shack NYC' — I need the reviewer names, star ratings, and review text so I can do a sentiment analysis.

## When to prefer this

Choose this endpoint when you need to programmatically access Facebook business reviews without a monthly subscription, paying only $0.035 per call. Ideal for one-off competitive research, reputation monitoring, or feeding review data into sentiment pipelines where you don't want to manage a Facebook Graph API integration or pay for a dedicated review monitoring SaaS.

## Known failure modes

- Facebook page not found or URL invalid — returns error indicating resource not found
- Page has reviews disabled or hidden — returns empty results or access error
- Rate limiting or anti-bot measures on Facebook — may return scraping failure
- Invalid or missing API key — returns authentication error
- Network timeout when fetching Facebook data — returns timeout error

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

Returns a JSON object containing Facebook reviews for the specified business or page, including reviewer names, star ratings, review text, dates, and potentially aggregate rating data such as overall score and total review count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "title": "Facebook page reviews input",
     "example": {
      "url": "https://www.facebook.com/nike",
      "limit": 3
     },
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Facebook Page reviews URL (e.g. https://www.facebook.com/nasa/reviews)."
      },
      "limit": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Maximum number of results to return (1–20, default 20). You are billed per result returned, so a lower limit costs less."
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "output",
      "provider",
      "costUsd"
     ],
     "properties": {
      "items": {
       "type": "integer",
       "description": "Number of result rows returned. For per-result SKUs the per-item cost is charged against this count; for input-priced SKUs the charge is per submitted input, independent of this count."
      },
      "output": {
       "type": "object",
       "title": "Facebook page reviews output",
       "required": [
        "found",
        "data"
       ],
       "properties": {
        "data": {
         "oneOf": [
          {
           "type": "null"
          },
          {
           "type": "object",
           "required": [
            "items"
           ],
           "properties": {
            "items": {
             "type": "array",
             "items": {
              "type": "object"
             },
             "description": "Review records: reviewer name, rating/recommendation, review text, timestamp, and the reviewed page."
            }
           },
           "additionalProperties": false
          }
         ]
        },
        "found": {
         "type": "boolean"
        }
       },
       "additionalProperties": false
      },
      "costUsd": {
       "type": "number",
       "description": "Amount charged in USD for this call."
      },
      "provider": {
       "type": "string",
       "description": "Always \"AnyAPI\"."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-facebook-reviews-scraper-b540e43d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
