Discover/Indeed API
live

Indeed APIfr.indeed.com

Search fr.indeed.com job listings, retrieve full job details, find alternance offers, and fetch company profiles via a structured JSON API.

Endpoint health
verified 11h ago
search_alternance_today
get_company_profile
search_jobs
get_job_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Indeed API?

This API gives structured access to fr.indeed.com across 4 endpoints: search job listings by keyword and location, retrieve full job details including HTML description and benefits, query today's alternance offers, and pull company profiles with ratings and review counts. The search_jobs endpoint alone returns up to 16 fields per listing including job_key, salary_snippet, pub_date, and snippet, making it practical for job aggregators and recruiting tools targeting the French market.

Try it
Job title or keywords (e.g. 'comptable', 'developpeur')
Result offset for pagination (increments of 10-15).
Limit results to jobs posted within the last N days (e.g. 1 for today, 7 for last week)
Location to search in (e.g. 'Paris', 'Lyon')
api.parse.bot/scraper/4154d0ab-67c2-49be-b699-ebadff95afcb/<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/4154d0ab-67c2-49be-b699-ebadff95afcb/search_jobs?query=developpeur&start=0&fromage=7&location=Paris' \
  -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 fr-indeed-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.

from parse_apis.indeed_france_job_scraper_api import IndeedFrance, JobSummary, Job, Company

client = IndeedFrance()

# Search for developer jobs in Paris
for job_summary in client.jobsummaries.search(query="développeur", location="Paris"):
    print(job_summary.title, job_summary.company_name, job_summary.location)

    # Get full job details
    details = job_summary.details()
    print(details.title, details.description_text, details.salary_snippet)

    # If company slug is available, fetch company profile
    if details.company_slug:
        company = client.companies.get(company_slug=details.company_slug)
        print(company.company_name, company.rating, company.sector)

# Search alternance jobs posted today
for alt_job in client.jobsummaries.search_alternance_today(location="Lyon"):
    print(alt_job.title, alt_job.pub_date)

# Fetch a company directly by slug
matera = client.companies.get(company_slug="Matera")
print(matera.company_name, matera.rating, matera.reviews_count, matera.jobs_count)
All endpoints · 4 totalmissing one? ·

Search for job listings on Indeed France by keyword and location. Returns paginated results (approximately 15 per page) with job keys, titles, companies, locations, salary snippets, and publication dates. Pagination uses an offset-based system via the start parameter. An empty query returns all recent listings in the specified location.

Input
ParamTypeDescription
querystringJob title or keywords (e.g. 'comptable', 'developpeur')
startintegerResult offset for pagination (increments of 10-15).
fromageintegerLimit results to jobs posted within the last N days (e.g. 1 for today, 7 for last week)
locationstringLocation to search in (e.g. 'Paris', 'Lyon')
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of results returned on this page",
    "query": "string the search query used",
    "results": "array of job listing objects with job_key, title, company_name, location, salary_snippet, relative_date, pub_date, snippet",
    "location": "string the location searched",
    "page_start": "integer the offset used"
  },
  "sample": {
    "data": {
      "count": 15,
      "query": "developpeur",
      "results": [
        {
          "title": "Developer Fullstack (H/F)",
          "job_key": "b57ca67fa132a6a1",
          "snippet": "Vous intervenez sur du developpement fullstack...",
          "location": "92110 Clichy",
          "pub_date": 1780894800000,
          "company_name": "Weezevent World",
          "relative_date": "il y a 1 jour",
          "salary_snippet": null
        }
      ],
      "location": "Paris",
      "page_start": 0
    },
    "status": "success"
  }
}

About the Indeed API

Job Search and Listing Data

The search_jobs endpoint accepts a query string (e.g. 'développeur', 'comptable'), a location (e.g. 'Paris', 'Lyon'), a fromage parameter to filter by recency in days, and a start offset for pagination. Results include job_key, title, company_name, location, salary_snippet, relative_date, pub_date, and a short snippet. The first page returns approximately 15–16 results; paginate by incrementing start in steps of 10–15.

Job Detail Retrieval

Pass a job_key from search_jobs results to get_job_details to fetch the full record. The response includes description_html (the complete job description as HTML), benefits (array or null), job_type (array or null), salary_snippet, pub_date, company_name, and company_slug. The company_slug field feeds directly into get_company_profile.

Alternance and Company Endpoints

search_alternance_today is a scoped variant of search_jobs that fixes query='alternance' and fromage=1, returning apprenticeship listings posted in the last 24 hours. It accepts location and start for filtering and pagination, and returns the same listing object shape as search_jobs. get_company_profile takes a company_slug and returns company_name, rating, sector, jobs_count, and reviews_count — useful for enriching job results with employer context.

Reliability & maintenanceVerified

The Indeed API is a managed, monitored endpoint for fr.indeed.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fr.indeed.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 fr.indeed.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
11h 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 French job listings by role and city using search_jobs with query and location params
  • Build a daily alternance digest by polling search_alternance_today with fromage=1
  • Enrich a job board with full descriptions and benefits via get_job_details using description_html and benefits
  • Score employers for a recruiting tool by pulling rating and reviews_count from get_company_profile
  • Track new job postings in a specific sector by filtering search_jobs results by pub_date
  • Cross-reference company sector and open headcount using sector and jobs_count from get_company_profile
  • Monitor salary ranges for French tech roles by collecting salary_snippet across paginated search_jobs calls
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 has historically offered a publisher API, but access has been restricted and is not openly available to new developers. There is no self-serve public API currently accepting new registrations for fr.indeed.com data.
What does `get_job_details` return that `search_jobs` does not?+
get_job_details returns the full description_html field containing the complete job description as HTML, a benefits array, a job_type array, and the company_slug used to call get_company_profile. The search_jobs results only include a short snippet, not the full description.
How does pagination work in `search_jobs`?+
Pass an integer to the start parameter to offset results. Indeed France returns roughly 15–16 results per page, so increment start by 10–15 on each subsequent call. There is no explicit total-pages field; use the count field in the response to estimate how many pages exist.
Does the API cover job applications or saved jobs from a user account?+
No. The API covers public job listings, job detail pages, alternance listings, and public company profiles. User account data such as applications, saved jobs, or résumé information is not exposed. You can fork this API on Parse and revise it to add endpoints targeting other public fr.indeed.com pages if needed.
Are salary data and benefits always present in job detail responses?+
No. Both salary_snippet and benefits can be null in get_job_details responses, since many French job postings on Indeed do not include that information. job_type can also be null. Always handle null values in these fields when processing results.
Page content last updated . Spec covers 4 endpoints from fr.indeed.com.
Related APIs in JobsSee all →
in.indeed.com API
in.indeed.com API
de.indeed.com API
Access data from de.indeed.com.
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.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.
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.
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.
hellowork.com API
Search and browse job listings and company profiles on HelloWork, France's leading job board. Filter by keyword, location, contract type, salary, and more.
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.