$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "mode": "search",
< "searchQueries": [
< "Real Madrid"
< ],
< "searchType": "all",
< "urls": [
< "https://www.sofascore.com/team/football/real-madrid/2829",
< "https://www.sofascore.com/player/lionel-messi/12994"
< ],
< "sports": [
< "football"
< ],
< "date": "today",
< "daysAhead": 0,
< "includeStatistics": true,
< "includeLineups": true,
< "includeIncidents": true,
< "includeOdds": false,
< "includeVotes": false,
< "includeStandings": true,
< "includeSquad": false,
< "maxItems": 5,
< "resumeFromRunId": "",
< "incrementalMode": false,
< "monitoringLabel": "",
< "emitUnchanged": false,
< "emitExpired": false,
< "proxy": {
< "useApifyProxy": true,
< "apifyProxyGroups": [
< "RESIDENTIAL"
< ],
< "apifyProxyCountry": "US"
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/parsebird~sofascore-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'