ph.jobstreet.com APIph.jobstreet.com ↗
Access JobStreet Philippines job listings, company profiles, salaries, and classifications via 5 structured API endpoints. Filter by keyword, location, and job type.
curl -X GET 'https://api.parse.bot/scraper/7ba73304-777e-4b3d-bb9f-2122d5b0495c/search_jobs?page=1&keywords=software+engineer&location=Manila&page_size=20' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for job postings on ph.jobstreet.com with optional keyword, location, and classification filters. Returns paginated results sorted by relevance.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| keywords | string | Search keywords for job title or skills (e.g. 'software engineer'). |
| location | string | Location filter such as city or region name (e.g. 'Manila', 'Metro Manila'). |
| page_size | integer | Number of results per page. |
| classification | string | Numeric job classification ID to filter by (e.g. '6281' for Information & Communication Technology). IDs available from get_job_classifications. |
{
"type": "object",
"fields": {
"data": "array of job listing objects, each containing id, title, advertiser, classifications, locations, workTypes, salaryLabel, teaser, listingDate, and workArrangements",
"totalCount": "integer total number of matching jobs"
},
"sample": {
"data": {
"data": [
{
"id": "92111347",
"title": "Full Stack Software Engineer (.NET & React)",
"teaser": "Build and deliver production-grade .NET and React applications.",
"locations": [
{
"label": "Manila City, Metro Manila",
"countryCode": "PH"
}
],
"workTypes": [
"Casual/Vacation"
],
"advertiser": {
"id": "30172868",
"description": "C9"
},
"listingDate": "2026-05-14T05:51:29Z",
"salaryLabel": "",
"classifications": [
{
"classification": {
"id": "6281",
"description": "Information & Communication Technology"
},
"subclassification": {
"id": "6287",
"description": "Developers/Programmers"
}
}
],
"workArrangements": {
"data": [
{
"id": "3",
"label": {
"text": "Remote"
}
}
],
"displayText": "Remote"
}
}
],
"totalCount": 3893
},
"status": "success"
}
}About the ph.jobstreet.com API
The JobStreet Philippines API exposes 5 endpoints for querying job postings, company profiles, and job classifications from ph.jobstreet.com. Using search_jobs, you can filter by keyword, location, and numeric classification ID and receive paginated results that include salary labels, work types, advertiser details, and job teasers. The remaining endpoints cover full job descriptions, company profiles with ratings and perks, company-specific job listings, and the full taxonomy of classification and work-type facets.
Job Search and Listing Data
The search_jobs endpoint accepts optional keywords, location, classification, page, and page_size parameters. Each result object in the data array includes fields such as id, title, advertiser, classifications, locations, workTypes, salaryLabel, and teaser. The totalCount field tells you how many total matches exist across all pages. Classification IDs — required for the classification filter — can be discovered through get_job_classifications, which returns a counts array of facets (classification, location, worktype) with numeric IDs and current job counts for each facet value.
Full Job Details
get_job_details takes a single required job_id (numeric string from search_jobs results) and returns a nested jobDetails object containing the full content field in HTML, abstract, status, listedAt, salary, workTypes, and linked advertiser and company profile data when available. This is the endpoint to use when you need the complete job description rather than the teaser snippet returned by search.
Company Profiles and Company Jobs
get_company_profile accepts a numeric company_id (available from job search results as employer.companyId) and returns companyProfile fields including ratings, overview, perksAndBenefits, gallery, and branding, as well as an AI-generated review summary under companyReviews. get_company_jobs takes an advertiser_id (from advertiser.id in search results) and returns the same paginated structure as search_jobs, scoped to that company's active listings with a totalCount.
- Aggregate tech job postings in Metro Manila by passing classification ID '6281' to search_jobs and monitoring totalCount over time.
- Build a salary benchmarking tool using salaryLabel fields returned across search_jobs results for a given keyword.
- Display a company's culture, ratings, and perks on a recruitment platform using get_company_profile fields like perksAndBenefits and ratings.
- Track how many open roles a specific employer has using get_company_jobs with their advertiser_id.
- Populate a job category browser by fetching all facet IDs and counts from get_job_classifications.
- Render full job descriptions in a custom job board using the HTML content field from get_job_details.
- Alert users to new listings matching a saved keyword and location filter by periodically polling search_jobs and comparing job IDs.
| 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 JobStreet Philippines have an official developer API?+
How do I find valid classification IDs to use with search_jobs?+
get_job_classifications with no parameters. It returns a counts array where each entry has a name field (e.g. 'classification', 'location', 'worktype') and an items object mapping numeric IDs to labels and current job counts. Pass any of those numeric IDs to the classification parameter in search_jobs.What is the difference between the teaser field in search_jobs and the content field in get_job_details?+
teaser in search_jobs is a short preview string. content in get_job_details is the full job description in HTML and includes the complete responsibilities, qualifications, and any other text the employer provided. Use get_job_details with the job id from search results to retrieve it.