Free online tool

API

Subscriber access

Create your student API key

Use your active newsletter email. We will send a one-time code before showing a newly generated key.

50lifetime data requests per subscriber

Codes expire after 10 minutes. Raw codes and full API keys are never stored by Pakistan Jobs Market.

Documentation

Read jobs and blog posts

This read-only API is made especially for students building coursework, portfolio apps, dashboards and data projects.

Base URLhttps://api.pakistanjobsmarket.com/api/student/v1
01

Authenticate every request

Send the key in an X-API-Key header. A Bearer token in the Authorization header also works.

curl "https://api.pakistanjobsmarket.com/api/student/v1/jobs?page=1&page_size=10" \
  -H "X-API-Key: YOUR_API_KEY"
02

Available endpoints

GET/jobs

List job posts. Supports page, page_size (maximum 25), and q.

GET/jobs/{slug}

Retrieve one job with its full description, advertisement images, and attachments.

GET/blog-posts

List published blog posts. Supports page, page_size (maximum 25), and q.

GET/blog-posts/{slug}

Retrieve one published blog post with its complete content.

GET/quota

Check your quota without using a data request.

Starter examples

JavaScript (Node.js)
const response = await fetch("https://api.pakistanjobsmarket.com/api/student/v1/blog-posts?page=1", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
});
const data = await response.json();
console.log(data.items, data.quota);
Python
import requests

response = requests.get(
    "https://api.pakistanjobsmarket.com/api/student/v1/jobs",
    headers={"X-API-Key": "YOUR_API_KEY"},
    params={"page": 1, "page_size": 10}
)
data = response.json()
print(data["items"])

Build student projects with real Pakistan jobs data

The Pakistan Jobs Market student API gives active newsletter subscribers read-only access to published job and blog data for learning, coursework and portfolio projects. Verify your subscribed email to create a private API key.

Each subscriber receives a lifetime allowance of 50 data requests. Job responses include the complete description, advertisement image URLs and public attachment details; blog responses include the complete published article.

Keep your key private and use the service responsibly. Access remains linked to an active newsletter subscription.