$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "target_job_titles": [
< "Senior Software Engineer",
< "Staff Engineer"
< ],
< "locations": [
< "San Francisco",
< "Remote"
< ],
< "preferred_skills": [
< "Python",
< "Go",
< "AWS"
< ],
< "undesirable_skills": [],
< "preferred_industries": [
< "Technology",
< "Fintech"
< ],
< "undesirable_industries": [],
< "experience_levels": [
< "Senior",
< "Lead"
< ],
< "additional_requirements": "Prefer companies with <500 employees. Looking for startup or scale-up environment with good work-life balance. Not interested in consulting, agencies, or defense contractors."
<}
<EOF
$curl "https://api.apify.com/v2/acts/jobo.world~ai-deep-job-search/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'