Discover/Monsterindia API
live

Monsterindia APImonsterindia.com

Search and retrieve job listings from foundit.in (Monster India) via 4 endpoints. Filter by location, experience, and freshness. Get full job details, skills, and salary.

Endpoint health
verified 3d ago
search_jobs
get_job_details
get_top_locations
get_popular_cities
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Monsterindia API?

This API exposes 4 endpoints for searching and retrieving job listings from foundit.in (formerly Monster India). The search_jobs endpoint accepts keyword queries and returns paginated results with title, company, salary, skills, and experience requirements. Companion endpoints cover full job details, popular cities, and top locations — giving you the building blocks for job aggregators, market analysis tools, or recruiting dashboards.

Try it
Number of results to return per page.
Search keywords matching job titles, skills, or company names.
Offset for pagination (number of results to skip).
City or location name to filter results (e.g. 'Bengaluru', 'Mumbai', 'Delhi NCR', 'Remote').
Filter jobs posted within this many days. Accepted values: 1, 3, 7, 15, or 30.
Minimum years of experience required for the job.
api.parse.bot/scraper/9c251bb8-c5d3-4322-89ca-e5590e408a1b/<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/9c251bb8-c5d3-4322-89ca-e5590e408a1b/search_jobs?limit=20&query=python+developer&offset=0&location=Bengaluru&freshness=1&experience=3' \
  -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 monsterindia-com-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.

"""Walkthrough: Foundit (Monster India) SDK — search jobs, drill into details, explore cities."""
from parse_apis.foundit_monster_india_job_api import Foundit, Freshness, JobNotFound

client = Foundit()

# Search for recent Python jobs in Bengaluru, capped at 5 results.
for job in client.jobs.search(query="python developer", location="Bengaluru", freshness=Freshness.ONE_WEEK, limit=5):
    print(job.title, job.company_name, job.active)

# Drill into the first result for full details including views and similar jobs.
summary = client.jobs.search(query="data science", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.views, detail.description[:100])
    for similar in detail.similar_jobs[:2]:
        print(similar.title, similar.company_name)

# Point-lookup by ID — wrap in typed error handling.
try:
    job = client.jobs.get(job_id="55416973")
    print(job.title, job.company_name, job.jd_url)
except JobNotFound as exc:
    print(f"Job not found: {exc.job_id}")

# List popular hiring cities for use as filter values.
for city in client.cities.list_popular(limit=5):
    print(city.name)

print("exercised: jobs.search / jobs.get / summary.details / cities.list_popular")
All endpoints · 4 totalmissing one? ·

Full-text search over foundit.in job listings. query matches job titles, skills, and company names. Results paginate via offset; each page returns up to limit items. Filters narrow by location, experience level, and posting freshness. Returns job summaries with id, title, company, locations, experience range, salary, and skills.

Input
ParamTypeDescription
limitintegerNumber of results to return per page.
queryrequiredstringSearch keywords matching job titles, skills, or company names.
offsetintegerOffset for pagination (number of results to skip).
locationstringCity or location name to filter results (e.g. 'Bengaluru', 'Mumbai', 'Delhi NCR', 'Remote').
freshnessintegerFilter jobs posted within this many days. Accepted values: 1, 3, 7, 15, or 30.
experienceintegerMinimum years of experience required for the job.
Response
{
  "type": "object",
  "fields": {
    "data": "array of job listing objects with id, title, company, locations, experience, salary, skills, description, jobTypes, employmentTypes, postedAt, and jdUrl",
    "meta": "object containing paging info (total, limit, cursors) and search metadata (resultId, searchId)"
  },
  "sample": {
    "data": {
      "data": [
        {
          "id": "55416973",
          "jdUrl": "/job/python-developer-tata-consultancy-services-bengaluru-bangalore-55416973",
          "title": "Python Developer",
          "company": {
            "name": "Tata Consultancy Services",
            "companyId": 332041
          },
          "itSkills": [
            {
              "text": "Numpy"
            },
            {
              "text": "Pandas"
            },
            {
              "text": "Python"
            }
          ],
          "jobTypes": [
            "Permanent Job"
          ],
          "postedAt": 1781107465000,
          "activeJob": true,
          "locations": [
            {
              "city": "Bengaluru / Bangalore",
              "state": "Karnataka",
              "country": "India"
            }
          ],
          "companyName": "Tata Consultancy Services",
          "description": "<ol><li>Must have 6+ years of IT experience</li></ol>",
          "currencyCode": "INR",
          "maximumSalary": {
            "currency": "INR",
            "absoluteValue": 0
          },
          "minimumSalary": {
            "currency": "INR",
            "absoluteValue": 0
          },
          "employmentTypes": [
            "Full time"
          ],
          "totalApplicants": 8,
          "maximumExperience": {
            "years": 8
          },
          "minimumExperience": {
            "years": 6
          }
        }
      ],
      "meta": {
        "paging": {
          "limit": 5,
          "total": 2248,
          "cursors": {
            "next": "5",
            "previous": "0"
          }
        },
        "resultId": "cf05295d-f27c-4327-a387-f30ba424ecff",
        "searchId": "22e379c1c8a1f994567f7c4639eaebb5"
      }
    },
    "status": "success"
  }
}

About the Monsterindia API

Search and Filter Jobs

The search_jobs endpoint accepts a required query string matched against job titles, skills, and company names. Optional filters include location (e.g. 'Bengaluru', 'Delhi NCR', 'Remote'), experience (minimum years), and freshness (jobs posted within 1, 3, 7, 15, or 30 days). Results paginate via offset and limit. Each result object in the data array includes id, title, company, locations, salary, skills, description, jobTypes, and employmentType. The meta object exposes total count and cursor-based paging alongside search identifiers (resultId, searchId).

Full Job Details

get_job_details takes a job_id (obtained from search_jobs results) and returns a single, fully-hydrated listing. The response adds fields not present in search results: an HTML description, a views integer, an activeJob boolean, nested company details (including companyId, city, and industries), and a similarJobs object containing a paginated array of related listings. This endpoint is the right call when you need the complete job description text or want to surface related opportunities.

Location Reference Endpoints

get_popular_cities and get_top_locations both return a data array of location name strings with no required parameters. These two endpoints return the same location set and are intended for populating location filter dropdowns when building search interfaces against search_jobs. They act as a canonical reference for valid location strings accepted by the search endpoint.

Reliability & maintenanceVerified

The Monsterindia API is a managed, monitored endpoint for monsterindia.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when monsterindia.com 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 monsterindia.com 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
3d ago
Latest check
4/4 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 Indian tech job listings filtered by city and experience level for a niche job board
  • Track salary ranges and required skills for specific roles across foundit.in over time
  • Build a recruiter dashboard that surfaces similar jobs alongside a viewed listing using the similarJobs field
  • Power location-aware job alerts by combining get_popular_cities with search_jobs freshness filters
  • Analyze which companies are actively hiring in specific Indian metros using company and location fields
  • Identify trending skills in job descriptions by parsing the skills arrays from search results
  • Monitor whether a specific job listing is still active using the activeJob boolean from 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 foundit.in (Monster India) offer an official developer API?+
Foundit.in does not publish a public developer API or API documentation for third-party access to its job listings data.
What does `get_job_details` return that `search_jobs` does not?+
get_job_details returns several fields absent from search results: the full HTML description, a views count, an activeJob boolean, structured company details (including companyId and industries), and a similarJobs object with a paginated array of related listings. Search results carry only summary fields like title, salary, skills, and locations.
Are there limits on how the `freshness` filter works in `search_jobs`?+
The freshness parameter only accepts specific integer values: 1, 3, 7, 15, or 30. Arbitrary day ranges are not supported. Omitting the parameter returns results regardless of posting date.
Does the API cover job applications or candidate profiles?+
No. The API covers job search, job details, and location reference data. It does not expose endpoints for submitting applications, accessing candidate profiles, or retrieving employer accounts. You can fork this API on Parse and revise it to add endpoints targeting those capabilities if the underlying data becomes accessible.
Can I retrieve company-level listings — all jobs from a single employer?+
Not directly. The search_jobs endpoint matches company names via the query parameter, so you can query by company name, but there is no dedicated company-profile or employer-listings endpoint. The API covers search and individual job detail pages. You can fork it on Parse and revise to add a company-specific listing endpoint.
Page content last updated . Spec covers 4 endpoints from monsterindia.com.
Related APIs in JobsSee all →
monster.com API
Search and retrieve job listings from Monster.com. Supports keyword and location-based search with structured results including job descriptions, salary ranges, company info, and employment details. Also provides access to popular job categories.
indeed.co.in API
Search for jobs across Indeed India and access detailed information about listings, companies, salaries, and locations to help with your job hunt. Get autocomplete suggestions for job titles and places, plus salary guides and company details to make informed career decisions.
in.indeed.com API
in.indeed.com API
timesjobs.com API
Search and browse job listings from TimesJobs.com to find positions by role, category, and company, while discovering popular job roles, featured employers, and detailed job information. Filter opportunities using available facets and explore career statistics to match your skills with the right opportunities.
naukri.com API
naukri.com API
shine.com API
Search and discover job listings on Shine.com with detailed information including job descriptions, categories, locations, and top hiring companies. Find similar job opportunities and explore roles across different industries and geographical areas to match your career goals.
wellfound.com API
Search and discover startup jobs, company profiles, and trending opportunities on Wellfound by role and location, with detailed job information and autocomplete suggestions to streamline your job search. Access comprehensive company data and stay updated on what's trending in the startup ecosystem.
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.