An open API service indexing awesome lists of open source software.

https://github.com/oxylabs/indeed-scraper

Indeed Scraper API is a robust tool designed for extracting job data from Indeed. It helps developers, researchers, and businesses in job market analysis, automation, and more.
https://github.com/oxylabs/indeed-scraper

indeed indeed-scraper indeed-scraper-api indeed-scraping indeed-web-scraper

Last synced: about 2 months ago
JSON representation

Indeed Scraper API is a robust tool designed for extracting job data from Indeed. It helps developers, researchers, and businesses in job market analysis, automation, and more.

Awesome Lists containing this project

README

          

# Indeed Scraper API

[![Oxylabs promo code](https://raw.githubusercontent.com/oxylabs/product-integrations/refs/heads/master/Affiliate-Universal-1090x275.png)](https://oxylabs.io/pages/gitoxy?utm_source=877&utm_medium=affiliate&groupid=877&utm_content=indeed-scraper-github&transaction_id=102f49063ab94276ae8f116d224b67)

[![](https://dcbadge.limes.pink/api/server/Pds3gBmKMH?style=for-the-badge&theme=discord)](https://discord.gg/Pds3gBmKMH) [![YouTube](https://img.shields.io/badge/YouTube-Oxylabs-red?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/@oxylabs)

Oxylabs' [Indeed Scraper](https://oxylabs.io/products/scraper-api/web/indeed?utm_source=github&utm_medium=repositories&utm_campaign=product) is a data gathering solution allowing you to extract real-time information from an Indeed website effortlessly. This brief guide showcases how Indeed Scraper works, along with code examples to help you better understand how to use it hassle-free.

### How it works

You can get Indeed results by providing your own URLs to our service. We can return the HTML for any page you like.

#### Python code example

The example below illustrates how you can get HTML of Indeed page.

```python
import requests
from pprint import pprint

# Structure payload.
payload = {
'source': 'universal',
'url': 'https://www.indeed.com/companies?from=gnav-homepage'
}

# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('user', 'pass1'),
json=payload,
)

# Instead of response with job status and results url, this will return the
# JSON response with the result.
pprint(response.json())
```
Find code examples for other programming languages [**here**](https://github.com/oxylabs/indeed-scraper/tree/main/code%20examples)

#### Output Example
```json
{
"results": [
{
"content": "",
"created_at": "2025-01-10 09:35:33",
"updated_at": "2025-01-10 09:35:35",
"page": 1,
"url": "https://www.indeed.com/companies?from=gnav-homepage",
"job_id": "7150782209677353986",
"status_code": 200
}
]
}
```
With our Indeed Scraper, you can seamlessly extract public data from any Indeed web page. Gather crucial job-related information such as job titles, companies, salaries, or job descriptions, to analyze the job market trends and stay ahead of your competitors. If you have any inquiries, feel free to reach our support team via live chat or email us at support@oxylabs.io.