# Glints Search Scraper (`jobsapi/glints-jobs-search-scraper`) Actor

Extract complete current Glints jobs, including employer profiles, exact location hierarchy, salary, requirements, benefits, skills, recruiter, and source structured data.

- **URL**: https://apify.com/jobsapi/glints-jobs-search-scraper.md
- **Developed by:** [Jobs API](https://apify.com/jobsapi) (community)
- **Categories:** Jobs, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.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/platform/actors/running/actors-in-store#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

## Glints Search Scraper

> An [Apify Actor](https://apify.com/jobsapi/glints-jobs-search-scraper) that scrapes publicly listed job postings from **[Glints Search Scraper](https://example.com)** - Extract complete current Glints jobs, including employer profiles, exact location hierarchy, salary, requirements, benefits, skills, recruiter, and source structured data..

The Actor navigates Glints Search Scraper'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 Glints Search Scraper?](#what-is-glints-search-scraper)
- [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 Glints Search Scraper?

**Glints Search Scraper** is Extract complete current Glints jobs, including employer profiles, exact location hierarchy, salary, requirements, benefits, skills, recruiter, and source structured data.

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

### What does the Actor scrape?

Extract complete current Glints jobs, including employer profiles, exact location hierarchy, salary, requirements, benefits, skills, recruiter, and source structured data.

The actor maps listing fields such as:

- `id`
- `title`
- `status`
- `employmentType`
- `workArrangement`
- `isRemote`
- `jobSource`
- `sourceType`
- `fraudVerification`
- `isHot`

Primary source URL: `https://images.glints.com/unsafe/glints-dashboard.oss-ap-southeast-1.aliyuncs.com/company-logo/`

### Main target URL

The actor scrapes from the following base URL:

```text
https://images.glints.com/unsafe/glints-dashboard.oss-ap-southeast-1.aliyuncs.com/company-logo/
```

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

### Input schema

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

| Field | Type | Required | Default | Constraints | Description |
| --- | --- | --- | --- | --- | --- |
| `query` | `string` | Yes | `"software engineer"` | - | Job search keyword or phrase |
| `location` | `enum(Singapore, Indonesia, Vietnam, Malaysia, Philippines, Thailand)` | No | `"Singapore"` | one of: Singapore, Indonesia, Vietnam, Malaysia, Philippines, Thailand | Location to search jobs in |
| `maxItems` | `integer` | No | `50` | >= 1; <= 500 | Maximum number of job listings to scrape |
| `proxyConfiguration` | `object` | No | `{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"],"apifyProxyCountry":"SG"}` | - | Proxy settings for the scraper |

### Example input

```json
{
  "query": "software engineer",
  "location": "Singapore",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "SG"
  }
}
```

### Output / dataset schema

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

| Field | Type | Required |
| --- | --- | --- |
| `id` | `string` | No |
| `title` | `string` | No |
| `status` | `string` | No |
| `employmentType` | `string` | No |
| `workArrangement` | `string` | No |
| `isRemote` | `boolean` | No |
| `jobSource` | `string` | No |
| `sourceType` | `string` | No |
| `fraudVerification` | `string` | No |
| `isHot` | `boolean` | No |
| `isActivelyHiring` | `boolean` | No |
| `company` | `object` | No |
| `location` | `object` | No |
| `salary` | `object` | No |
| `experience` | `object` | No |
| `category` | `object` | No |
| `skills` | `array` | No |
| `benefits` | `array` | No |
| `description` | `object` | No |
| `descriptionHtml` | `string` | No |
| `interviewProcess` | `object` | No |
| `application` | `object` | No |
| `recruiter` | `object` | No |
| `dates` | `object` | No |
| `labels` | `array` | No |
| `attachments` | `array` | No |
| `sourceJobPosting` | `object` | No |
| `sourceStructuredData` | `array` | No |
| `searchListing` | `object` | No |
| `search` | `object` | No |
| `applyUrl` | `string` | No |
| `url` | `string` | No |
| `source` | `string` | No |
| `scrapedAt` | `string` | No |

### Example output record

```json
{
  "id": "9ffac0ce-7a50-483a-a172-f6d34d0b5577",
  "title": "Senior Consultant-Senior Software Engineer",
  "status": "Open",
  "employmentType": "Full Time",
  "workArrangement": "Onsite",
  "isRemote": false,
  "jobSource": "Sourced",
  "sourceType": "Native",
  "isHot": false,
  "isActivelyHiring": false,
  "company": {
    "id": "d2b55a7e-0cd7-4a60-bb2f-7a2dd518f83b",
    "name": "Infosys Singapore & Australia",
    "displayName": "Infosys Singapore & Australia",
    "logo": "https://images.glints.com/unsafe/glints-dashboard.oss-ap-southeast-1.aliyuncs.com/company-logo/https://workablehr.s3.amazonaws.com/uploads/account/logo/564210/logo",
    "hiring": false,
    "vip": false,
    "localOffice": false
  },
  "location": {
    "id": "7355c3d7-65eb-47e0-b4b8-5e37a4d8cc00",
    "name": "Pioneer",
    "formattedName": "Pioneer",
    "administrativeLevel": "Planning Area",
    "country": {
      "callingCode": "SG",
      "code": "SG",
      "id": "SG"
    },
    "countryCode": "SG",
    "latitude": 1.3125850888221977,
    "longitude": 103.67298742898527,
    "hierarchy": [
      {
        "id": "7355c3d7-65eb-47e0-b4b8-5e37a4d8cc00",
        "name": "Pioneer",
        "formattedName": "Pioneer",
        "administrativeLevel": "Planning Area",
        "level": 4,
        "slug": "pioneer",
        "countryCode": "SG",
        "latitude": 1.3125850888221977,
        "longitude": 103.67298742898527
      },
      {
        "id": "22ce57bf-073d-46c1-9493-123ed75d9f24",
        "name": "West",
        "formattedName": "West",
        "administrativeLevel": "Region",
        "level": 3,
        "slug": "west",
        "countryCode": "SG",
        "latitude": 1.286752,
        "longitude": 103.705167
      },
      {
        "id": "67fa986e-456c-4935-9734-38cbf550303a",
        "name": "Singapore",
        "formattedName": "Singapore",
        "administrativeLevel": "Province",
        "level": 2,
        "slug": "singapore",
        "countryCode": "SG",
        "latitude": 1.3475123579705577,
        "longitude": 103.84435367647565
      },
      {
        "id": "cfea3935-c2f0-4f28-8f40-625f97bb3adc",
        "name": "Singapore",
        "formattedName": "Singapore",
        "administrativeLevel": "Country",
        "level": 1,
        "slug": "singapore",
        "countryCode": "SG",
        "latitude": 1.3475123579705577,
        "longitude": 103.84435367647565
      }
    ]
  },
  "experience": {
    "minimumYears": 5,
    "maximumYears": 10,
    "educationRequired": false
  },
  "description": {
    "text": "Key Responsibilities\n\nParticipate in end-to-end projects for system implementation of MLS system\n\nEngage and collaborate with Architects, Security and Development Lead to ensure solution design complies with enterprise design principles, security, and control standards\n\nCoordinate with Technical Delivery Manager to plan technical deliverables and schedule, perform environment setup, involve in solution design and development works to meet project requirements\n\nEscalate issues that impacts project schedule on timely basis and propose workarounds/resolutions\n\nCreate technical documents for the solutions. Compile timely, comprehensive, and accurate documentation as requested\n\nImplement project change request and in accordance with deployment schedule\n\nPartner with Test Management teams to ensure completion of SIT, UAT, performance / load testing and application security testing with quality result\n\nFacilitate and provide technical and testing support before and after production deployment\n\nLiaise with other units across IT and Business in the organization\n\nAt least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat\n\nAt least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git\n\nAt least 4 years of experience of coordination with cross technical teams\n\nAt least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M\n\nAbility to multitask effectively and handle large amounts of data includes data ingestion and processing\n\nAbility to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting\n\nAbility to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP\n\nHighly driven, pro-active and a strong team player\n\nExcellent interpersonal skills and written and verbal communication skills in English\n\nKnowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability\n\nExperience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy\n\nExperience in Python, Data Engineering, Data warehousing and analytics\n\nRequirements\n\nKey Requirements\n\nMust Have\n\nAt least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat\n\nAt least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git\n\nAt least 4 years of experience of coordination with cross technical teams\n\nAt least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M\n\nAbility to multitask effectively and handle large amounts of data includes data ingestion and processing\n\nAbility to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting\n\nAbility to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP\n\nHighly driven, pro-active and a strong team player\n\nExcellent interpersonal skills and written and verbal communication skills in English\n\nKnowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability\n\nExperience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy\n\nExperience in Python, Data Engineering, Data warehousing and analytics\n\nGood to Have",
    "sections": {
      "introduction": "Key Responsibilities\nParticipate in end-to-end projects for system implementation of MLS system\nEngage and collaborate with Architects, Security and Development Lead to ensure solution design complies with enterprise design principles, security, and control standards\nCoordinate with Technical Delivery Manager to plan technical deliverables and schedule, perform environment setup, involve in solution design and development works to meet project requirements\nEscalate issues that impacts project schedule on timely basis and propose workarounds/resolutions\nCreate technical documents for the solutions. Compile timely, comprehensive, and accurate documentation as requested\nImplement project change request and in accordance with deployment schedule\nPartner with Test Management teams to ensure completion of SIT, UAT, performance / load testing and application security testing with quality result\nFacilitate and provide technical and testing support before and after production deployment\nLiaise with other units across IT and Business in the organization\nAt least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat\nAt least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git\nAt least 4 years of experience of coordination with cross technical teams\nAt least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M\nAbility to multitask effectively and handle large amounts of data includes data ingestion and processing\nAbility to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting\nAbility to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP\nHighly driven, pro-active and a strong team player\nExcellent interpersonal skills and written and verbal communication skills in English\nKnowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability\nExperience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy\nExperience in Python, Data Engineering, Data warehousing and analytics",
      "requirements": "Key Requirements\nMust Have\nAt least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat\nAt least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git\nAt least 4 years of experience of coordination with cross technical teams\nAt least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M\nAbility to multitask effectively and handle large amounts of data includes data ingestion and processing\nAbility to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting\nAbility to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP\nHighly driven, pro-active and a strong team player\nExcellent interpersonal skills and written and verbal communication skills in English\nKnowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability\nExperience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy\nExperience in Python, Data Engineering, Data warehousing and analytics"
    },
    "blocks": [
      {
        "type": "unstyled",
        "depth": 0
      },
      {
        "type": "unstyled",
        "depth": 0,
        "text": "Key Responsibilities"
      },
      {
        "depth": 0
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Participate in end-to-end projects for system implementation of MLS system"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Engage and collaborate with Architects, Security and Development Lead to ensure solution design complies with enterprise design principles, security, and control standards"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Coordinate with Technical Delivery Manager to plan technical deliverables and schedule, perform environment setup, involve in solution design and development works to meet project requirements"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Escalate issues that impacts project schedule on timely basis and propose workarounds/resolutions"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Create technical documents for the solutions. Compile timely, comprehensive, and accurate documentation as requested"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Implement project change request and in accordance with deployment schedule"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Partner with Test Management teams to ensure completion of SIT, UAT, performance / load testing and application security testing with quality result"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Facilitate and provide technical and testing support before and after production deployment"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Liaise with other units across IT and Business in the organization"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 4 years of experience of coordination with cross technical teams"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to multitask effectively and handle large amounts of data includes data ingestion and processing"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Highly driven, pro-active and a strong team player"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Excellent interpersonal skills and written and verbal communication skills in English"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Knowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Experience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Experience in Python, Data Engineering, Data warehousing and analytics"
      },
      {
        "type": "unstyled",
        "depth": 0
      },
      {
        "type": "header-three",
        "depth": 0,
        "text": "Requirements"
      },
      {
        "type": "unstyled",
        "depth": 0,
        "text": "Key Requirements",
        "inlineStyleRanges": [
          {
            "style": "BOLD",
            "length": 18,
            "offset": 0
          }
        ]
      },
      {
        "type": "unstyled",
        "depth": 0,
        "text": "Must Have"
      },
      {
        "depth": 0
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 5 years of experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic / Tomcat"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 4 years of experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, System Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, Bitbucket / Git"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 4 years of experience of coordination with cross technical teams"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "At least 3 years of experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, Control-M"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to multitask effectively and handle large amounts of data includes data ingestion and processing"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to setup, manage Hadoop cluster configuration, parameters, resource allocation, monitoring and troubleshooting"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Ability to resolve authentication, authorization, encryption issue among Hadoop, 3-tier architecture and LDAP"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Highly driven, pro-active and a strong team player"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Excellent interpersonal skills and written and verbal communication skills in English"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Knowledge of networking, firewall, VPN, SSL, Kerberos, load balancing, and high availability"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Experience in MS Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy"
      },
      {
        "type": "unordered-list-item",
        "depth": 0,
        "text": "Experience in Python, Data Engineering, Data warehousing and analytics"
      },
      {
        "type": "unstyled",
        "depth": 0,
        "text": "Good to Have"
      }
    ]
  },
  "descriptionHtml": "<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p> <p>Key &nbsp;&nbsp;Responsibilities</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p> <ul> <li>Participate in &nbsp;&nbsp;end-to-end projects for system implementation of MLS system</li> <li>Engage and &nbsp;&nbsp;collaborate with Architects, Security and Development Lead to ensure solution &nbsp;&nbsp;design complies with enterprise design principles, security, and control &nbsp;&nbsp;standards</li> <li>Coordinate with &nbsp;&nbsp;Technical Delivery Manager to plan technical deliverables and schedule, perform &nbsp;&nbsp;environment setup, involve in solution design and development works to meet &nbsp;&nbsp;project requirements</li> <li>Escalate issues that &nbsp;&nbsp;impacts project schedule on timely basis and propose workarounds/resolutions</li> <li>Create technical &nbsp;&nbsp;documents for the solutions. Compile timely, comprehensive, and accurate &nbsp;&nbsp;documentation as requested</li> <li>Implement project &nbsp;&nbsp;change request and in accordance with deployment schedule</li> <li>Partner with Test Management &nbsp;&nbsp;teams to ensure completion of SIT, UAT, performance / load testing and &nbsp;&nbsp;application security testing with quality result</li> <li>Facilitate and &nbsp;&nbsp;provide technical and testing support before and after production deployment&nbsp;</li> <li>Liaise with other &nbsp;&nbsp;units across IT and Business in the organization</li> <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li> <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li> <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li> <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li> <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li> <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li> <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li> <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li> <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li> <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li> <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li> <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li> </ul> <p><br> </p> <h3>Requirements</h3> <p><strong>Key &nbsp;&nbsp;Requirements</strong></p> <p>Must Have</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p> <ul> <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li> <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li> <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li> <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li> <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li> <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li> <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li> <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li> <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li> <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li> <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li> <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li> </ul> <p>Good to Have</p>",
  "application": {
    "acceptsForeignApplications": false,
    "canApply": true,
    "resumeRequired": false,
    "coverLetterRequired": false,
    "profilePictureRequired": false,
    "candidateLocationRequired": false,
    "screeningQuestionsEnabled": false,
    "directApply": false,
    "externalApplyUrl": "https://jobs.workable.com/view/urYa4oUp1LcDopX2fDPWjt/senior-consultant-senior-software-engineer-in-singapore-at-infosys-singapore-%26-australia"
  },
  "recruiter": {
    "highResponseRate": false
  },
  "dates": {
    "createdAt": "2026-06-04T00:10:05.850543Z",
    "updatedAt": "2026-07-21T00:16:50.447401Z",
    "expiresAt": "2026-07-31",
    "companyCreatedAt": "2026-06-04T00:01:53.20563Z"
  },
  "sourceJobPosting": {
    "@context": "https://schema.org/",
    "@type": "JobPosting",
    "title": "Senior Consultant-Senior Software Engineer",
    "description": "<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Key &nbsp;&nbsp;Responsibilities</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<ul>\n  <li>Participate in &nbsp;&nbsp;end-to-end projects for system implementation of MLS system</li>\n  <li>Engage and &nbsp;&nbsp;collaborate with Architects, Security and Development Lead to ensure solution &nbsp;&nbsp;design complies with enterprise design principles, security, and control &nbsp;&nbsp;standards</li>\n  <li>Coordinate with &nbsp;&nbsp;Technical Delivery Manager to plan technical deliverables and schedule, perform &nbsp;&nbsp;environment setup, involve in solution design and development works to meet &nbsp;&nbsp;project requirements</li>\n  <li>Escalate issues that &nbsp;&nbsp;impacts project schedule on timely basis and propose workarounds/resolutions</li>\n  <li>Create technical &nbsp;&nbsp;documents for the solutions. Compile timely, comprehensive, and accurate &nbsp;&nbsp;documentation as requested</li>\n  <li>Implement project &nbsp;&nbsp;change request and in accordance with deployment schedule</li>\n  <li>Partner with Test Management &nbsp;&nbsp;teams to ensure completion of SIT, UAT, performance / load testing and &nbsp;&nbsp;application security testing with quality result</li>\n  <li>Facilitate and &nbsp;&nbsp;provide technical and testing support before and after production deployment&nbsp;</li>\n  <li>Liaise with other &nbsp;&nbsp;units across IT and Business in the organization</li>\n  <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li>\n  <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li>\n  <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li>\n  <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li>\n  <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li>\n  <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li>\n  <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li>\n  <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li>\n  <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li>\n  <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li>\n</ul>\n<p><br>\n</p>\n<h3>Requirements</h3>\n<p><strong>Key &nbsp;&nbsp;Requirements</strong></p>\n<p>Must Have</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<ul>\n  <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li>\n  <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li>\n  <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li>\n  <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li>\n  <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li>\n  <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li>\n  <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li>\n  <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li>\n  <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li>\n  <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li>\n</ul>\n<p>Good to Have</p>",
    "datePosted": "2026-06-04T00:10:05.850543Z",
    "identifier": {
      "@type": "PropertyValue",
      "name": "Infosys Singapore & Australia",
      "value": "d2b55a7e-0cd7-4a60-bb2f-7a2dd518f83b"
    },
    "hiringOrganization": {
      "@type": "Organization",
      "name": "Infosys Singapore & Australia",
      "logo": "https://images.glints.com/unsafe/glints-dashboard.oss-ap-southeast-1.aliyuncs.com/company-logo/https://workablehr.s3.amazonaws.com/uploads/account/logo/564210/logo"
    },
    "jobLocation": {
      "@type": "Place",
      "address": {
        "@type": "PostalAddress",
        "addressCountry": "SG"
      },
      "geo": {
        "@type": "GeoCoordinates"
      }
    },
    "employmentType": "FULL_TIME",
    "directApply": false,
    "validThrough": "2026-07-31",
    "experienceRequirements": {
      "@type": "OccupationalExperienceRequirements",
      "monthsOfExperience": 60
    }
  },
  "sourceStructuredData": [
    {
      "@context": "https://schema.org/",
      "@type": "JobPosting",
      "title": "Senior Consultant-Senior Software Engineer",
      "description": "<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Key &nbsp;&nbsp;Responsibilities</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<ul>\n  <li>Participate in &nbsp;&nbsp;end-to-end projects for system implementation of MLS system</li>\n  <li>Engage and &nbsp;&nbsp;collaborate with Architects, Security and Development Lead to ensure solution &nbsp;&nbsp;design complies with enterprise design principles, security, and control &nbsp;&nbsp;standards</li>\n  <li>Coordinate with &nbsp;&nbsp;Technical Delivery Manager to plan technical deliverables and schedule, perform &nbsp;&nbsp;environment setup, involve in solution design and development works to meet &nbsp;&nbsp;project requirements</li>\n  <li>Escalate issues that &nbsp;&nbsp;impacts project schedule on timely basis and propose workarounds/resolutions</li>\n  <li>Create technical &nbsp;&nbsp;documents for the solutions. Compile timely, comprehensive, and accurate &nbsp;&nbsp;documentation as requested</li>\n  <li>Implement project &nbsp;&nbsp;change request and in accordance with deployment schedule</li>\n  <li>Partner with Test Management &nbsp;&nbsp;teams to ensure completion of SIT, UAT, performance / load testing and &nbsp;&nbsp;application security testing with quality result</li>\n  <li>Facilitate and &nbsp;&nbsp;provide technical and testing support before and after production deployment&nbsp;</li>\n  <li>Liaise with other &nbsp;&nbsp;units across IT and Business in the organization</li>\n  <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li>\n  <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li>\n  <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li>\n  <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li>\n  <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li>\n  <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li>\n  <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li>\n  <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li>\n  <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li>\n  <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li>\n</ul>\n<p><br>\n</p>\n<h3>Requirements</h3>\n<p><strong>Key &nbsp;&nbsp;Requirements</strong></p>\n<p>Must Have</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<ul>\n  <li>At least 5 years of &nbsp;&nbsp;experience / knowledge in Red Hat Linux, Unix Shell Scripting, Java, Jboss / WebLogic &nbsp;&nbsp;/ Tomcat</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience in Cloudera Hadoop/Hive/HBase/HDFS, Yarn, MapReduce, Spark, Sqoop, &nbsp;&nbsp;System &nbsp;&nbsp;Interfaces (SFTP, FTP, API, Rest, SOAP), environment setup and troubleshooting, &nbsp;&nbsp;Bitbucket / Git</li>\n  <li>At least 4 years of &nbsp;&nbsp;experience of coordination with cross technical teams</li>\n  <li>At least 3 years of &nbsp;&nbsp;experience in SQL, MariaDB/Oracle, NoSQL, Jenkins/DevOps CI-CD, &nbsp;&nbsp;Control-M</li>\n  <li>Ability to multitask &nbsp;&nbsp;effectively and handle large amounts of data includes data ingestion and &nbsp;&nbsp;processing</li>\n  <li>Ability to setup, &nbsp;&nbsp;manage Hadoop cluster configuration, parameters, resource allocation, &nbsp;&nbsp;monitoring and troubleshooting</li>\n  <li>Ability to resolve &nbsp;&nbsp;authentication, authorization, encryption issue among Hadoop, 3-tier &nbsp;&nbsp;architecture and LDAP</li>\n  <li>Highly driven, &nbsp;&nbsp;pro-active and a strong team player</li>\n  <li>Excellent interpersonal &nbsp;&nbsp;skills and written and verbal communication skills in English</li>\n  <li>Knowledge of &nbsp;&nbsp;networking, firewall, VPN, SSL, Kerberos, load balancing, and high &nbsp;&nbsp;availability</li>\n  <li>Experience in MS &nbsp;&nbsp;Teams, MS SharePoint, MS Office, JIRA, Aldon, Confluence, and Remedy</li>\n  <li>Experience in Python, &nbsp;&nbsp;Data Engineering, Data warehousing and analytics</li>\n</ul>\n<p>Good to Have</p>",
      "datePosted": "2026-06-04T00:10:05.850543Z",
      "identifier": {
        "@type": "PropertyValue",
        "name": "Infosys Singapore & Australia",
        "value": "d2b55a7e-0cd7-4a60-bb2f-7a2dd518f83b"
      },
      "hiringOrganization": {
        "@type": "Organization",
        "name": "Infosys Singapore & Australia",
        "logo": "https://images.glints.com/unsafe/glints-dashboard.oss-ap-southeast-1.aliyuncs.com/company-logo/https://workablehr.s3.amazonaws.com/uploads/account/logo/564210/logo"
      },
      "jobLocation": {
        "@type": "Place",
        "address": {
          "@type": "PostalAddress",
          "addressCountry": "SG"
        },
        "geo": {
          "@type": "GeoCoordinates"
        }
      },
      "employmentType": "FULL_TIME",
      "directApply": false,
      "validThrough": "2026-07-31",
      "experienceRequirements": {
        "@type": "OccupationalExperienceRequirements",
        "monthsOfExperience": 60
      }
    },
    {
      "@context": "https://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Jobs",
          "item": "https://glints.com/sg/jobs"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Locations",
          "item": "https://glints.com/sg/browse/location"
        },
        [
          {
            "@type": "ListItem",
            "position": 3,
            "name": "Singapore",
            "item": "https://glints.com/sg/job-location/singapore/singapore"
          },
          {
            "@type": "ListItem",
            "position": 4,
            "name": "West",
            "item": "https://glints.com/sg/job-location/singapore/singapore/west"
          }
        ],
        {
          "@type": "ListItem",
          "position": 5,
          "name": "Senior Consultant-Senior Software Engineer"
        }
      ]
    }
  ],
  "searchListing": {
    "title": "Senior Consultant-Senior Software Engineer",
    "createdAt": "2026-06-04T00:10:05.850543Z",
    "updatedAt": "2026-07-21T00:16:50.447401Z",
    "status": "Open",
    "company": "Infosys Singapore & Australia",
    "location": "Pioneer",
    "country": "Singapore",
    "traceInfo": "f9fc68c8-732d-44f9-adaf-a81b1ad614f4"
  },
  "search": {
    "query": "software engineer",
    "location": "Singapore",
    "position": 2,
    "page": 1
  },
  "applyUrl": "https://jobs.workable.com/view/urYa4oUp1LcDopX2fDPWjt/senior-consultant-senior-software-engineer-in-singapore-at-infosys-singapore-%26-australia",
  "url": "https://glints.com/sg/opportunities/jobs/senior-consultant-senior-software-engineer/9ffac0ce-7a50-483a-a172-f6d34d0b5577",
  "source": "Glints",
  "scrapedAt": "2026-07-21T17:57:00.640Z"
}
```

### Responsible use

Only collect publicly available job information. Respect Glints Search Scraper'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 search keyword or phrase

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

Location to search jobs in

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

Maximum number of job listings to scrape

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

Proxy settings for the scraper

## Actor input object example

```json
{
  "query": "software engineer",
  "location": "Singapore",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "SG"
  }
}
```

# 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 = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "SG"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("jobsapi/glints-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 = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "SG",
    } }

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

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

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

```

## CLI example

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jobsapi/glints-jobs-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/9SAw8uTs1HeC8FbL9/builds/ub1zWLoOV7u0uqLC1/openapi.json
