$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "areaQuery": "Paris, France",
< "bbox": "48.8156,2.2241,48.9022,2.4699",
< "categories": [
< "museum",
< "attraction",
< "viewpoint",
< "gallery"
< ],
< "maxItems": 20,
< "includeWaysAndRelations": true,
< "includeRawTags": false,
< "requestDelayMs": 1100,
< "overpassEndpoint": "https://maps.mail.ru/osm/tools/overpass/api/interpreter",
< "fallbackOverpassEndpoints": [
< "https://overpass-api.de/api/interpreter",
< "https://overpass.kumi.systems/api/interpreter"
< ]
<}
<EOF
$curl "https://api.apify.com/v2/acts/automation-lab~openstreetmap-tourist-attractions-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'