I want to use the Google Places Scraper service on Fast Marketplace.
## Setup (skip if you already have Fast Marketplace set up)
1. Open the marketplace skill: https://marketplace.fast.xyz/skill.md
2. Fund a Fast wallet on mainnet.
3. Choose the paid Google Places route that matches your workflow.
4. Keep the returned job token and poll the marketplace job route for completion.
## Available Endpoints
### Lead Enrichment ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-google-places/lead-enrichment" \
-H "Content-Type: application/json" \
-d '{
"website": "allPlaces",
"locationQuery": "Austin, Texas, United States",
"scrapeContacts": true,
"searchStringsArray": [
"dentists"
],
"scrapePlaceDetailPage": true,
"maxCrawledPlacesPerSearch": 20,
"scrapeSocialMediaProfiles": {
"tiktoks": false,
"twitters": true,
"youtubes": false,
"facebooks": true,
"instagrams": true
},
"maximumLeadsEnrichmentRecords": 3
}'
This route enables the higher-cost contact and lead enrichment add-ons, so use it when you need downstream sales data, not just place listings.
### Place Details ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-google-places/place-details" \
-H "Content-Type: application/json" \
-d '{
"placeIds": [
"ChIJJQz5EZzKw4kRCZ95UajbyGw"
],
"scrapePlaceDetailPage": true
}'
Use this when you already know the target place and need the richer detail page fields.
### Place Reviews ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-google-places/place-reviews" \
-H "Content-Type: application/json" \
-d '{
"placeIds": [
"ChIJJQz5EZzKw4kRCZ95UajbyGw"
],
"maxReviews": 25,
"reviewsSort": "newest",
"scrapePlaceDetailPage": true
}'
This route is for review harvesting only; enable detail page scraping and set maxReviews explicitly.
### Search Places ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-google-places/search-places" \
-H "Content-Type: application/json" \
-d '{
"locationQuery": "San Francisco, California, United States",
"searchStringsArray": [
"coffee shops"
],
"maxCrawledPlacesPerSearch": 20
}'
Use this as the default entry point for map search and local business discovery.
For paid endpoints: the first call returns 402. Authorize payment with your Fast wallet and retry with the payment signature header.Have a request?