Back to templates
E-commerceextract
4.6
1.7k uses
Craigslist Car Listings
Extract car listings from Craigslist with title, price, location, URL, and posting date
Target URL
https://sfbay.craigslist.org/search/ctaVisit SiteSteps
1
Go to Craigslist cars for sale
navigate
2
Extract car listings
extract
| Field | Selector | Transform |
|---|---|---|
| title | .cl-search-result .titlestring | text |
| price | .cl-search-result .priceinfo | text |
| location | .cl-search-result .meta | text |
| url | .cl-search-result a.titlestring | url |
| datePosted | .cl-search-result .meta .datetime | date |
3
Check for next page
condition
Condition:
.cl-next-pageGo to next page
.cl-next-pageOutput Schema
| Field | Type |
|---|---|
| title | string |
| price | string |
| location | string |
| url | string |
| datePosted | string |
Example Output
| title | price | location | url | datePosted |
|---|---|---|---|---|
| 2019 Toyota Camry SE - Clean Title, Low Miles | $18,500 | San Mateo | /sfc/cta/d/2019-toyota-camry | 2026-03-18 |
| 2021 Honda Civic Sport - 32k Miles | $22,900 | Oakland | /eby/cta/d/2021-honda-civic | 2026-03-17 |
| 2017 BMW 330i - M Sport Package | $19,800 | San Jose | /sby/cta/d/2017-bmw-330i | 2026-03-17 |
API Endpoint
curl -X POST https://api.scraper.bot/v1/flows \
-H "Authorization: Bearer scr_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "tmpl-craigslist-cars",
"url": "https://sfbay.craigslist.org/search/cta"
}'