$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "startUrls": [
< {
< "url": "https://www.linkedin.com/jobs/search?keywords=Software%20Engineer&location=United%20States&geoId=103644278"
< }
< ],
< "keywords": [
< "Software Engineer"
< ],
< "location": "United States",
< "locations": [
< "United States",
< "United Kingdom"
< ],
< "geoId": "103644278",
< "placeIds": [
< "104555257"
< ],
< "jobTypes": [
< "1",
< "3"
< ],
< "remote": [
< "2"
< ],
< "experienceLevels": [
< "4",
< "5",
< "6"
< ],
< "experienceLevel": [
< "5"
< ],
< "contractType": [
< "F"
< ],
< "resumeKeywords": [
< {
< "keyword": "TypeScript",
< "aliases": [
< "TS"
< ]
< },
< {
< "keyword": "React"
< },
< {
< "keyword": "Node.js",
< "aliases": [
< "NodeJS",
< "Node"
< ]
< }
< ]
<}
<EOF
$curl "https://api.apify.com/v2/actors/memo23~apify-linkedin-search-results-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'