$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "firstRunMode": false,
< "keyword": "Software Engineer",
< "location": "Germany",
< "postedWithin": "24h",
< "orderBy": "newest",
< "workArrangements": [
< "remote"
< ],
< "linkedinSearch": {
< "schemaVersion": "nomad-agent-linkedin-search-v2",
< "searches": []
< },
< "filters": {
< "schemaVersion": "nomad-agent-job-filter-v1",
< "expression": {
< "field": "identity.source",
< "operator": "eq",
< "value": "linkedin"
< }
< },
< "companyProfileEnrichment": false,
< "aiEnrichment": {
< "enabled": false,
< "accuracy": "silver"
< },
< "translateToEnglish": false,
< "includeRaw": true,
< "maxItems": 100,
< "dedupe": {
< "enabled": true,
< "key": "default"
< },
< "analyticsEnabled": false,
< "schemaVersion": "nomad-agent-job-search-input-v1"
<}
<EOF
$curl "https://api.apify.com/v2/actors/job-atlas~linkedin-enrich-translate-normalize-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'