$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "seoIssues": [
< {
< "type": "broken_internal_links",
< "affectedPages": 47
< },
< {
< "type": "missing_meta_description",
< "affectedPages": 132
< },
< {
< "type": "canonical_error",
< "affectedPages": 12
< },
< {
< "type": "missing_alt_text",
< "affectedPages": 300
< },
< {
< "type": "redirect_loops",
< "affectedPages": 4
< },
< {
< "type": "orphan_page",
< "affectedPages": 7
< }
< ],
< "analysisMode": "balanced",
< "groupSimilarIssues": true,
< "includeRecommendations": true,
< "siteName": ""
<}
<EOF
$curl "https://api.apify.com/v2/actors/riad_h~seo-fix-priority-engine/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'