Discover/emploi.ma API
live

emploi.ma APIemploi.ma

Access Moroccan job listings, company profiles, and job categories from Emploi.ma. Search jobs by keyword, category, or company with 6 endpoints.

Endpoints
6
Updated
14d ago
Try it
Page number (0-based) for pagination.
Search keyword to filter job listings (e.g. 'dev', 'comptable'). Omitting returns all jobs
Job category (métier) ID filter. Valid IDs can be obtained from list_job_categories endpoi
Company NID filter. Valid NIDs can be obtained from list_companies endpoint.
api.parse.bot/scraper/879833ad-4dce-4db8-9d64-d07b11b916ec/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/879833ad-4dce-4db8-9d64-d07b11b916ec/search_jobs?metier_id=29' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for job listings on Emploi.ma with optional filters. Returns paginated results with up to 25 jobs per page. Results include title, company, location, experience level, employment type, and a description snippet.

Input
ParamTypeDescription
pageintegerPage number (0-based) for pagination.
querystringSearch keyword to filter job listings (e.g. 'dev', 'comptable'). Omitting returns all jobs.
metier_idstringJob category (métier) ID filter. Valid IDs can be obtained from list_job_categories endpoint (e.g. '29' for 'Commercial, vente', '30' for 'Gestion, comptabilité, finance').
company_nidstringCompany NID filter. Valid NIDs can be obtained from list_companies endpoint.
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job listing objects with title, url, company_name, company_url, description_snippet, location, experience_level, education_level, employment_type, and posted_date",
    "count": "integer total number of jobs returned on this page"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "url": "https://www.emploi.ma/offre-emploi-maroc/ingenieur-process-hf-casablanca-9272501",
          "title": "Ingénieur Process (H/F) - Casablanca",
          "location": "Casablanca-Mohammedia",
          "company_url": "https://www.emploi.ma/recruteur/8914043",
          "company_name": "EXPERT EYE ENGINEERING",
          "employment_type": "CDI",
          "experience_level": "Expérience entre 5 ans et 10 ans",
          "description_snippet": "Nous sommes à la recherche d'un Ingénieur Process (H/F)..."
        }
      ],
      "count": 25
    },
    "status": "success"
  }
}

About the emploi.ma API

The Emploi.ma API provides access to Morocco's job board through 6 endpoints covering job search, full job details, company profiles, and category listings. The search_jobs endpoint accepts keyword, category, and company filters and returns up to 25 paginated results per page, each with title, location, experience level, and employment type. get_job_detail delivers the complete posting including salary range, required qualifications, and posting date.

Job Search and Listings

The search_jobs endpoint accepts four optional parameters: query for keyword filtering (e.g. dev, comptable), metier_id for category filtering, company_nid for narrowing to a specific employer, and page for 0-based pagination. Each result in the jobs array includes title, company_name, company_url, location, experience_level, description_snippet, and a url you can pass directly to get_job_detail. The count field tells you how many results were returned on that page.

Full Job Details and Company Profiles

get_job_detail takes a full Emploi.ma posting URL and returns a structured object with salary (min, max, currency — or null when not disclosed), location (region, city, remote flag), languages, posted_date, job_category, requirements as an array of strings, and the full description text. For company research, get_company_profile accepts an NID and returns name, description, and a criteria object covering fields such as Ville, Pays, Secteur d'activité, and Site Internet.

Discovery Endpoints

Three supporting endpoints help you build filters and stay current. list_job_categories returns every available métier with its id, name, and live count of open positions — feed those IDs into search_jobs as metier_id. list_companies returns a directory of featured employers with name, nid, and url, providing the company_nid values for search filtering. get_featured_jobs pulls the current homepage snapshot of promoted listings with title, url, company_name, posted_date, and location — useful for surfacing high-visibility postings without a search query.

Common use cases
  • Build a Morocco-focused job aggregator filtered by city or region using the location fields from search_jobs.
  • Track salary ranges for specific roles in Morocco by collecting salary.min and salary.max from get_job_detail over time.
  • Monitor a target company's open positions by passing its company_nid to search_jobs on a schedule.
  • Classify job postings by sector using list_job_categories counts to identify which métiers have the most active hiring.
  • Enrich a recruiter CRM with company sector, city, and website data from get_company_profile.
  • Surface promoted listings for a job alert newsletter using get_featured_jobs as a daily snapshot.
  • Analyze required qualifications across a job category by batching get_job_detail calls for all jobs matching a metier_id.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Emploi.ma have an official developer API?+
Emploi.ma does not publish an official public developer API or documented data access program. This API is the practical way to access its job listings and company data programmatically.
What does `get_job_detail` return that `search_jobs` does not?+
search_jobs returns a summary per listing: title, company, location, experience level, and a description snippet. get_job_detail adds the full description text, the requirements array, a structured salary object (min, max, currency), the remote flag inside location, required languages, posted_date, and job_category. If salary is not disclosed on the posting, the salary field is null.
How does pagination work in `search_jobs`?+
The page parameter is 0-based: passing page=0 (or omitting it) returns the first page, page=1 the second, and so on. Each page returns up to 25 results. The count field in the response reflects how many jobs are on the current page, not the total across all pages. There is no total-count field, so you must paginate until a page returns fewer than 25 results or an empty jobs array.
Does the API return job application links or allow submitting applications?+
The API returns the posting url on Emploi.ma and full job details, but does not expose application form data or support submitting applications. You can fork this API on Parse and revise it to add an endpoint that retrieves application-specific fields from individual posting pages.
Does `list_companies` return all companies on Emploi.ma?+
list_companies returns a featured/directory page of companies — it is not a full index of every employer that has posted on the site. Some companies that appear in job listings may not be present in this list. You can fork this API on Parse and revise it to add paginated company listing endpoints to increase coverage.
Page content last updated . Spec covers 6 endpoints from emploi.ma.
Related APIs in JobsSee all →
nvidia.com API
nvidia.com API
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
airtasker.com API
Search and browse Airtasker tasks by location, category, price, and keywords, then access detailed task information and user profiles. Get location suggestions and category recommendations to discover available work and service opportunities in your area.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
naukri.com API
naukri.com API