Install
openclaw skills install facebook-marketplace-searchSearch Facebook Marketplace listings near a specified location with filters for radius, price range, limit, and pickup-only. This skill is a thin client for...
openclaw skills install facebook-marketplace-searchSearch nearby Facebook Marketplace listings via a user-provided local Marketplace service.
This published skill is intentionally a thin wrapper client.
It does not ship with:
That design keeps the published package smaller, easier to review, and less sensitive from a security-scanning perspective.
querylocationradius_kmmin_pricemax_pricelimitpickup_onlysortidtitlepricelocationseller_nameimage_urllisting_urlBy default this client calls:
http://127.0.0.1:8787/searchOverride with:
MARKETPLACE_API_BASE_URLThe local service is expected to accept query parameters such as:
querylocationradius_kmmin_pricemax_pricelimitpickup_onlysortInstall deps:
python3 -m pip install -r skills/facebook-marketplace-search/requirements.txt
Optionally copy config:
cp skills/facebook-marketplace-search/config.example.json \
skills/facebook-marketplace-search/config.json
python3 skills/facebook-marketplace-search/scripts/facebook_marketplace_search.py \
--query "burrow sofa" \
--location "Livingston, NJ" \
--radius-km 48 \
--limit 10 \
--sort local_first
{
"query": "burrow sofa",
"location": "Livingston, NJ",
"count": 2,
"results": [
{
"id": "123",
"title": "Burrow Sofa",
"price": 400.0,
"location": "Livingston, NJ",
"seller_name": "Jane Doe",
"image_url": "https://...",
"listing_url": "https://www.facebook.com/marketplace/item/123"
}
]
}