ConvertFleet

MCP docsTools › Facebook Page Scraper

Facebook Page Scraper

facebook_page_scrape medium Social platforms

Pull public Facebook Page details (about, contact, category) from a page URL or ID.

When to use. Enriching one known Facebook Page with its public about/contact/category info.
Not for. Searching for pages by keyword, or reading ads (use facebook_ads_scrape).

Parameters

NameTypeRequiredDefaultDescription
page_url_or_id string yes Facebook Page URL or numeric/vanity ID.

Returns

One row of page metadata.

Each row typically carries: name category about phone email website address likes followers page_url

The response body is { status, count, fields, results }. Runs that exceed the inline wait return { status: "running", job_id, tool_flow } instead — see Jobs & errors.

Call it over MCP

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "facebook_page_scrape",
    "arguments": {
      "page_url_or_id": "https://www.facebook.com/nike"
    }
  }
}

Call it over the REST API

curl -X POST https://convertfleet.online/api/tool-run \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tool":"fb","params":{"url":"https://www.facebook.com/nike"}}'

Both paths run the same job engine, enforce the same plan limits and count against the same monthly quota. See the REST API page.

Related tools

JSON Schema

{
  "type": "object",
  "properties": {
    "page_url_or_id": {
      "type": "string",
      "description": "Facebook Page URL or numeric/vanity ID."
    }
  },
  "additionalProperties": false,
  "required": [
    "page_url_or_id"
  ]
}