$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "mode": "items",
< "items": [
< {
< "reviewId": "rev-low-1",
< "businessName": "Acme Dental Austin",
< "locationName": "Austin",
< "rating": 1,
< "reviewText": "Terrible service. I was overcharged and want a refund. The room felt unsafe and I will never again visit.",
< "publishedAtDate": "2026-07-07T10:00:00.000Z",
< "responseFromOwnerText": ""
< },
< {
< "reviewId": "rev-mixed-1",
< "businessName": "Acme Dental Round Rock",
< "rating": 3,
< "reviewText": "The dentist was helpful, but the wait was slow and the front desk ignored us.",
< "publishedAtDate": "2026-07-06T16:00:00.000Z"
< },
< {
< "reviewId": "rev-good-1",
< "placeName": "Acme Dental Austin",
< "stars": 5,
< "text": "Great visit. The staff were friendly and helpful.",
< "ownerResponse": "Thanks for visiting us!"
< }
< ],
< "businessProfile": {
< "brandName": "Acme Dental",
< "locations": [
< "Austin",
< "Round Rock"
< ],
< "targetCategories": [
< "Dental clinic"
< ],
< "escalationKeywords": [
< "refund",
< "injury",
< "unsafe",
< "legal"
< ],
< "urgentRatingThreshold": 2,
< "defaultSlaHours": 48,
< "autoThankRating": 5
< },
< "scrapedAt": "2026-07-08T00:00:00.000Z"
<}
<EOF
$curl "https://api.apify.com/v2/acts/rotvuvo~google-business-review-response-priority-scorer/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'