DEV Community

Get Anything
Get Anything

Posted on

How to Scrape GCC Job Salaries from Indeed & Glassdoor (UAE, Saudi & the Gulf)

Salary data is the hardest part of Gulf job data to get — and the most valuable. Most GCC job boards (Bayt, GulfTalent, NaukriGulf) rarely publish pay. The two sources that doIndeed and Glassdoor — sit behind Cloudflare and aggressive anti-bot protection, so a normal scraper just gets a "Security Check" page.

Here's how to pull structured Gulf jobs *with salary* from both, across the UAE, Saudi Arabia, Qatar, Kuwait, Bahrain and Oman — reliably.

Why Indeed and Glassdoor are worth the trouble

  • Indeed exposes a real salary range on a large share of GCC listings (often 70–80%), plus employment type, remote flag and even a company rating.
  • Glassdoor shows employer-provided salary ranges and company data that nothing else in the region matches.

If you're doing salary benchmarking, recruitment intelligence, or building a jobs product, this is the data that makes it credible.

The blocker — and how it's solved

Both sites use Cloudflare's "Just a moment…" challenge. Standard HTTP clients (and even patched headless browsers) only get through intermittently. The reliable fix is a hardened, fingerprint-spoofing browser that passes the challenge the way a real visitor does. That's already built into these two ready-made tools:

Give each a keyword and one or more countries, and get back structured jobs with salary, location, company and apply links.

Example (Indeed) output

{
  "title": "Senior Accountant",
  "company": "Pure Water Technology",
  "companyRating": 3.4,
  "city": "Abu Dhabi",
  "country": "United Arab Emirates",
  "employmentType": "full-time",
  "salaryText": "AED 5,000 - AED 8,000 a month",
  "salaryMin": 5000,
  "salaryCurrency": "AED",
  "link": "https://ae.indeed.com/viewjob?jk=..."
}
Enter fullscreen mode Exit fullscreen mode

Use it inside ChatGPT or Claude

Both tools are AI-ready via the Apify MCP server. Connect the Actor and ask in plain language:

"Find accountant jobs in Dubai paying over AED 10,000 a month."

"What do finance roles in Riyadh pay?"

Want the whole GCC job market in one query?

If you care about coverage more than salary specifically, start with the free flagship:

👉 GCC Jobs Searchfree — searches Bayt, GulfTalent, NaukriGulf, Foundit and Tanqeeb together, with filters for field, experience, city, salary and company, and full recruitment-agency coverage. Then layer Indeed/Glassdoor on top for salary depth.

Common use cases

  • Salary benchmarking by role, city and country
  • Recruitment intelligence — who's hiring, at what level, for how much
  • Job boards & aggregators that need salary-enriched listings
  • Market research on Gulf hiring and compensation trends

Legitimacy

These read public search pages — the same pages any visitor sees — with no login and no paywall bypass.


Tools: Indeed GCC Scraper · Glassdoor GCC Scraper · GCC Jobs Search (free). Part of a suite of Gulf-focused public-data tools by Get Anything.

Top comments (0)