Garudafood vacancies — search by location, job function and position level, with detail covering requirements and responsibilities.
searchpassing, 0.5sjobpassing, 0.1sfilterspassing, 0.3s/v1/jobs:garudafood/search10m cache5 paramschecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("jobs:garudafood", "search", {
"query": "sales",
"location": "Balikpapan",
"function": "Administration",
"level": "Fresh Graduate",
"page": 1
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/jobs:garudafood/search?query=sales&location=Balikpapan&function=Administration&level=Fresh+Graduate&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/jobs:garudafood/searchSearch and page through open vacancies with the provider's own filters.querystringoptionallocationstringoptionalfilters endpoint. Values are plain names, not ids.functionstringoptionalfilters endpoint.levelenumoptionalpagenumberoptionalcurl -X GET "https://api.zpi.web.id/v1/jobs:garudafood/search?query=sales&location=Balikpapan&function=Administration&level=Fresh+Graduate&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"page": 1,
"count": 11,
"items": [
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=2328",
"jobId": "2328",
"major": "Any Dicipline",
"title": "Sales Representative - Area Indramayu Jawa Barat",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"location": {
"raw": "Indramayu, Jawa Barat",
"city": "Indramayu",
"region": "Jawa Barat"
},
"activeFrom": "2026-09-01T00:00:00.000Z",
"activeUntil": "2026-10-31T00:00:00.000Z",
"employmentType": "Permanent"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=3297",
"jobId": "3297",
"major": "Any Major",
"title": "Sales Representative - Area Pringsewu, Lampung",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"activeFrom": "2024-10-06T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "Permanent"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=4433",
"jobId": "4433",
"major": "All Major",
"title": "Sales Representative Retailer Bima - Wilayah Rantau Prapat",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"location": {
"raw": "Labuhan Batu - Rantau Prapat",
"city": "Labuhan Batu - Rantau Prapat"
},
"activeFrom": "2025-09-24T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "Permanen (PKWTT)"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=4522",
"jobId": "4522",
"title": "Distrubution Administration - Wilayah Tanjung Pura",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"activeFrom": "2025-11-01T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "PKWT (Kontrak)"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=4960",
"jobId": "4960",
"major": "Any Major",
"title": "Sales Representative - Area Lahat",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"location": {
"raw": "Lahat, Sumatera Selatan",
"city": "Lahat",
"region": "Sumatera Selatan"
},
"activeFrom": "2026-04-07T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "Permanent"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=4961",
"jobId": "4961",
"major": "Any Major",
"title": "Sales Representative - Area Kotabumi, Lampung Utara",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"location": {
"raw": "Kotabumi, Lampung Utara",
"city": "Kotabumi",
"region": "Lampung Utara"
},
"activeFrom": "2026-04-07T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "Permanent"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=5317",
"jobId": "5317",
"major": "Any Major",
"title": "Sales Representative Food Service - Area Bengkulu",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"location": {
"raw": "Bengkulu",
"city": "Bengkulu"
},
"activeFrom": "2026-08-11T00:00:00.000Z",
"activeUntil": "2026-09-30T00:00:00.000Z",
"employmentType": "Permanent"
},
{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=5372",
"jobId": "5372",
"major": "Any Major",
"title": "Sales Representative - Area Ogan Komering Ulu",
"company": {
"name": "Garudafood"
},
"jobLevel": "Fresh Graduate",
"activeFrom": "2026-09-03T00:00:00.000Z",
"activeUntil": "2026-10-04T00:00:00.000Z",
"employmentType": "Permanent"
}
],
"limit": 12,
"total": null,
"hasMore": false,
"nextPage": null,
"provider": "garudafood"
}/v1/jobs:garudafood/job/:jobIdFull detail for one vacancy.jobIdnumberrequiredin pathjobId from the search endpoint.curl -X GET "https://api.zpi.web.id/v1/jobs:garudafood/job/2328" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"url": "https://career.garudafood.co.id/Page/CareerDetail.aspx?JobId=2328",
"jobId": "2328",
"major": "Any Dicipline",
"title": "Sales Representative - Area Indramayu Jawa Barat",
"company": {
"name": "Garudafood"
},
"function": "Sales",
"jobLevel": "Sales",
"location": {
"raw": "Indramayu, Jawa Barat",
"city": "Indramayu",
"region": "Jawa Barat"
},
"provider": "garudafood",
"activeFrom": "2026-09-01T00:00:00.000Z",
"attributes": [
{
"label": "Major",
"value": "Any Dicipline"
},
{
"label": "City",
"value": "Indramayu, Jawa Barat"
},
{
"label": "Employment Type",
"value": "Permanent"
},
{
"label": "Position Level",
"value": "Sales"
},
{
"label": "Year of Experience",
"value": "0-1 Years"
},
{
"label": "Education Level",
"value": "Diploma"
},
{
"label": "Job Function",
"value": "Sales"
}
],
"experience": "0-1 Years",
"activeUntil": "2026-10-31T00:00:00.000Z",
"requirements": [
"Jujur & Bertanggung jawab",
"Memliki kendaraan Motor & SIM C",
"Memiliki kemampuan komunikasi yang baik",
"Bisa bekerja secara tim & Individu"
],
"educationLevel": "Diploma",
"employmentType": "Permanent",
"responsibilities": [
"Mencapai target sales",
"Selling Product",
"Availability & Visibility"
]
}/v1/jobs:garudafood/filtersThe filter values the search endpoint accepts, straight from the provider.groupenumoptionalcurl -X GET "https://api.zpi.web.id/v1/jobs:garudafood/filters?group=location" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"count": 82,
"items": [
{
"group": "location",
"label": "Balikpapan",
"param": "location",
"value": "Balikpapan",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Bandar Lampung",
"param": "location",
"value": "Bandar Lampung",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Bandung ( Kota Bandung )",
"param": "location",
"value": "Bandung ( Kota Bandung )",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Banjaran",
"param": "location",
"value": "Banjaran",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Banjarmasin",
"param": "location",
"value": "Banjarmasin",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Banjarnegara",
"param": "location",
"value": "Banjarnegara",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Banyumas",
"param": "location",
"value": "Banyumas",
"groupLabel": "Location"
},
{
"group": "location",
"label": "Banyuwangi, Blitar, Jember, Kepanjen, Malang, Pasuruan, Probolinggo",
"param": "location",
"value": "Banyuwangi, Blitar, Jember, Kepanjen, Malang, Pasuruan, Probolinggo",
"groupLabel": "Location"
}
],
"provider": "garudafood"
}