Discover/Indeed API
live

Indeed APIindeed.co.in

Search Indeed India job listings, get full job details, company profiles, salary guides, and autocomplete suggestions via a single REST API.

Endpoint health
verified 6d ago
get_location_suggestions
get_company_details
get_job_details
get_job_search_autocomplete
search_jobs
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Indeed API?

This API exposes 6 endpoints covering Indeed India (in.indeed.com), letting you search job listings, retrieve full job descriptions, look up company profiles, and pull salary statistics by role. The search_jobs endpoint returns paginated results with title, company, location, salary, and a direct link for each listing. Companion endpoints handle autocomplete for both job queries and Indian city names, making it straightforward to build location-aware job search experiences.

Try it
Sort order for results
Job search keyword or title (e.g. 'python developer', 'data analyst')
Result offset for pagination (0, 10, 20, etc.)
Search radius in km from location
Filter for remote jobs only
Filter jobs posted within N days (e.g. 1, 3, 7, 14)
Job type filter
Location to search in, such as a city or state (e.g. 'Mumbai', 'Bangalore')
Salary range filter code
api.parse.bot/scraper/df8ec4fc-0221-482a-8a6e-1ac3f21c7522/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/df8ec4fc-0221-482a-8a6e-1ac3f21c7522/search_jobs?sort=relevance&query=python+developer&start=0&radius=25&remote=True&fromage=1&job_type=fulltime&location=Mumbai' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace indeed-co-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
Indeed India API - Usage Example

Get your API key from: https://parse.bot/settings
"""
from parse_apis.indeed_india_api import IndeedIndia, Sort, JobType

indeed = IndeedIndia()

# Search for jobs with sorting
for job in indeed.jobs.search(query="data analyst", location="Bangalore", sort=Sort.DATE):
    print(job.title, job.company, job.salary, job.location)

    # Get full details for a job
    detail = job.details()
    print(detail.description_text, detail.date_published)
    if detail.salary_info:
        print(detail.salary_info.salary_currency, detail.salary_info.salary_min, detail.salary_info.salary_max)
    break

# Company lookup
company = indeed.companies.get(slug="Google")
print(company.about_company, company.about_ceo)

# Salary guide
guide = indeed.salaryguides.get(slug="software-engineer")
print(guide.title_info, guide.salary_aggregate)

# Job title autocomplete
for suggestion in indeed.jobsuggestions.search(query="python"):
    print(suggestion.suggestion, suggestion.matches)

# Location autocomplete
for loc in indeed.locationsuggestions.search(query="Mum"):
    print(loc.suggestion, loc.matches)
All endpoints · 6 totalmissing one? ·

Search for job listings on Indeed India by keyword and location. Returns a paginated list of jobs with basic details including title, company, location, salary, and snippet. Pagination via start offset (0, 10, 20, ...). Each result includes a job_key usable with get_job_details for full information.

Input
ParamTypeDescription
sortstringSort order for results
querystringJob search keyword or title (e.g. 'python developer', 'data analyst')
startintegerResult offset for pagination (0, 10, 20, etc.)
radiusintegerSearch radius in km from location
remotebooleanFilter for remote jobs only
fromageintegerFilter jobs posted within N days (e.g. 1, 3, 7, 14)
job_typestringJob type filter
locationstringLocation to search in, such as a city or state (e.g. 'Mumbai', 'Bangalore')
salary_rangestringSalary range filter code
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job listing objects with job_key, title, company, location, salary, snippet, link",
    "page": "integer current page number (1-based)",
    "total_count": "integer total number of matching jobs"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "link": "https://in.indeed.com/viewjob?jk=fe6c717fb1fc879d",
          "title": "Python AI Developer",
          "salary": "₹12,922.75 - ₹65,783.06 a month",
          "company": "Elovient Software Solutions",
          "job_key": "fe6c717fb1fc879d",
          "snippet": "This role is focused on leveraging AI...",
          "job_type": [],
          "location": "Mumbai, Maharashtra",
          "pub_date": 1779253200000,
          "company_rating": 0,
          "company_review_count": 0
        }
      ],
      "page": 1,
      "total_count": 0
    },
    "status": "success"
  }
}

About the Indeed API

Job Search and Listing Details

The search_jobs endpoint accepts a query keyword and optional location, then returns an array of job objects — each carrying a job_key, title, company, location, salary, snippet, and link. You can narrow results by job_type (fulltime, parttime, contract, internship, temporary), set a radius in kilometers, filter to remote roles only, and limit recency with fromage (jobs posted within N days). Pagination is handled through the start offset parameter, and the response includes total_count so you can calculate how many pages exist.

The get_job_details endpoint takes a job_key from search results and returns the complete record: description_html, description_text, structured salary_info (min, max, currency, type), a benefits array, an attributes array, location with a formatted address, and hiring_insights covering posting age and candidate count.

Company and Salary Data

get_company_details accepts a company slug (e.g. Infosys, Tcs) and returns aboutCompany — industry, founded year, employee range, revenue, headquarters, and a description — alongside aboutCeo with name and photo URLs, and relatedLinks for related companies. The get_salary_guide endpoint takes a hyphenated job title slug such as software-engineer and returns salary_aggregate broken down by pay period (HOURLY, DAILY, WEEKLY, MONTHLY, YEARLY), each with mean, median, min, and max values, plus top_companies hiring for that role in India.

Autocomplete Endpoints

Two lightweight autocomplete endpoints support search UIs. get_job_search_autocomplete returns up to 10 job title suggestions for a partial query, each with the full suggestion string and a matches array of {start, end} indices so you can highlight the matched characters. get_location_suggestions does the same for Indian cities, districts, and states — useful for validating user-entered locations before passing them to search_jobs.

Reliability & maintenanceVerified

The Indeed API is a managed, monitored endpoint for indeed.co.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when indeed.co.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official indeed.co.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate Indeed India job postings by city and job type for a regional employment dashboard
  • Display salary ranges for a given role using salary_aggregate MONTHLY and YEARLY figures from get_salary_guide
  • Build a typeahead search bar that pre-validates both job titles and Indian city names before submitting a query
  • Enrich a company directory with industry, headcount range, revenue, and CEO info via get_company_details
  • Track how many candidates have applied to a listing using hiring_insights from get_job_details
  • Filter remote contract roles posted in the last 7 days using the remote, job_type, and fromage parameters together
  • Compile a benefits comparison across multiple job listings using the benefits array returned by get_job_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Indeed have an official developer API?+
Indeed previously offered a publisher API (publisher.indeed.com), but it has been deprecated and is no longer accepting new registrations. This Parse API provides structured access to Indeed India job data without requiring publisher credentials.
What does `get_job_details` return beyond a standard search result?+
It returns the full description_html and description_text, a structured salary_info object (min, max, currency, type), a benefits array with labelled benefit keys, an attributes array, a formatted location object, and hiring_insights that includes posting age and the number of candidates who have applied. Search results only carry a brief snippet and basic metadata.
How does pagination work in `search_jobs`?+
Use the start parameter as an offset: 0 for the first page, 10 for the second, 20 for the third, and so on. The response includes total_count (the total number of matching jobs) and page (the current 1-based page number), so you can calculate how many pages are available before fetching them.
Does the API cover Indeed job reviews or interview Q&A?+
Not currently. The API covers job listings, job details, company profiles (description, industry, CEO), and salary guides. User-submitted company reviews and interview questions are not included in any current endpoint. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Can I search jobs outside India using this API?+
The API is scoped to in.indeed.com (Indeed India) and returns results for Indian locations. It does not cover Indeed's other country-specific domains. You can fork the API on Parse and revise the base URL and location parameters to target a different Indeed region.
Page content last updated . Spec covers 6 endpoints from indeed.co.in.
Related APIs in JobsSee all →
in.indeed.com API
in.indeed.com API
indeed.com API
Search and discover job opportunities on Indeed while accessing detailed job descriptions, company profiles, and salary insights all in one place. Get comprehensive career information including specific compensation data to help you find and evaluate the right job opportunity for you.
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
indeed.co.uk API
Search for jobs across Indeed UK and retrieve detailed information including job listings, application links, and company profiles. Access comprehensive job data to compare opportunities, learn about employers, and find direct application pathways.
de.indeed.com API
Access data from de.indeed.com.
uk.indeed.com API
Search for job listings across Indeed UK and retrieve complete job details including descriptions, requirements, salary information, and application links. Filter by job type, experience level, location, remote preference, and more to find relevant opportunities.
fr.indeed.com API
Search job listings and get detailed information about positions, companies, and alternance opportunities on Indeed France, all in one place. Access comprehensive company profiles and job details to find your next career move or research employers.
naukri.com API
naukri.com API
Indeed India API – Jobs, Salaries & Companies · Parse