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.
- Host: GitHub
- URL: https://github.com/oxylabs/indeed-scraper
- Owner: oxylabs
- Created: 2024-01-10T09:35:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-25T09:03:05.000Z (9 months ago)
- Last Synced: 2025-09-25T09:28:51.326Z (9 months ago)
- Topics: indeed, indeed-scraper, indeed-scraper-api, indeed-scraping, indeed-web-scraper
- Language: Java
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Indeed Scraper API
[](https://oxylabs.io/pages/gitoxy?utm_source=877&utm_medium=affiliate&groupid=877&utm_content=indeed-scraper-github&transaction_id=102f49063ab94276ae8f116d224b67)
[](https://discord.gg/Pds3gBmKMH) [](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.