$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "currentItems": [
< {
< "filingId": "F1",
< "property": "12 Main St",
< "county": "Clark",
< "lender": "Bank A",
< "debtAmount": 240000,
< "filingDate": "2026-09-01"
< },
< {
< "filingId": "F2",
< "property": "22 Oak St",
< "county": "Clark",
< "lender": "Bank A",
< "debtAmount": 310000,
< "filingDate": "2026-09-03"
< },
< {
< "filingId": "F3",
< "property": "44 Pine St",
< "county": "Clark",
< "lender": "Bank B",
< "debtAmount": 280000,
< "filingDate": "2026-09-05"
< }
< ],
< "previousItems": [
< {
< "filingId": "P1",
< "property": "12 Main St",
< "county": "Clark",
< "lender": "Bank A",
< "debtAmount": 220000,
< "filingDate": "2026-08-01"
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/quanmatrix~foreclosure-filing-acceleration-intelligence/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'