Jobz 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.
What is the Jobz 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.
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'
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 jobz-pk-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.jobz_pk_scraper_api import Jobz, Job, JobSummary, Company, Category, Province
jobz = Jobz()
# Search for engineering jobs
for job in jobz.jobsummaries.search(query="engineer"):
print(job.title, job.city, job.date_posted)
# Get full details for a specific job
detail = jobz.jobs.get(url="https://www.jobz.pk/some-job_jobs-123456.html")
print(detail.title, detail.organization, detail.education, detail.vacancy_location)
# Browse government jobs using the Category enum
for job in jobz.jobsummaries.by_category(category=Category.GOVERNMENT):
print(job.title, job.industry, job.vacant_positions)
# Get government jobs by province using the Province enum
for job in jobz.jobsummaries.by_province(province=Province.PUNJAB):
print(job.title, job.city)
# Navigate from summary to detail
for summary in jobz.jobsummaries.by_city(city="karachi", limit=3):
full = summary.details()
print(full.title, full.organization, full.expected_last_date)
# List all companies
for company in jobz.companies.list():
print(company.name, company.url)
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 filtering or pagination — returns whatever the homepage currently shows.
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/manager-sales-marketing-jobs-2026-in-plastic-industry_jobs-759676.html",
"city": "Lahore",
"title": "Manager Sales & Marketing Jobs 2026 in Plastic Industry",
"industry": "Plastic Industry",
"date_posted": "10-Jun-2026",
"vacant_positions": []
}
],
"count": 60
},
"status": "success"
}
}About the Jobz API
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.
The Jobz API is a managed, monitored endpoint for jobz.pk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jobz.pk 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 jobz.pk 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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.