jobz.pk APIjobz.pk ↗
Access job listings, search results, and job details from jobz.pk. Filter by city, category, sector, newspaper, province, and organization via 11 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/d3cc3c43-cf19-46ca-b672-a0f41cdf04b5/get_latest_jobs' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract latest job listings from the jobz.pk homepage. Returns all currently displayed jobs with title, URL, industry, city, date posted, and vacant positions.
No input parameters required.
{
"type": "object",
"fields": {
"jobs": "array of job listing objects with title, url, industry, city, date_posted, and vacant_positions",
"count": "integer total number of jobs returned"
},
"sample": {
"data": {
"jobs": [
{
"url": "https://www.jobz.pk/khass-pipe-industry-peshawar-jobs-2026-for-driver_jobs-755187.html",
"city": "Peshawar",
"title": "Khass Pipe Industry Peshawar Jobs 2026 for Driver",
"industry": "khass Pipe Industry",
"date_posted": "14-May-2026",
"vacant_positions": []
}
],
"count": 60
},
"status": "success"
}
}About the jobz.pk API
The jobz.pk API provides access to job listings data across 11 endpoints, covering everything from homepage listings to filtered views by city, sector, and province. The get_job_detail endpoint returns structured fields including organization name, education requirements, application deadline, and vacancy location for any individual job. Filters span categories like government and internships, sectors like engineering and banking, and cities like Karachi, Lahore, and Islamabad.
What the API Covers
The jobz.pk API exposes job listings data from one of Pakistan's primary job boards. The get_latest_jobs endpoint returns all jobs currently displayed on the homepage — each record includes title, url, industry, city, date_posted, and vacant_positions. The search_jobs endpoint accepts a keyword query and returns matching listings with the same fields plus the echoed query string. Pagination is supported across most filter endpoints via an optional page integer parameter.
Filtering Endpoints
Seven endpoints support filtered browsing. get_jobs_by_category accepts values like government, army, intern, freelancer, and overseas. get_jobs_by_city takes lowercase city names such as peshawar or rawalpindi. get_jobs_by_sector covers sectors including medical, teaching, and it. get_jobs_by_newspaper lets you scope results to sources like jang, dawn, or express. get_government_jobs_by_province filters by province — punjab, sindh, kpk, balochistan, or federal. get_jobs_by_organization accepts organization slugs like fpsc, ppsc, or paf.
Job Detail and Company Data
get_job_detail takes a full jobz.pk job URL and returns the richest record available: organization, education, job_industry, vacancy_location, category___sector, and expected_last_date. This is the endpoint to use when building a job aggregator that needs structured metadata per listing. get_company_list returns an array of company objects, each with a name and url, useful for building organization indexes or lookup tables.
Overseas Jobs
get_overseas_jobs returns paginated overseas listings. An optional country parameter accepts lowercase hyphenated country names like saudi-arabia, uae, or qatar. Omitting the parameter returns all overseas jobs regardless of destination country.
- Aggregate Pakistan job listings by city and sector for a regional job board
- Build a government job tracker filtered by province using
get_government_jobs_by_province - Monitor newspaper-sourced job postings from Dawn or Jang via
get_jobs_by_newspaper - Extract application deadlines and education requirements from individual listings using
get_job_detail - Compile a directory of hiring organizations from
get_company_listfor a recruitment CRM - Track overseas job opportunities by country using
get_overseas_jobswith thecountryfilter - Keyword-search job titles or skills across all listings using
search_jobs
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does jobz.pk have an official developer API?+
What does `get_job_detail` return that the listing endpoints don't?+
get_job_detail returns fields not present in listing responses: organization, education, category___sector, vacancy_location, and expected_last_date. Listing endpoints return only title, url, industry, city, date_posted, and vacant_positions. You need to call get_job_detail with a specific job URL to get the full structured record for a posting.Can I filter jobs by salary range or experience level?+
How does pagination work across the filter endpoints?+
get_jobs_by_city, get_jobs_by_sector, get_jobs_by_newspaper, and get_government_jobs_by_province — accept an optional page integer parameter. The response echoes back the current page value alongside the jobs array. There is no total page count field in the response, so iteration requires stepping through pages until the jobs array returns fewer results or an empty set.Are job application links or apply-now forms included in the response?+
url field pointing to each job's detail page on jobz.pk. Direct application form URLs or external employer apply links are not currently included in any endpoint's response fields. You can fork this API on Parse and revise it to capture application URLs if they appear on the individual job detail pages.