# Facebook Marketplace Scraper (via StableApify)

> Facebook Marketplace Scraper (via StableApify) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Triggers the Apify facebook-marketplace-scraper actor to extract listings, prices, seller info, and location data from Facebook Marketplace.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/apify/facebook-marketplace-scraper/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/facebook-marketplace-scraper-via-stableapify-b4fa934a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4cWJjc2wsq5AVJPjfcvKx

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 facebook-marketplace-scraper-via-stableapify-b4fa934a -d '<json body>'
```

Example prompt: Scrape Facebook Marketplace listings for used couches in Chicago under $500 — I want the title, price, seller name, and listing URL for each result.

## When to prefer this

Use this endpoint when you need structured data from Facebook Marketplace listings — including apartments, vehicles, furniture, or any category — especially when you need seller info, pricing, and location at scale. Prefer this over manual browsing or generic web scrapers because it is purpose-built for Facebook Marketplace's structure and returns clean, normalized listing data.

## Known failure modes

- Facebook blocks or rate-limits the scraper, returning partial or empty results
- Invalid or expired listing URL returns no data
- Actor run timeout for large category scrapes
- Geographic restrictions may prevent scraping listings in certain regions
- Facebook UI changes may break actor parsing logic temporarily

## How this service works

Start the "Facebook Marketplace Scraper" Apify actor (apify/facebook-marketplace-scraper). Extract data from one or multiple Facebook Marketplace listings. Scrape data on apartments, whole categories, items for sale, prices, location and sellers. Exp…

## Output

Returns structured data for each matched Facebook Marketplace listing, including title, price, seller name, location, description, images, and listing URL. Data is provided for individual listings or entire category/search result pages depending on the input provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "startUrls",
    "includeListingDetails"
   ],
   "properties": {
    "startUrls": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "url"
      ],
      "properties": {
       "url": {
        "type": "string",
        "format": "uri"
       },
       "method": {
        "type": "string"
       },
       "headers": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {
         "type": "string"
        }
       },
       "payload": {
        "type": "string"
       },
       "userData": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "additionalProperties": false
     },
     "description": "This lets you tell the scraper where to start. You can enter Facebook Marketplace URLs one by one. You can also link to or upload a text file with a list of URLs."
    },
    "resultsLimit": {
     "type": "integer",
     "maximum": 9007199254740991,
     "minimum": 1,
     "description": "Select the number of listings you want to scrape. If this limit is not set, as many results as possible will be returned."
    },
    "includeListingDetails": {
     "type": "boolean",
     "default": false,
     "description": "If enabled, extra details are scraped for each listing. This includes description, location coordinates, time stamp, listing attributes, and more."
    }
   },
   "description": "Normalized actor input. See field descriptions for the simplified shape; native Apify input also accepted (passed through).",
   "additionalProperties": {}
  },
  "options": {
   "type": "object",
   "properties": {
    "build": {
     "type": "string",
     "maxLength": 100,
     "minLength": 1
    },
    "memory": {
     "type": "integer",
     "maximum": 32768,
     "minimum": 128
    },
    "maxItems": {
     "type": "integer",
     "maximum": 100000,
     "minimum": 1
    }
   },
   "description": "Optional Apify run options.",
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/facebook-marketplace-scraper-via-stableapify-b4fa934a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
