# Snagajob Jobs Search Scraper (`jobsapi/snagajob-jobs-search-scraper`) Actor

Scrape rich, identity-verified hourly and salaried job listings from Snagajob.

- **URL**: https://apify.com/jobsapi/snagajob-jobs-search-scraper.md
- **Developed by:** [Jobs API](https://apify.com/jobsapi) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 job details

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Snagajob Jobs Search Scraper

> An [Apify Actor](https://apify.com/jobsapi/snagajob-jobs-search-scraper) that scrapes publicly listed job postings from **[Snagajob](https://www.snagajob.com)** - Scrape rich, identity-verified hourly and salaried job listings from Snagajob..

The Actor navigates Snagajob's public job-search results, opens each result detail page to enrich the record, normalises everything into a single rich structured schema, and pushes one record per job into the Actor's default dataset for download or downstream integration.

***

### Table of Contents

- [What is Snagajob?](#what-is-snagajob)
- [What does the Actor scrape?](#what-does-the-actor-scrape)
- [Main target URL](#main-target-url)
- [Input schema](#input-schema)
- [Output / dataset schema](#output--dataset-schema)
- [Example input](#example-input)
- [Example output record](#example-output-record)
- [Responsible use](#responsible-use)
- [Related jobs scrapers](#related-jobs-scrapers)

***

### What is Snagajob?

**Snagajob** is Scrape rich, identity-verified hourly and salaried job listings from Snagajob.

This Actor targets **Snagajob**'s public job-search results and enriches each result with the canonical Snagajob detail page.

### What does the Actor scrape?

Scrape rich, identity-verified hourly and salaried job listings from Snagajob.

The actor maps listing fields such as:

- `jobId`
- `title`
- `normalizedTitle`
- `seoJobTitle`
- `company`
- `companyName`
- `companyProfileUrl`
- `companyLogo`
- `customerId`
- `customerName`

### Main target URL

The primary target is configured in source code.

Request modifiers come from fields: query, location, radius, proxyConfiguration, maxItems, headless, verificationTimeoutSecs.

### Input schema

The Actor accepts the following input (defined in `.actor/input_schema.json`):

| Field | Type | Required | Default | Constraints | Description |
| --- | --- | --- | --- | --- | --- |
| `query` | `string` | Yes | - | - | Job title or keywords to search for on Snagajob |
| `location` | `string` | No | - | - | City, state, or ZIP code to narrow the search |
| `radius` | `integer` | Yes | `20` | >= 1; <= 100 | Maximum distance from the selected location. |
| `proxyConfiguration` | `object` | No | `{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"],"apifyProxyCountry":"US"}` | - | Use Apify Proxy or custom HTTP proxy to avoid IP-based blocking. US Residential proxy recommended. |
| `maxItems` | `integer` | Yes | `50` | >= 1; <= 100 | Maximum number of job listings to scrape |
| `headless` | `boolean` | No | `true` | - | Run the installed Google Chrome without a visible window. |
| `verificationTimeoutSecs` | `integer` | No | `120` | >= 10; <= 600 | Maximum wait for a manually completed security verification in visible local Chrome. |

### Example input

```json
{
  "query": "cashier",
  "radius": 20,
  "maxItems": 50,
  "location": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "headless": true,
  "verificationTimeoutSecs": 120
}
```

### Output / dataset schema

Each record follows `.actor/dataset_schema.json` and includes the properties below.

| Field | Type | Required |
| --- | --- | --- |
| `jobId` | `string` | Yes |
| `title` | `string` | Yes |
| `normalizedTitle` | `string` | No |
| `seoJobTitle` | `string` | No |
| `company` | `string` | Yes |
| `companyName` | `string` | Yes |
| `companyProfileUrl` | `string` | No |
| `companyLogo` | `string` | No |
| `customerId` | `string / number` | No |
| `customerName` | `string` | No |
| `externalId` | `string / number / object` | No |
| `groupId` | `string / number` | No |
| `billingAccountId` | `string / number` | No |
| `brandTemplateId` | `string / number` | No |
| `brandTemplateName` | `string` | No |
| `primaryIndustryId` | `string / number` | No |
| `industry` | `string` | No |
| `industries` | `array` | No |
| `inferredIndustries` | `array` | No |
| `jobTypes` | `array` | Yes |
| `postingType` | `string / number` | No |
| `occupationCode` | `string` | No |
| `occupationName` | `string` | No |
| `experienceLevel` | `string / number` | No |
| `monthsExperience` | `array` | No |
| `minimumAge` | `number` | No |
| `location` | `string` | Yes |
| `address` | `object` | Yes |
| `addressLine1` | `string` | No |
| `addressLine2` | `string` | No |
| `city` | `string` | No |
| `state` | `string` | No |
| `stateCode` | `string` | No |
| `postalCode` | `string` | No |
| `locationId` | `string / number` | No |
| `latitude` | `number` | No |
| `longitude` | `number` | No |
| `distance` | `number` | No |
| `distanceLabel` | `string` | No |
| `salaryText` | `string` | No |
| `salaryShortText` | `string` | No |
| `salaryMin` | `number` | No |
| `salaryMedian` | `number` | No |
| `salaryMax` | `number` | No |
| `salaryCurrency` | `string` | No |
| `salaryPeriod` | `string` | No |
| `salaryIsEstimated` | `boolean` | No |
| `salarySource` | `string` | No |
| `wageSourceCode` | `number` | No |
| `wageTypeCode` | `number` | No |
| `wageQuality` | `string` | No |
| `estimatedSalaryPercentiles` | `object` | No |
| `postingOverview` | `string / object` | No |
| `description` | `string` | Yes |
| `descriptionHtml` | `string` | Yes |
| `skills` | `array` | No |
| `responsibilities` | `array` | No |
| `responsibilityDetails` | `array` | No |
| `qualifications` | `array` | No |
| `qualificationDetails` | `array` | No |
| `desiredCharacteristics` | `array` | No |
| `educationRequirements` | `array` | No |
| `benefits` | `array` | No |
| `workHours` | `array` | No |
| `jobAttributes` | `array` | No |
| `listingFeatures` | `array` | No |
| `applicationLabel` | `string` | No |
| `applicationUrl` | `string` | Yes |
| `applyUrl` | `string` | Yes |
| `applySessionType` | `string / number` | No |
| `isEasyApply` | `boolean` | No |
| `isOneClickApply` | `boolean` | No |
| `isSponsored` | `boolean` | No |
| `isPaid` | `boolean` | No |
| `isP4p` | `boolean` | No |
| `isContractor` | `boolean` | No |
| `isExpired` | `boolean` | No |
| `isIndexAllowed` | `boolean` | No |
| `isFollowAllowed` | `boolean` | No |
| `isSchemaAllowed` | `boolean` | No |
| `jobFitScore` | `number` | No |
| `jobFitConfidence` | `number` | No |
| `availableInterviewSlots` | `array` | No |
| `postedDate` | `string` | No |
| `internalCreateDate` | `string` | No |
| `updatedDate` | `string` | No |
| `internalDeactivationDate` | `string` | No |
| `postedLabel` | `string` | No |
| `similarJobsLabel` | `string` | No |
| `similarJobsCount` | `number` | No |
| `listingPosition` | `number` | No |
| `totalSearchResults` | `number` | No |
| `displayedTotalSearchResults` | `number` | No |
| `searchHeading` | `string` | No |
| `searchRequestId` | `string` | No |
| `searchResponseId` | `string` | No |
| `pageTitle` | `string` | No |
| `metaDescription` | `string` | No |
| `canonicalUrl` | `string` | Yes |
| `jobUrl` | `string` | Yes |
| `searchUrl` | `string` | Yes |
| `searchQuery` | `string` | Yes |
| `searchLocation` | `string` | Yes |
| `searchRadiusMiles` | `number` | Yes |
| `source` | `string` | Yes |
| `sourceDomain` | `string` | Yes |
| `scrapedAt` | `string` | Yes |
| `detailVerified` | `boolean` | Yes |
| `verificationEvidence` | `object` | Yes |
| `meta` | `object` | Yes |

### Example output record

```json
{
  "jobId": "1265700023",
  "title": "Senior Associate, Privileged Access Management Delivery Engineer",
  "normalizedTitle": "Applications Software Developer",
  "seoJobTitle": "Senior Associate Privileged",
  "company": "KPMG",
  "companyName": "KPMG",
  "companyProfileUrl": "https://www.snagajob.com/company/kpmg",
  "companyLogo": "https://media.snagajob.com/ui/app/icons/other.png",
  "customerId": "54127306",
  "customerName": "JobGet Direct - Agency PPC (V2)",
  "externalId": {
    "sourceId": "9ab981b4bc3450ed5886f751291745038124a487",
    "sourceType": "Snaplogic"
  },
  "groupId": 4,
  "billingAccountId": 54127306,
  "brandTemplateId": "6658774",
  "brandTemplateName": "KPMG",
  "primaryIndustryId": "19",
  "industry": "Other",
  "industries": [
    "Other"
  ],
  "inferredIndustries": [
    "Health Care",
    "Human Resources"
  ],
  "jobTypes": [
    "Full-time"
  ],
  "postingType": "FeedThirdParty",
  "occupationCode": "15-1132.00",
  "occupationName": "Software Developers, Applications",
  "experienceLevel": 4,
  "monthsExperience": [
    "36 Months Experience"
  ],
  "location": "New York City, NY 10044",
  "address": {
    "locationId": "135050815",
    "locationName": "New York City, NY",
    "addressLine1": "New York City, NY",
    "city": "New York City",
    "stateProvince": "New York",
    "stateProvinceCode": "NY",
    "postalCode": "10044",
    "citystate": "new york city, ny"
  },
  "addressLine1": "New York City, NY",
  "city": "New York City",
  "state": "New York",
  "stateCode": "NY",
  "postalCode": "10044",
  "locationId": "135050815",
  "latitude": 40.7628,
  "longitude": -73.9491,
  "distance": 1.9,
  "distanceLabel": "1.9 mi",
  "salaryText": "$46.08 - $100.13 per hour",
  "salaryShortText": "$46.08 - $100.13",
  "salaryMin": 46.08,
  "salaryMax": 100.13,
  "salaryCurrency": "USD",
  "salaryPeriod": "HOUR",
  "salaryIsEstimated": false,
  "salarySource": "Provided by the employer",
  "wageSourceCode": 1,
  "wageTypeCode": 1,
  "wageQuality": "excellent",
  "estimatedSalaryPercentiles": {
    "median": 21.63,
    "tenth": 15.96,
    "twentyFifth": 18.43,
    "seventyFifth": 26.62,
    "ninetieth": 36.6
  },
  "description": "The KPMG Advisory practice is at the forefront of transformation, offering excellent opportunities for individuals to advance their careers and expertise with KPMG. Looking ahead, we anticipate continued evolution and success within the practice, fostering both personal and professional development, thereby creating new pathways for growth. In this ever-changing market environment, our professionals must be adaptable and thrive in a collaborative, team-driven culture. At KPMG, our people are our number one priority. With a wealth of learning and career development opportunities, a world-class training facility, and leading market tools, we help our people continue to grow both professionally and personally. If you're looking for a firm with a strong team connection where you can be your whole self, have an impact, advance your skills, deepen your experiences, and have the flexibility and access to constantly find new areas of inspiration and expand your capabilities, then consider a career in Advisory. KPMG is currently seeking a Senior Associate, Privileged Access Management Delivery Engineer to join our practice. Responsibilities: Support the delivery, configuration, and operationalization of Privileged Access Management (PAM) solutions as part of enterprise Identity & Access Management (IAM) programs Implement and maintain PAM capabilities including privileged credential management, session management, just-in-time access, and endpoint management (EPM)components; implement automated integration across adjacent security solutions (for example: Crowdstrike, SIEM solutions, ServiceNow); automate PAM tasks using scripting and APIs (such as PowerShell, Python, REST, and others) and integrate with enterprise platforms (that is, Active Directory, IdPs, ITSM platforms, SIEM platforms, and more) Integrate PAM solutions across cloud environments (for example: Azure, AWS, GCP) while following security leading practices Execute privileged access onboarding activities, access workflow configurations, and break glass process enablement Perform risk assessments, evaluate privileged access controls, and support remediation activities across client environments Collaborate with cross-functional engineering, security, and risk teams to enhance PAM processes and resolve technical issues; support migrations from legacy or alternative PAM tooling; contribute to standardization of PAM delivery patterns and templates Act with integrity, professionalism, and personal responsibility to uphold KPMG's respectful and courteous work environment Qualifications: Minimum three years of recent professional experience in Identity & Access Management, Privileged Access Management, or cybersecurity Bachelor's degree from an accredited college or university is required; CyberArk Certified Delivery Engineer (CDE) or CyberArk Endpoint Privilege Manager (EPM) Certification preferred Hands on experience with Privileged Access Management delivery and engineering, with specific experience using CyberArk On-Prem and SaaS solutions; additional experience with secrets management platforms (that is, Conjur, HashiCorp) and other PAM platforms (such as Delinea, BeyondTrust) preferred Familiarity with infrastructure administration (such as Windows, Linux, Databases), networking basics, and IT architecture principles preferred. Experience supporting PAM integrations within cloud platforms such as Azure, AWS, or GCP; proficiency with scripting, automation integrations, infrastructure-as-code, and configuration management Strong understanding of IAM concepts, privileged access controls, and associated security risks; strong problem solving, communication, and documentation skills with the ability to work collaboratively across teams Ability to travel as required Applicants must be authorized to work in the U.S. without the need for employment-based visa sponsorship now or in the future; KPMG LLP will not sponsor applicants for U.S. work visa status for this opportunity (no sponsorship is available for H-1B, L-1, TN, O-1, E-3, H-1B1, F-1, J-1, OPT, CPT or any other employment-based visa) KPMG LLP and its subsidiaries (“KPMG”) complies with all local/state regulations regarding displaying salary ranges. If required, the ranges displayed below or via the URL below are specifically for those potential hires who will work in the location(s) listed. Any offered salary is determined based on relevant factors such as applicant's skills, job responsibilities, prior relevant experience, certain degrees and certifications and market considerations. In addition, KPMG is proud to offer a comprehensive, competitive benefits package, with options designed to help you make the best decisions for yourself, your family, and your lifestyle. Available benefits are based on eligibility. Our Total Rewards package includes a variety of medical and dental plans, vision coverage, disability and life insurance, 401(k) plans, and a robust suite of personal well-being benefits to support your mental health. Depending on job classification, standard work hours, and years of service, KPMG provides Personal Time Off per fiscal year. Additionally, each year KPMG publishes a calendar of holidays to be observed during the year and provides eligible employees two breaks each year where employees will not be required to use Personal Time Off; one is at year end and the other is around the July 4th holiday. Additional details about our benefits can be found towards the bottom of our KPMG US Careers site at . Follow this link to obtain salary ranges by city outside of CA: California Salary Range: $95855 - $208265 KPMG offers a comprehensive compensation and benefits package. KPMG is an equal opportunity employer. KPMG complies with all applicable federal, state and local laws regarding recruitment and hiring. All qualified applicants are considered for employment without regard to race, color, religion, age, sex, sexual orientation, gender identity, national origin, citizenship status, disability, protected veteran status, or any other category protected by applicable federal, state or local laws. The contains further information regarding KPMG's compliance with federal, state and local recruitment and hiring laws. No phone calls or agencies please. KPMG recruits on a rolling basis. Candidates are considered as they apply, until the opportunity is filled. Candidates are encouraged to apply expeditiously to any role(s) for which they are qualified that is also of interest to them. Los Angeles County applicants: Material job duties for this position are listed above. Criminal history may have a direct, adverse, and negative relationship with some of the material job duties of this position. These include the duties and responsibilities listed above, as well as the abilities to adhere to company policies, exercise sound judgment, effectively manage stress and work safely and respectfully with others, exhibit trustworthiness, and safeguard business operations and company reputation. Pursuant to the California Fair Chance Act, Los Angeles County Fair Chance Ordinance for Employers, Fair Chance Initiative for Hiring Ordinance, and San Francisco Fair Chance Ordinance, we will consider for employment qualified applicants with arrest and conviction records.",
  "descriptionHtml": "<div _ngcontent-ng-c634402638=\"\" class=\"ng-star-inserted\"><p>The KPMG Advisory practice is at the forefront of transformation, offering excellent opportunities for individuals to advance their careers and expertise with KPMG. Looking ahead, we anticipate continued evolution and success within the practice, fostering both personal and professional development, thereby creating new pathways for growth. In this ever-changing market environment, our professionals must be adaptable and thrive in a collaborative, team-driven culture. At KPMG, our people are our number one priority. With a wealth of learning and career development opportunities, a world-class training facility, and leading market tools, we help our people continue to grow both professionally and personally. If you're looking for a firm with a strong team connection where you can be your whole self, have an impact, advance your skills, deepen your experiences, and have the flexibility and access to constantly find new areas of inspiration and expand your capabilities, then consider a career in Advisory.</p> <div><p>KPMG is currently seeking a Senior Associate, Privileged Access Management Delivery Engineer to join our practice.</p></div><div><br></div><div><strong>Responsibilities:</strong></div><ul><li>Support the delivery, configuration, and operationalization of Privileged Access Management (PAM) solutions as part of enterprise Identity &amp; Access Management (IAM) programs</li><li>Implement and maintain PAM capabilities including privileged credential management, session management, just-in-time access, and endpoint management (EPM)components; implement automated integration across adjacent security solutions (for example: Crowdstrike, SIEM solutions, ServiceNow); automate PAM tasks using scripting and APIs (such as PowerShell, Python, REST, and others) and integrate with enterprise platforms (that is, Active Directory, IdPs, ITSM platforms, SIEM platforms, and more)&nbsp;</li><li>Integrate PAM solutions across cloud environments (for example: Azure, AWS, GCP) while following security leading practices</li><li>Execute privileged access onboarding activities, access workflow configurations, and break glass process enablement</li><li>Perform risk assessments, evaluate privileged access controls, and support remediation activities across client environments</li><li>Collaborate with cross-functional engineering, security, and risk teams to enhance PAM processes and resolve technical issues; support migrations from legacy or alternative PAM tooling; contribute to standardization of PAM delivery patterns and templates</li><li>Act with integrity, professionalism, and personal responsibility to uphold KPMG's respectful and courteous work environment</li></ul><div><strong>Qualifications:</strong></div><ul><li>Minimum three years of recent professional experience in Identity &amp; Access Management, Privileged Access Management, or cybersecurity</li><li>Bachelor's degree from an accredited college or university is required; CyberArk Certified Delivery Engineer (CDE) or CyberArk Endpoint Privilege Manager (EPM) Certification preferred</li><li>Hands on experience with Privileged Access Management delivery and engineering, with specific experience using CyberArk On-Prem and SaaS solutions; additional experience with secrets management platforms (that is, Conjur, HashiCorp) and other PAM platforms (such as Delinea, BeyondTrust) preferred</li><li>Familiarity with infrastructure administration (such as Windows, Linux, Databases), networking basics, and IT architecture principles preferred.</li><li>Experience supporting PAM integrations within cloud platforms such as Azure, AWS, or GCP; proficiency with scripting, automation integrations, infrastructure-as-code, and configuration management</li><li>Strong understanding of IAM concepts, privileged access controls, and associated security risks; strong problem solving, communication, and documentation skills with the ability to work collaboratively across teams</li><li>Ability to travel as required</li><li>Applicants must be authorized to work in the U.S. without the need for employment-based visa sponsorship now or in the future; KPMG LLP will not sponsor applicants for U.S. work visa status for this opportunity (no sponsorship is available for H-1B, L-1, TN, O-1, E-3, H-1B1, F-1, J-1, OPT, CPT or any other employment-based visa)</li></ul> <div>KPMG LLP and its subsidiaries (“KPMG”) complies with all local/state regulations regarding displaying salary ranges. If required, the ranges displayed below or via the URL below are specifically for those potential hires who will work in the location(s) listed. Any offered salary is determined based on relevant factors such as applicant's skills, job responsibilities, prior relevant experience, certain degrees and certifications and market considerations. In addition, KPMG is proud to offer a comprehensive, competitive benefits package, with options designed to help you make the best decisions for yourself, your family, and your lifestyle. Available benefits are based on eligibility. Our Total Rewards package includes a variety of medical and dental plans, vision coverage, disability and life insurance, 401(k) plans, and a robust suite of personal well-being benefits to support your mental health. Depending on job classification, standard work hours, and years of service, KPMG provides Personal Time Off per fiscal year. Additionally, each year KPMG publishes a calendar of holidays to be observed during the year and provides eligible employees two breaks each year where employees will not be required to use Personal Time Off; one is at year end and the other is around the July 4th holiday. Additional details about our benefits can be found towards the bottom of our KPMG US Careers site at .</div><div><br></div><div>Follow this link to obtain salary ranges by city outside of CA:&nbsp;</div> California Salary Range: $95855 - $208265 <div><div>KPMG offers a comprehensive compensation and benefits package. KPMG is an equal opportunity employer. KPMG complies with all applicable federal, state and local laws regarding recruitment and hiring. All qualified applicants are considered for employment without regard to race, color, religion, age, sex, sexual orientation, gender identity, national origin, citizenship status, disability, protected veteran status, or any other category protected by applicable federal, state or local laws. The contains further information regarding KPMG's compliance with federal, state and local recruitment and hiring laws. No phone calls or agencies please.</div><div><br></div><div>KPMG recruits on a rolling basis. Candidates are considered as they apply, until the opportunity is filled. Candidates are encouraged to apply expeditiously to any role(s) for which they are qualified that is also of interest to them.&nbsp;</div><div><br></div><div>Los Angeles County applicants: Material job duties for this position are listed above. Criminal history may have a direct, adverse, and negative relationship with some of the material job duties of this position. These include the duties and responsibilities listed above, as well as the abilities to adhere to company policies, exercise sound judgment, effectively manage stress and work safely and respectfully with others, exhibit trustworthiness, and safeguard business operations and company reputation. Pursuant to the California Fair Chance Act, Los Angeles County Fair Chance Ordinance for Employers, Fair Chance Initiative for Hiring Ordinance, and San Francisco Fair Chance Ordinance, we will consider for employment qualified applicants with arrest and conviction records.</div></div></div><!----><!----><!---->",
  "skills": [
    "Human Resources",
    "Communication"
  ],
  "responsibilities": [
    "Writing"
  ],
  "responsibilityDetails": [
    "Support the delivery, configuration, and operationalization of Privileged Access Management (PAM) solutions as part of enterprise Identity & Access Management (IAM) programs",
    "Implement and maintain PAM capabilities including privileged credential management, session management, just-in-time access, and endpoint management (EPM)components; implement automated integration across adjacent security solutions (for example: Crowdstrike, SIEM solutions, ServiceNow); automate PAM tasks using scripting and APIs (such as PowerShell, Python, REST, and others) and integrate with enterprise platforms (that is, Active Directory, IdPs, ITSM platforms, SIEM platforms, and more)",
    "Integrate PAM solutions across cloud environments (for example: Azure, AWS, GCP) while following security leading practices",
    "Execute privileged access onboarding activities, access workflow configurations, and break glass process enablement",
    "Perform risk assessments, evaluate privileged access controls, and support remediation activities across client environments",
    "Collaborate with cross-functional engineering, security, and risk teams to enhance PAM processes and resolve technical issues; support migrations from legacy or alternative PAM tooling; contribute to standardization of PAM delivery patterns and templates",
    "Act with integrity, professionalism, and personal responsibility to uphold KPMG's respectful and courteous work environment"
  ],
  "qualifications": [
    "Hire Vets",
    "Integrity"
  ],
  "qualificationDetails": [
    "Minimum three years of recent professional experience in Identity & Access Management, Privileged Access Management, or cybersecurity",
    "Bachelor's degree from an accredited college or university is required; CyberArk Certified Delivery Engineer (CDE) or CyberArk Endpoint Privilege Manager (EPM) Certification preferred",
    "Hands on experience with Privileged Access Management delivery and engineering, with specific experience using CyberArk On-Prem and SaaS solutions; additional experience with secrets management platforms (that is, Conjur, HashiCorp) and other PAM platforms (such as Delinea, BeyondTrust) preferred",
    "Familiarity with infrastructure administration (such as Windows, Linux, Databases), networking basics, and IT architecture principles preferred.",
    "Experience supporting PAM integrations within cloud platforms such as Azure, AWS, or GCP; proficiency with scripting, automation integrations, infrastructure-as-code, and configuration management",
    "Strong understanding of IAM concepts, privileged access controls, and associated security risks; strong problem solving, communication, and documentation skills with the ability to work collaboratively across teams",
    "Ability to travel as required",
    "Applicants must be authorized to work in the U.S. without the need for employment-based visa sponsorship now or in the future; KPMG LLP will not sponsor applicants for U.S. work visa status for this opportunity (no sponsorship is available for H-1B, L-1, TN, O-1, E-3, H-1B1, F-1, J-1, OPT, CPT or any other employment-based visa)"
  ],
  "educationRequirements": [
    "Bachelors Degree"
  ],
  "benefits": [
    "Medical Benefits",
    "Retirement"
  ],
  "jobAttributes": [
    {
      "name": "write",
      "label": "Writing",
      "schemaLabel": "Writing",
      "usage": [
        "responsibilities",
        "GoogleSchema",
        "DetailsLinks"
      ],
      "level": 4.41
    },
    {
      "name": "medicalbenefits",
      "label": "Medical Benefits",
      "schemaLabel": "Medical Benefits",
      "usage": [
        "GoogleSchema",
        "DetailsLinks",
        "jobBenefits"
      ],
      "level": 1
    },
    {
      "name": "retirement",
      "label": "Retirement",
      "schemaLabel": "Retirement",
      "usage": [
        "GoogleSchema",
        "jobBenefits"
      ],
      "level": 1
    },
    {
      "name": "humanresources",
      "label": "Human Resources",
      "schemaLabel": "Human Resources",
      "usage": [
        "skills",
        "GoogleSchema",
        "DetailsLinks"
      ],
      "level": 3.32
    },
    {
      "name": "communicationskills",
      "label": "Communication",
      "schemaLabel": "Communication",
      "usage": [
        "skills",
        "GoogleSchema",
        "DetailsLinks"
      ],
      "level": 1
    },
    {
      "name": "hirevets",
      "label": "Hire Vets",
      "schemaLabel": "Hire Vets",
      "usage": [
        "GoogleSchema",
        "DetailsLinks",
        "qualifications"
      ],
      "level": 1
    },
    {
      "name": "integrity",
      "label": "Integrity",
      "schemaLabel": "Integrity",
      "usage": [
        "GoogleSchema",
        "qualifications"
      ],
      "level": 1
    },
    {
      "name": "bachelorsdegree",
      "label": "Bachelors Degree",
      "schemaLabel": "bachelor degree",
      "usage": [
        "GoogleSchema",
        "educationRequirements",
        "DetailsLinks"
      ],
      "level": 1
    },
    {
      "name": "healthcarerelated",
      "label": "Health Care",
      "schemaLabel": "Health Care",
      "usage": [
        "GoogleSchema",
        "DetailsLinks",
        "industry"
      ],
      "level": 1
    },
    {
      "name": "humanresourcesrelated",
      "label": "Human Resources",
      "schemaLabel": "Human Resources",
      "usage": [
        "GoogleSchema",
        "DetailsLinks",
        "industry"
      ],
      "level": 1
    },
    {
      "name": "36monthsofexperience",
      "label": "36 Months Experience",
      "schemaLabel": "36",
      "usage": [
        "GoogleSchema",
        "MonthsOfExperience"
      ],
      "level": 1
    }
  ],
  "listingFeatures": [
    "1.9 mi"
  ],
  "applicationLabel": "Apply Now open_in_new",
  "applicationUrl": "https://www.snagajob.com/api/jobs/v1/1265700023/apply",
  "applyUrl": "https://www.snagajob.com/api/jobs/v1/1265700023/apply",
  "applySessionType": "Thirdpartyapp",
  "isEasyApply": false,
  "isOneClickApply": false,
  "isSponsored": false,
  "isPaid": true,
  "isP4p": false,
  "isContractor": false,
  "isExpired": false,
  "isIndexAllowed": true,
  "isFollowAllowed": true,
  "isSchemaAllowed": true,
  "jobFitScore": 0,
  "jobFitConfidence": 0,
  "postedDate": "2026-06-02T06:41:45.261Z",
  "internalCreateDate": "2026-06-02T06:41:45.283Z",
  "updatedDate": "2026-07-21T15:09:14.076Z",
  "internalDeactivationDate": "9999-12-31T23:59:59Z",
  "postedLabel": "Today",
  "listingPosition": 1,
  "totalSearchResults": 1158,
  "searchRequestId": "7850af7e-fa00-4740-9d84-28f6a8f01268",
  "searchResponseId": "da1fa1d9-1fda-4cbb-8951-afa7acf7b7af",
  "pageTitle": "KPMG Senior Associate, Privileged Access Management Delivery Engineer in New York City, NY | 1265700023 | Snagajob",
  "metaDescription": "Apply for a KPMG Senior Associate, Privileged Access Management Delivery Engineer job in New York City, NY. Apply online instantly. View this and more full-time &amp; part-time jobs in New York City, NY on Snagajob. Posting id: 1265700023.",
  "canonicalUrl": "https://www.snagajob.com/jobs/1265700023",
  "jobUrl": "https://www.snagajob.com/jobs/1265700023",
  "searchUrl": "https://www.snagajob.com/search?q=software+engineer&w=new+york%2C+ny&radius=20",
  "searchQuery": "software engineer",
  "searchLocation": "New York, NY",
  "searchRadiusMiles": 20,
  "source": "Snagajob",
  "sourceDomain": "snagajob.com",
  "scrapedAt": "2026-07-21T15:16:09.800Z",
  "detailVerified": true,
  "verificationEvidence": {
    "listingJobId": "1265700023",
    "detailJobId": "1265700023",
    "titleMatches": true,
    "companyMatches": true,
    "urlMatches": true,
    "descriptionLength": 7300
  },
  "meta": {
    "actorVersion": "1.1.0"
  }
}
```

### Responsible use

Only collect publicly available job information. Respect Snagajob's applicable terms of service, robots directives, and data-protection requirements, and follow the usage policy of any proxy infrastructure you route through. Do not use this Actor to scrape authenticated pages, to bypass paywalls, or to harvest personal data of candidates or recruiters.

### Related jobs scrapers

This Actor is part of the **[jobsapi](https://apify.com/jobsapi)** organisation on Apify — a curated set of job-board scrapers that all share the same conventions (input schema, output schema, validation, and runtime). Each scraper lives under [`apify.com/jobsapi/<actor-name>`](https://apify.com/jobsapi) and is published from a sibling folder in this workspace.

The full catalogue of jobs scrapers in this workspace:

#### Global / multi-country

- [indeed-jobs-search-scraper](https://apify.com/jobsapi/indeed-jobs-search-scraper) — [Indeed](https://www.indeed.com)
- [linkedin-jobs-search-scraper](https://apify.com/jobsapi/linkedin-jobs-search-scraper) — [LinkedIn](https://www.linkedin.com/jobs)
- [google-jobs-search-scraper](https://apify.com/jobsapi/google-jobs-search-scraper) — [Google Jobs](https://www.google.com/search_jobs)
- [glassdoor-jobs-search-scraper](https://apify.com/jobsapi/glassdoor-jobs-search-scraper) — [Glassdoor](https://www.glassdoor.com)
- [monster-jobs-search-scraper](https://apify.com/jobsapi/monster-jobs-search-scraper) — [Monster](https://www.monster.com)
- [ziprecruiter-jobs-search-scraper](https://apify.com/jobsapi/ziprecruiter-jobs-search-scraper) — [ZipRecruiter](https://www.ziprecruiter.com)
- [simplyhired-jobs-search-scraper](https://apify.com/jobsapi/simplyhired-jobs-search-scraper) — [SimplyHired](https://www.simplyhired.com)
- [adzuna-jobs-search-scraper](https://apify.com/jobsapi/adzuna-jobs-search-scraper) — [Adzuna](https://www.adzuna.com)
- [jooble-jobs-search-scraper](https://apify.com/jobsapi/jooble-jobs-search-scraper) — [Jooble](https://jooble.org)
- [jora-jobs-search-scraper](https://apify.com/jobsapi/jora-jobs-search-scraper) — [Jora](https://www.jora.com)
- [careerjet-jobs-search-scraper](https://apify.com/jobsapi/careerjet-jobs-search-scraper) — [Careerjet](https://www.careerjet.com)
- [multi-ats-jobs-search-scraper](https://apify.com/jobsapi/multi-ats-jobs-search-scraper) — multi-ATS aggregator
- [workable-jobs-search-scraper](https://apify.com/jobsapi/workable-jobs-search-scraper) — [Workable](https://www.workable.com)
- [workday-jobs-search-scraper](https://apify.com/jobsapi/workday-jobs-search-scraper) — Workday-powered career sites

#### Remote / flexible

- [remoteok-jobs-search-scraper](https://apify.com/jobsapi/remoteok-jobs-search-scraper) — [RemoteOK](https://remoteok.com)
- [we-work-remotely-jobs-search-scraper](https://apify.com/jobsapi/we-work-remotely-jobs-search-scraper) — [We Work Remotely](https://weworkremotely.com)
- [remotive-jobs-search-scraper](https://apify.com/jobsapi/remotive-jobs-search-scraper) — [Remotive](https://remotive.com)
- [remote-co-jobs-search-scraper](https://apify.com/jobsapi/remote-co-jobs-search-scraper) — [Remote.co](https://remote.co)
- [flexjobs-jobs-search-scraper](https://apify.com/jobsapi/flexjobs-jobs-search-scraper) — [FlexJobs](https://www.flexjobs.com)
- [upwork-jobs-search-scraper](https://apify.com/jobsapi/upwork-jobs-search-scraper) — [Upwork](https://www.upwork.com)

#### United States

- [usajobs-jobs-search-scraper](https://apify.com/jobsapi/usajobs-jobs-search-scraper) — [USAJobs](https://www.usajobs.gov)
- [dice-com-jobs-search-scraper](https://apify.com/jobsapi/dice-com-jobs-search-scraper) — [Dice](https://www.dice.com)
- [builtin-jobs-search-scraper](https://apify.com/jobsapi/builtin-jobs-search-scraper) — [Built In](https://www.builtin.com)
- [governmentjobs-jobs-search-scraper](https://apify.com/jobsapi/governmentjobs-jobs-search-scraper) — [GovernmentJobs](https://www.governmentjobs.com)
- [handshake-jobs-search-scraper](https://apify.com/jobsapi/handshake-jobs-search-scraper) — [Handshake](https://joinhandshake.com)
- [higheredjobs-jobs-search-scraper](https://apify.com/jobsapi/higheredjobs-jobs-search-scraper) — [HigherEdJobs](https://www.higheredjobs.com)
- [hcareers-jobs-search-scraper](https://apify.com/jobsapi/hcareers-jobs-search-scraper) — [HCareers](https://www.hcareers.com)
- [idealist-jobs-search-scraper](https://apify.com/jobsapi/idealist-jobs-search-scraper) — [Idealist](https://www.idealist.org)
- [jobcase-jobs-search-scraper](https://apify.com/jobsapi/jobcase-jobs-search-scraper) — [Jobcase](https://www.jobcase.com)
- [snagajob-jobs-search-scraper](https://apify.com/jobsapi/snagajob-jobs-search-scraper) — [Snagajob](https://www.snagajob.com)
- [themuse-jobs-search-scraper](https://apify.com/jobsapi/themuse-jobs-search-scraper) — [The Muse](https://www.themuse.com)
- [wellfound-jobs-search-scraper](https://apify.com/jobsapi/wellfound-jobs-search-scraper) — [Wellfound (AngelList Talent)](https://wellfound.com)
- [tes-jobs-search-scraper](https://apify.com/jobsapi/tes-jobs-search-scraper) — [TES](https://www.tes.com)
- [practicelink-jobs-search-scraper](https://apify.com/jobsapi/practicelink-jobs-search-scraper) — [PracticeLink](https://www.practicelink.com)
- [civilservice-jobs-search-scraper](https://apify.com/jobsapi/civilservice-jobs-search-scraper) — Civil Service

#### United Kingdom & Ireland

- [reed-jobs-search-scraper](https://apify.com/jobsapi/reed-jobs-search-scraper) — [Reed](https://www.reed.co.uk)
- [totaljobs-jobs-search-scraper](https://apify.com/jobsapi/totaljobs-jobs-search-scraper) — [Totaljobs](https://www.totaljobs.com)
- [cv-library-jobs-search-scraper](https://apify.com/jobsapi/cv-library-jobs-search-scraper) — [CV-Library](https://www.cv-library.co.uk)
- [jobsite-jobs-search-scraper](https://apify.com/jobsapi/jobsite-jobs-search-scraper) — [Jobsite](https://www.jobsite.co.uk)
- [jobs-ac-uk-jobs-search-scraper](https://apify.com/jobsapi/jobs-ac-uk-jobs-search-scraper) — [Jobs.ac.uk](https://www.jobs.ac.uk)
- [guardian-jobs-search-scraper](https://apify.com/jobsapi/guardian-jobs-search-scraper) — [Guardian Jobs](https://jobs.theguardian.com)
- [irishjobs-jobs-search-scraper](https://apify.com/jobsapi/irishjobs-jobs-search-scraper) — [IrishJobs](https://www.irishjobs.ie)
- [nhs-jobs-search-scraper](https://apify.com/jobsapi/nhs-jobs-search-scraper) — [NHS Jobs](https://www.jobs.nhs.uk)
- [tes-jobs-search-scraper](https://apify.com/jobsapi/tes-jobs-search-scraper) — [TES](https://www.tes.com)

#### Europe

- [apec-jobs-search-scraper](https://apify.com/jobsapi/apec-jobs-search-scraper) — [APEC](https://www.apec.fr) (France, executive roles)
- [cadremploi-jobs-search-scraper](https://apify.com/jobsapi/cadremploi-jobs-search-scraper) — [Cadremploi](https://www.cadremploi.fr) (France)
- [meteojob-jobs-search-scraper](https://apify.com/jobsapi/meteojob-jobs-search-scraper) — [Meteojob](https://www.meteojob.com) (France)
- [hellowork-jobs-search-scraper](https://apify.com/jobsapi/hellowork-jobs-search-scraper) — [Hellowork](https://www.hellowork.com) (France)
- [francetravail-jobs-search-scraper](https://apify.com/jobsapi/francetravail-jobs-search-scraper) — [France Travail](https://www.francetravail.fr) (France)
- [michaelpage-jobs-search-scraper](https://apify.com/jobsapi/michaelpage-jobs-search-scraper) — [Michael Page](https://www.michaelpage.com)
- [manpower-jobs-search-scraper](https://apify.com/jobsapi/manpower-jobs-search-scraper) — [Manpower](https://www.manpower.com)
- [randstad-jobs-search-scraper](https://apify.com/jobsapi/randstad-jobs-search-scraper) — [Randstad](https://www.randstad.com)
- [roberthalf-jobs-search-scraper](https://apify.com/jobsapi/roberthalf-jobs-search-scraper) — [Robert Half](https://www.roberthalf.com)
- [akkodis-jobs-search-scraper](https://apify.com/jobsapi/akkodis-jobs-search-scraper) — [Akkodis](https://www.akkodis.com)
- [stepstone-jobs-search-scraper](https://apify.com/jobsapi/stepstone-jobs-search-scraper) — [Stepstone](https://www.stepstone.com) (DE/EU)
- [arbeitsagentur-jobs-search-scraper](https://apify.com/jobsapi/arbeitsagentur-jobs-search-scraper) — [Arbeitsagentur](https://www.arbeitsagentur.de) (Germany)
- [xing-jobs-search-scraper](https://apify.com/jobsapi/xing-jobs-search-scraper) — [Xing](https://www.xing.com)
- [karriere-at-jobs-search-scraper](https://apify.com/jobsapi/karriere-at-jobs-search-scraper) — [Karriere.at](https://www.karriere.at) (Austria)
- [jobs-ch-jobs-search-scraper](https://apify.com/jobsapi/jobs-ch-jobs-search-scraper) — [Jobs.ch](https://www.jobs.ch) (Switzerland)
- [pracuj-pl-jobs-search-scraper](https://apify.com/jobsapi/pracuj-pl-jobs-search-scraper) — [Pracuj.pl](https://www.pracuj.pl) (Poland)
- [nofluffjobs-jobs-search-scraper](https://apify.com/jobsapi/nofluffjobs-jobs-search-scraper) — [No Fluff Jobs](https://nofluffjobs.com)
- [jobindex-jobs-search-scraper](https://apify.com/jobsapi/jobindex-jobs-search-scraper) — [Jobindex](https://www.jobindex.dk) (Denmark)
- [finn-no-jobs-search-scraper](https://apify.com/jobsapi/finn-no-jobs-search-scraper) — [FINN.no](https://www.finn.no) (Norway)
- [infojobs-jobs-search-scraper](https://apify.com/jobsapi/infojobs-jobs-search-scraper) — [InfoJobs](https://www.infojobs.net) (Spain/Italy/Portugal)
- [eluta-jobs-search-scraper](https://apify.com/jobsapi/eluta-jobs-search-scraper) — [Eluta.ca](https://www.eluta.ca) (Canada)
- [jobbank-jobs-search-scraper](https://apify.com/jobsapi/jobbank-jobs-search-scraper) — [Job Bank](https://www.jobbank.gc.ca) (Canada)
- [jobillico-jobs-search-scraper](https://apify.com/jobsapi/jobillico-jobs-search-scraper) — [Jobillico](https://www.jobillico.com) (Canada)
- [eures-jobs-search-scraper](https://apify.com/jobsapi/eures-jobs-search-scraper) — [EURES](https://ec.europa.eu/eures) (EU)
- [vdab-jobs-search-scraper](https://apify.com/jobsapi/vdab-jobs-search-scraper) — [VDAB](https://www.vdab.be) (Belgium)
- [kariyer-net-jobs-search-scraper](https://apify.com/jobsapi/kariyer-net-jobs-search-scraper) — [Kariyer.net](https://www.kariyer.net) (Türkiye)
- [jobberman-jobs-search-scraper](https://apify.com/jobsapi/jobberman-jobs-search-scraper) — [Jobberman](https://www.jobberman.com) (Nigeria)
- [pnet-jobs-search-scraper](https://apify.com/jobsapi/pnet-jobs-search-scraper) — [PNet](https://www.pnet.co.za) (South Africa)
- [brightmonday-jobs-search-scraper](https://apify.com/jobsapi/brightmonday-jobs-search-scraper) — [BrighterMonday](https://www.brightermonday.co.ke) (East Africa)
- [caterer-jobs-search-scraper](https://apify.com/jobsapi/caterer-jobs-search-scraper) — [Caterer.com](https://www.caterer.com) (hospitality, UK/EU)

#### India

- [naukri-jobs-search-scraper](https://apify.com/jobsapi/naukri-jobs-search-scraper) — [Naukri](https://www.naukri.com)
- [foundit-jobs-search-scraper](https://apify.com/jobsapi/foundit-jobs-search-scraper) — [Foundit (Monster India)](https://www.foundit.in)
- [timesjobs-jobs-search-scraper](https://apify.com/jobsapi/timesjobs-jobs-search-scraper) — [TimesJobs](https://www.timesjobs.com)
- [shine-com-jobs-search-scraper](https://apify.com/jobsapi/shine-com-jobs-search-scraper) — [Shine](https://www.shine.com)
- [internshala-jobs-search-scraper](https://apify.com/jobsapi/internshala-jobs-search-scraper) — [Internshala](https://internshala.com)
- [freshersworld-jobs-search-scraper](https://apify.com/jobsapi/freshersworld-jobs-search-scraper) — [Freshersworld](https://www.freshersworld.com)
- [hirist-jobs-search-scraper](https://apify.com/jobsapi/hirist-jobs-search-scraper) — [Hirist](https://www.hirist.com)
- [instahyre-jobs-search-scraper](https://apify.com/jobsapi/instahyre-jobs-search-scraper) — [Instahyre](https://www.instahyre.com)
- [iimjobs-jobs-search-scraper](https://apify.com/jobsapi/iimjobs-jobs-search-scraper) — [IIMJobs](https://www.iimjobs.com)
- [cutshort-jobs-search-scraper](https://apify.com/jobsapi/cutshort-jobs-search-scraper) — [Cutshort](https://cutshort.io)
- [workindia-jobs-search-scraper](https://apify.com/jobsapi/workindia-jobs-search-scraper) — [WorkIndia](https://www.workindia.in)
- [quikr-jobs-search-scraper](https://apify.com/jobsapi/quikr-jobs-search-scraper) — [Quikr Jobs](https://www.quikr.com/jobs)
- [unstop-jobs-search-scraper](https://apify.com/jobsapi/unstop-jobs-search-scraper) — [Unstop (Dare2Compete)](https://unstop.com)
- [apna-jobs-search-scraper](https://apify.com/jobsapi/apna-jobs-search-scraper) — [Apna](https://apna.co)
- [employmentnews-jobs-search-scraper](https://apify.com/jobsapi/employmentnews-jobs-search-scraper) — [Employment News](https://employmentnews.gov.in)
- [ibps-recruitment-jobs-search-scraper](https://apify.com/jobsapi/ibps-recruitment-jobs-search-scraper) — IBPS recruitment
- [ssc-recruitment-jobs-search-scraper](https://apify.com/jobsapi/ssc-recruitment-jobs-search-scraper) — SSC recruitment
- [rrb-recruitment-jobs-search-scraper](https://apify.com/jobsapi/rrb-recruitment-jobs-search-scraper) — RRB recruitment
- [upsc-recruitment-jobs-search-scraper](https://apify.com/jobsapi/upsc-recruitment-jobs-search-scraper) — UPSC recruitment
- [freejobalert-jobs-search-scraper](https://apify.com/jobsapi/freejobalert-jobs-search-scraper) — [FreeJobAlert](https://www.freejobalert.com)
- [tnprivatejobs-jobs-search-scraper](https://apify.com/jobsapi/tnprivatejobs-jobs-search-scraper) — TN Private Jobs

#### Asia-Pacific

- [jobkorea-jobs-search-scraper](https://apify.com/jobsapi/jobkorea-jobs-search-scraper) — [JobKorea](https://www.jobkorea.co.kr) (Korea)
- [saramin-jobs-search-scraper](https://apify.com/jobsapi/saramin-jobs-search-scraper) — [Saramin](https://www.saramin.co.kr) (Korea)
- [daijob-jobs-search-scraper](https://apify.com/jobsapi/daijob-jobs-search-scraper) — [Daijob](https://www.daijob.com) (Japan)
- [gaijinpot-jobs-search-scraper](https://apify.com/jobsapi/gaijinpot-jobs-search-scraper) — [GaijinPot](https://jobs.gaijinpot.com) (Japan)
- [jobsdb-sg-jobs-search-scraper](https://apify.com/jobsapi/jobsdb-sg-jobs-search-scraper) — [JobsDB](https://www.jobsdb.com) (Hong Kong / SEA)
- [jobstreet-jobs-search-scraper](https://apify.com/jobsapi/jobstreet-jobs-search-scraper) — [JobStreet](https://www.jobstreet.com) (SEA)
- [mycareersfuture-jobs-search-scraper](https://apify.com/jobsapi/mycareersfuture-jobs-search-scraper) — [MyCareersFuture](https://www.mycareersfuture.gov.sg) (Singapore)
- [glints-jobs-search-scraper](https://apify.com/jobsapi/glints-jobs-search-scraper) — [Glints](https://glints.com) (SEA)
- [himalayas-jobs-search-scraper](https://apify.com/jobsapi/himalayas-jobs-search-scraper) — [Himalayas](https://himalayas.app)
- [vietnamworks-jobs-search-scraper](https://apify.com/jobsapi/vietnamworks-jobs-search-scraper) — [VietnamWorks](https://www.vietnamworks.com)
- [conzultalent-jobs-search-scraper](https://apify.com/jobsapi/conzultalent-jobs-search-scraper) — Conzultalent

#### MENA

- [bayt-jobs-search-scraper](https://apify.com/jobsapi/bayt-jobs-search-scraper) — [Bayt.com](https://www.bayt.com)
- [gulftalent-jobs-search-scraper](https://apify.com/jobsapi/gulftalent-jobs-search-scraper) — [GulfTalent](https://www.gulftalent.com)
- [wuzzuf-jobs-search-scraper](https://apify.com/jobsapi/wuzzuf-jobs-search-scraper) — [Wuzzuf](https://wuzzuf.net) (Egypt)
- [naukrigulf-jobs-search-scraper](https://apify.com/jobsapi/naukrigulf-jobs-search-scraper) — [NaukriGulf](https://www.naukrigulf.com)
- [hh-ru-jobs-search-scraper](https://apify.com/jobsapi/hh-ru-jobs-search-scraper) — [hh.ru](https://hh.ru) (Russia)

#### Latin America

- [computrabajo-jobs-search-scraper](https://apify.com/jobsapi/computrabajo-jobs-search-scraper) — [Computrabajo](https://www.computrabajo.com)
- [bumeran-jobs-search-scraper](https://apify.com/jobsapi/bumeran-jobs-search-scraper) — [Bumeran](https://www.bumeran.com)
- [occ-mundial-jobs-search-scraper](https://apify.com/jobsapi/occ-mundial-jobs-search-scraper) — [OCC Mundial](https://www.occ.com.mx)
- [zonajobs-jobs-search-scraper](https://apify.com/jobsapi/zonajobs-jobs-search-scraper) — [ZonaJobs](https://www.zonajobs.com.ar)
- [laborum-jobs-search-scraper](https://apify.com/jobsapi/laborum-jobs-search-scraper) — [Laborum](https://www.laborum.com)
- [catho-jobs-search-scraper](https://apify.com/jobsapi/catho-jobs-search-scraper) — [Catho](https://www.catho.com.br) (Brazil)
- [gupy-jobs-search-scraper](https://apify.com/jobsapi/gupy-jobs-search-scraper) — [Gupy](https://gupy.com.br) (Brazil)
- [infojobs-jobs-search-scraper](https://apify.com/jobsapi/infojobs-jobs-search-scraper) — [InfoJobs](https://www.infojobs.com.br) (Brazil)
- [olx-jobs-search-scraper](https://apify.com/jobsapi/olx-jobs-search-scraper) — [OLX](https://www.olx.com) Jobs

#### Africa

- [jobberman-jobs-search-scraper](https://apify.com/jobsapi/jobberman-jobs-search-scraper) — [Jobberman](https://www.jobberman.com) (Nigeria)
- [pnet-jobs-search-scraper](https://apify.com/jobsapi/pnet-jobs-search-scraper) — [PNet](https://www.pnet.co.za) (South Africa)
- [brightmonday-jobs-search-scraper](https://apify.com/jobsapi/brightmonday-jobs-search-scraper) — [BrighterMonday](https://www.brightermonday.co.ke) (East Africa)
- [career-jobs-search-scraper](https://apify.com/jobsapi/career-jobs-search-scraper) — [Career](https://www.career.co.za) (South Africa)
- [ejobs-ro-jobs-search-scraper](https://apify.com/jobsapi/ejobs-ro-jobs-search-scraper) — [eJobs.ro](https://www.ejobs.ro) (Romania)
- [ncs-jobs-search-scraper](https://apify.com/jobsapi/ncs-jobs-search-scraper) — NCS
- [trademe-jobs-search-scraper](https://apify.com/jobsapi/trademe-jobs-search-scraper) — [Trade Me Jobs](https://www.trademe.co.nz) (New Zealand)
- [seek-jobs-search-scraper](https://apify.com/jobsapi/seek-jobs-search-scraper) — [SEEK](https://www.seek.com.au) (AU/NZ)
- [workforce-australia-jobs-search-scraper](https://apify.com/jobsapi/workforce-australia-jobs-search-scraper) — Workforce Australia

#### Other / specialised

- [dice-com-jobs-search-scraper](https://apify.com/jobsapi/dice-com-jobs-search-scraper) — [Dice](https://www.dice.com) (tech, US)
- [efinancialcareers-jobs-search-scraper](https://apify.com/jobsapi/efinancialcareers-jobs-search-scraper) — [eFinancialCareers](https://www.efinancialcareers.com)
- [apsjobs-jobs-search-scraper](https://apify.com/jobsapi/apsjobs-jobs-search-scraper) — APS Jobs
- [talent-jobs-search-scraper](https://apify.com/jobsapi/talent-jobs-search-scraper) — Talent
- [jungle-jobs-search-scraper](https://apify.com/jobsapi/jungle-jobs-search-scraper) — [Jungle.co](https://jungle.co) (creative / tech)
- [wuzzuf-jobs-search-scraper](https://apify.com/jobsapi/wuzzuf-jobs-search-scraper) — [Wuzzuf](https://wuzzuf.net)

Browse the full catalogue at **[apify.com/jobsapi](https://apify.com/jobsapi)**.

# Actor input Schema

## `query` (type: `string`):

Job title or keywords to search for on Snagajob

## `location` (type: `string`):

City, state, or ZIP code to narrow the search

## `radius` (type: `integer`):

Maximum distance from the selected location.

## `proxyConfiguration` (type: `object`):

Use Apify Proxy or custom HTTP proxy to avoid IP-based blocking. US Residential proxy recommended.

## `maxItems` (type: `integer`):

Maximum number of job listings to scrape

## `headless` (type: `boolean`):

Run the installed Google Chrome without a visible window.

## `verificationTimeoutSecs` (type: `integer`):

Maximum wait for a manually completed security verification in visible local Chrome.

## Actor input object example

```json
{
  "query": "cashier",
  "radius": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "maxItems": 50,
  "headless": true,
  "verificationTimeoutSecs": 120
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "cashier",
    "location": "",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobsapi/snagajob-jobs-search-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "cashier",
    "location": "",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("jobsapi/snagajob-jobs-search-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "cashier",
  "location": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call jobsapi/snagajob-jobs-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,jobsapi/snagajob-jobs-search-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/NnP6Rpn2Ue2Or3b6G/builds/p0bnVcwJm100fnVjd/openapi.json
