# 🏆 Best Cheapest Rigzone Oil & Gas Job Scraper 🏆 (`claygenius/rigzone-energy-jobs-scraper`) Actor

Scrape oil, gas and energy jobs from Rigzone.com — the leading energy-industry job board. Structured output with company, location, employment type, industry, full descriptions and posted dates. Ideal for energy recruiters and staffing agencies.

- **URL**: https://apify.com/claygenius/rigzone-energy-jobs-scraper.md
- **Developed by:** [Muhammad Shamshad Aslam](https://apify.com/claygenius) (community)
- **Categories:** Jobs, AI, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Rigzone Oil & Gas Jobs Scraper — Global Energy Hiring

Scrape jobs from [Rigzone.com](https://www.rigzone.com), the leading job board for the **oil, gas and energy industry**. Energy recruiters and staffing agencies pay a premium for this data — and nobody else covers it on Apify. HTTP-only, fast and cheap.

### Input

| Field | Type | Description |
|---|---|---|
| `startUrls` | array | Rigzone search URLs (`…/oil/jobs/search/?sk=drilling&sl=texas`) — keyword and location reproduced exactly. Takes precedence over keyword. |
| `keyword` | string | Discipline or role, e.g. `drilling`, `subsea engineer`, `HSE`, `pipeline`. |
| `location` | string | Optional location filter (`united states`, `aberdeen`, `texas`). |
| `maxItems` | integer | Cap on results. Empty (or `0`) = scrape all. |
| `fetchDetails` | boolean | Visit each job for the full description + employment type, industry, valid-through and salary currency from JSON-LD (default on). |
| `proxyConfig` | object | Optional — usually works without a proxy. |

### Output

```json
{
  "id": "1284679",
  "title": "Environmental Field Specialist",
  "company": "NES Fircroft",
  "location": "Houston, TX, United States",
  "contact_name": null,
  "industry_experience_years": 0,
  "skills": ["Environmental Engineer"],
  "snippet": "environmental coordination for pipeline interconnections …",
  "posted_date": "May 01, 2026",
  "is_featured_employer": false,
  "company_logo": "https://images.rigzone.com/images/jobs/companylogos/…",
  "employment_type": "CONTRACTOR",
  "industry": "Oil and Gas",
  "valid_through": "2026-07-30",
  "date_posted_iso": "2026-05-01",
  "salary_currency": "USD",
  "description": "…full job description…",
  "url": "https://www.rigzone.com/oil/jobs/postings/1284679_Environmental_Field_Specialist/",
  "source_platform": "rigzone.com",
  "scraped_at": "2026-07-16T09:00:00.000Z"
}
```

### Use cases

- **Energy recruiting & staffing** — monitor fresh oil/gas/renewables openings by discipline and location; high-value, high-churn roles
- **Market intelligence** — which majors and service companies are hiring, where, for what
- **Talent sourcing** — full descriptions, skills, company and location, deduped and export-ready
- **Job aggregation** — structured energy-industry listings for niche boards

# Actor input Schema

## `startUrls` (type: `array`):

Rigzone search URLs (e.g. https://www.rigzone.com/oil/jobs/search/?sk=drilling) — keyword, location and all filters reproduced exactly. When set, keyword search is skipped.

## `keyword` (type: `string`):

Job title, skill or discipline, e.g. 'drilling', 'subsea engineer', 'HSE'.

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

Optional location filter (e.g. 'united states', 'texas', 'aberdeen'). Used only with keyword mode.

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

Maximum number of jobs to scrape. Leave empty (or 0) to scrape ALL results.

## `fetchDetails` (type: `boolean`):

Visit each job page for the full description, employment type, industry, posted date and salary currency (from JSON-LD). Slower but much richer.

## `proxyConfig` (type: `object`):

Optional. Rigzone usually works without a proxy.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.rigzone.com/oil/jobs/search/?sk=drilling"
  ],
  "maxItems": 10,
  "fetchDetails": true,
  "proxyConfig": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `jobs` (type: `string`):

All scraped jobs: title, company, location, employment type, industry, full description, posted date and job URL.

# 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 = {
    "startUrls": [
        "https://www.rigzone.com/oil/jobs/search/?sk=drilling"
    ],
    "maxItems": 10,
    "proxyConfig": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("claygenius/rigzone-energy-jobs-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 = {
    "startUrls": ["https://www.rigzone.com/oil/jobs/search/?sk=drilling"],
    "maxItems": 10,
    "proxyConfig": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("claygenius/rigzone-energy-jobs-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 '{
  "startUrls": [
    "https://www.rigzone.com/oil/jobs/search/?sk=drilling"
  ],
  "maxItems": 10,
  "proxyConfig": {
    "useApifyProxy": false
  }
}' |
apify call claygenius/rigzone-energy-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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