$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "startUrls": [
< "https://www.furnishedfinder.com/housing/Atlanta/Texas/Budget3200/MoveIndate20231213/Avail",
< "https://www.furnishedfinder.com/housing/San-Diego/California",
< "https://www.furnishedfinder.com/property/299655_1"
< ],
< "searchCoordinates": [
< {
< "latitude": 40.7485379,
< "longitude": -73.9870227,
< "searchArea": 0.25
< }
< ],
< "searchArea": "0.25",
< "maxItems": 20,
< "extendOutputFunction": "($) => { return {} }",
< "customMapFunction": "(object) => { return {...object} }",
< "proxy": {
< "useApifyProxy": true
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/epctex~furnishedfinder-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'