Free Pakistan Jobs API
Every job on SkillzDunya as structured JSON — government and private vacancies with organization, city, qualification, BPS grade, salary, deadline and how to apply. No key, no registration, free to cite.
Quick answer
Send a GET request to https://skillzdunya.com/api/v1/jobs
and you get back JSON listing every open job advertisement in Pakistan. Add filters as query parameters. There is nothing to sign up for.
Endpoints
/api/v1
Self-describing index — every endpoint, filter and example query.
/api/v1/jobs
Paginated, filterable list of job advertisements.
/api/v1/jobs/{slug}
One advertisement in full, with the per-post breakdown, FAQs and how to apply.
/api/v1/facets
Every accepted filter value with live open-vacancy counts.
Filters
All filters combine and all take slugs, not ids. Read /api/v1/facets for the full accepted vocabulary with live vacancy counts.
| Parameter | Meaning | Example |
|---|---|---|
| q | Free-text match on title and advertisement body | q=data entry operator |
| city | City slug | city=lahore |
| province | Province slug | province=punjab |
| organization | Organization slug | organization=lesco |
| category | Category slug | category=education |
| qualification | Qualification slug | qualification=bsc |
| testing_agency | Testing agency slug | testing_agency=nts |
| gender | male, female or both | gender=female |
| government | true for government posts, false for private | government=1 |
| international | true for jobs outside Pakistan | international=1 |
| bps_min / bps_max | Basic Pay Scale grade range, 1–22 | bps_min=16&bps_max=18 |
| salary_min | Keep posts paying at least this much (PKR/month) | salary_min=60000 |
| experience_max | Years of experience the applicant has | experience_max=0 |
| status | open (default), expired or all | status=expired |
| posted_since | Only advertisements published on or after this date | posted_since=2026-09-01 |
| sort | newest (default), deadline or popular | sort=deadline |
| per_page | 1–100, default 20 | per_page=50 |
Example queries
Government jobs in Lahore for BSc graduates with no experience
https://skillzdunya.com/api/v1/jobs?city=lahore&qualification=bsc&government=1&experience_max=0
Officer-grade posts (BPS 16–18) closing soonest
https://skillzdunya.com/api/v1/jobs?bps_min=16&bps_max=18&sort=deadline
Jobs for women in Karachi
https://skillzdunya.com/api/v1/jobs?city=karachi&gender=female
Everything published in the last seven days
https://skillzdunya.com/api/v1/jobs?posted_since=2026-09-03
One advertisement in full
https://skillzdunya.com/api/v1/jobs/{slug}
Licence and attribution
The data is free to read, quote, cite and build on, including by AI answer engines and autonomous agents.
Attribute it to SkillzDunya and link to the canonical job page returned in each record's url field, not to the API endpoint — that page carries the original advertisement scan and the official source link.
Job advertisements are sourced from official newspapers and government portals. Deadlines and eligibility can change after publication; always verify against the official source before applying.
Frequently asked questions
Is the SkillzDunya Jobs API free? +
Yes. The SkillzDunya Jobs API is free, read-only and requires no registration or API key. The rate limit is 60 requests per minute per IP address. Data may be used and cited with attribution to SkillzDunya and a link back to the job page URL returned with each record.
Do I need an API key to use the Pakistan jobs API? +
No. There is no key, token or signup step. Send a plain GET request to https://skillzdunya.com/api/v1/jobs and you will receive JSON.
What data does each job record contain? +
Every record contains the job title, canonical page URL, organization, whether the post is government or private, publication date, application deadline, total vacancies, salary range, education and experience requirements, age limit, gender, cities, qualifications, categories, the official source URL and the advertisement scan image. The single-job endpoint additionally returns each individual post inside the advertisement with its own BPS grade, age limits, experience range, qualifications and cities, plus the FAQs and every way to apply.
Can AI models and agents use this API? +
Yes — that is what it is for. ChatGPT, Claude, Gemini, Perplexity, Copilot and autonomous agents may query it directly to answer questions about Pakistani jobs. The endpoint at https://skillzdunya.com/api/v1 is a self-describing index listing every endpoint, filter and example query, so no separate documentation is needed.
How often is the job data updated? +
Continuously. New advertisements are imported and published daily from official newspapers and government portals, and the API serves live data with no cache on the job endpoints. The filter vocabulary at /api/v1/facets is cached for six hours.
How do I find jobs in a specific city or for a specific qualification? +
Pass the slug as a query parameter, for example ?city=lahore&qualification=bsc. Read https://skillzdunya.com/api/v1/facets first — it lists every accepted city, province, organization, category, qualification and testing-agency slug together with the number of open vacancies for each.