{"id":20710128,"url":"https://github.com/oxylabs/indeed-scraper","last_synced_at":"2026-04-19T08:31:22.997Z","repository":{"id":216457781,"uuid":"741385358","full_name":"oxylabs/indeed-scraper","owner":"oxylabs","description":"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.","archived":false,"fork":false,"pushed_at":"2025-09-25T09:03:05.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-25T09:28:51.326Z","etag":null,"topics":["indeed","indeed-scraper","indeed-scraper-api","indeed-scraping","indeed-web-scraper"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oxylabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-10T09:35:50.000Z","updated_at":"2025-09-25T09:03:09.000Z","dependencies_parsed_at":"2025-02-11T14:25:26.928Z","dependency_job_id":"f5733a08-443b-449c-a8f2-8d6429557050","html_url":"https://github.com/oxylabs/indeed-scraper","commit_stats":null,"previous_names":["oxylabs/indeed-scraper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oxylabs/indeed-scraper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Findeed-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Findeed-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Findeed-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Findeed-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oxylabs","download_url":"https://codeload.github.com/oxylabs/indeed-scraper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Findeed-scraper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32000179,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["indeed","indeed-scraper","indeed-scraper-api","indeed-scraping","indeed-web-scraper"],"created_at":"2024-11-17T02:09:57.563Z","updated_at":"2026-04-19T08:31:22.991Z","avatar_url":"https://github.com/oxylabs.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Indeed Scraper API\n\n[![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\u0026utm_medium=affiliate\u0026groupid=877\u0026utm_content=indeed-scraper-github\u0026transaction_id=102f49063ab94276ae8f116d224b67)\n\n[![](https://dcbadge.limes.pink/api/server/Pds3gBmKMH?style=for-the-badge\u0026theme=discord)](https://discord.gg/Pds3gBmKMH) [![YouTube](https://img.shields.io/badge/YouTube-Oxylabs-red?style=for-the-badge\u0026logo=youtube\u0026logoColor=white)](https://www.youtube.com/@oxylabs)\n\nOxylabs' [Indeed Scraper](https://oxylabs.io/products/scraper-api/web/indeed?utm_source=github\u0026utm_medium=repositories\u0026utm_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.\n\n### How it works\n\nYou can get Indeed results by providing your own URLs to our service. We can return the HTML for any page you like.\n\n#### Python code example\n\nThe example below illustrates how you can get HTML of Indeed page.\n\n```python\nimport requests\nfrom pprint import pprint\n\n# Structure payload.\npayload = {\n    'source': 'universal',\n    'url': 'https://www.indeed.com/companies?from=gnav-homepage'\n}\n\n# Get response.\nresponse = requests.request(\n    'POST',\n    'https://realtime.oxylabs.io/v1/queries',\n    auth=('user', 'pass1'),\n    json=payload,\n)\n\n# Instead of response with job status and results url, this will return the\n# JSON response with the result.\npprint(response.json())\n```\nFind code examples for other programming languages [**here**](https://github.com/oxylabs/indeed-scraper/tree/main/code%20examples)\n\n#### Output Example\n```json\n{\n  \"results\": [\n    {\n      \"content\": \"\u003c!DOCTYPE html\u003e\u003chtml lang=\\\"en\\\" dir=\\\"ltr\\\"\u003e\u003chead\u003e\u003cmeta charSet=\\\"utf-8\\\"/\u003e\u003clink rel=\\\"preconnect\\\" href=\\\"h ... \u003c/html\u003e\",\n      \"created_at\": \"2025-01-10 09:35:33\",\n      \"updated_at\": \"2025-01-10 09:35:35\",\n      \"page\": 1,\n      \"url\": \"https://www.indeed.com/companies?from=gnav-homepage\",\n      \"job_id\": \"7150782209677353986\",\n      \"status_code\": 200\n    }\n  ]\n}\n```\nWith 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxylabs%2Findeed-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foxylabs%2Findeed-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxylabs%2Findeed-scraper/lists"}