Install
openclaw skills install @tonywangcn/facebook-researchSearches Facebook Marketplace listings and looks up public Facebook Page details (name, follower/like counts, category, contact info) via the Crawlora API, returning clean JSON. Use when the user wants Marketplace listing data for a location/category or a public Page's profile info — instead of scraping Facebook directly.
openclaw skills install @tonywangcn/facebook-researchSearch Facebook Marketplace and look up public Facebook Page details — all as normalized JSON from the Crawlora API, no browser automation or logged-in session required.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.GET /facebook/marketplace/search with a
required location (Marketplace vanity slug) plus an optional query or
category; omit both query and category to get the location's browse
feed instead of a search. min_price, max_price, sort_by,
days_since_listed, and condition only take effect alongside a query
or category.GET /facebook/{page} where page is a vanity name,
handle, profile.php id, or full Facebook URL; returns name, follower/like
counts, intro, category, business hours/price range, review count, and any
public contact details on the Page's About tab.Full endpoint list, methods, and params: reference/endpoints.md.
# Marketplace search / browse:
scripts/crawlora.sh /facebook/marketplace/search location=chicago-il query="dining table" | jq '.'
scripts/crawlora.sh /facebook/marketplace/search location=chicago-il category=vehicles min_price=5000 | jq '.'
# Page lookup:
scripts/crawlora.sh /facebook/nike | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/facebook/marketplace/search?location=chicago-il&query=bike" | jq '.'
See reference/endpoints.md for both Facebook
endpoints this skill uses.
/facebook/marketplace/search with
location + query for an item, compare listed prices/conditions across
the first page of results./facebook/{page} for a prospect's Facebook
Page to pull follower count, category, and any public phone/email/website
from the About tab before outreach.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.property_rentals category is always filtered — it has its own
listing page and ignores the min_price/max_price/sort_by/etc. filters
the same way the plain browse feed does.