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"Free online tool
Subscriber access
Use your active newsletter email. We will send a one-time code before showing a newly generated key.
Codes expire after 10 minutes. Raw codes and full API keys are never stored by Pakistan Jobs Market.
Documentation
This read-only API is made especially for students building coursework, portfolio apps, dashboards and data projects.
https://api.pakistanjobsmarket.com/api/student/v1Send 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"/jobsList job posts. Supports page, page_size (maximum 25), and q.
/jobs/{slug}Retrieve one job with its full description, advertisement images, and attachments.
/blog-postsList published blog posts. Supports page, page_size (maximum 25), and q.
/blog-posts/{slug}Retrieve one published blog post with its complete content.
/quotaCheck your quota without using a data request.
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);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"])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.