zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Indonesia/Cek Halal
Logo Cek Halal

Cek Halal

Pencarian sertifikat halal produk dari database resmi BPJPH (Badan Penyelenggara Jaminan Produk Halal).

1 endpoint1 endpoint on this scraper6 calls6 calls so farupdated 3 months agoLast updated 6/13/2026, 2:19:48 AMllms.txt
Endpoints1

1/1 passing
checked 20 hours ago · daily 01:00 WIB

Lookup Sertifikat Halal

Cari produk bersertifikat halal berdasarkan nama produk.

GET/v1/indonesia:cek-halal/lookup5m cache2 paramschecking key…
Parameters
querystringrequired

Nama produk halal yang akan dicari (min 2 karakter).

typeenum

Mode pencarian: 'produk' (default, cari nama produk) atau 'perusahaan' (filter tambahan nama pelaku usaha).

·
Response
EXAMPLE
{
  "ok": true,
  "type": "produk",
  "count": 10,
  "query": "INDOMIE",
  "results": [
    {
      "id": "003a8dfb-d7d7-46d5-9641-9b3c05f3db51",
      "brand": null,
      "status": "Halal",
      "company": "Warung Zam Zam Resto & Kopi Halim Raya",
      "issueDate": "23 May 2026",
      "certNumber": "ID31110073291550526",
      "validUntil": null,
      "productName": "Indomie Ayam Geprek/Internet/Telor - Warung Zam Zam Resto & Kopi Halim Raya",
      "productType": null
    },
    {
      "id": "c0da778f-b23b-47d0-9ef4-75717cc423fd",
      "brand": null,
      "status": "Halal",
      "company": "JAMIYO/KEDAI BAKSO TIMBUL",
      "issueDate": "23 May 2026",
      "certNumber": "ID32110073256340526",
      "validUntil": null,
      "productName": "Bakso Urat Indomie",
      "productType": null
    },
    {
      "id": "c45d72a7-6e83-478d-a609-3fa898c8073a",
      "brand": null,
      "status": "Halal",
      "company": "JAMIYO/KEDAI BAKSO TIMBUL",
      "issueDate": "23 May 2026",
      "certNumber": "ID32110073256340526",
      "validUntil": null,
      "productName": "Bakso Telur Indomie",
      "productType": null
    },
    {
      "id": "31f0ad63-c82e-422a-8bb0-8cedf6f7b40d",
      "brand": null,
      "status": "Halal",
      "company": "CV. SUMO",
      "issueDate": "22 May 2026",
      "certNumber": "ID12110073008970526",
      "validUntil": null,
      "productName": "Indomie Bumbu Aceh",
      "productType": null
    },
    {
      "id": "0d126b3b-bc8f-4c04-8b23-a1943f0c3b79",
      "brand": null,
      "status": "Halal",
      "company": "SUSANTI",
      "issueDate": "21 May 2026",
      "certNumber": "ID21110072832410526",
      "validUntil": null,
      "productName": "Indomie Goreng 'Mak Uteh'",
      "productType": null
    },
    {
      "id": "a93a4e4c-932c-4c61-8f37-8f24a179db5e",
      "brand": null,
      "status": "Halal",
      "company": "SUSANTI",
      "issueDate": "21 May 2026",
      "certNumber": "ID21110072832410526",
      "validUntil": null,
      "productName": "Indomie Rebus 'Mak Uteh'",
      "productType": null
    },
    {
      "id": "fa50f111-e2cb-45cd-818a-e99642546ddc",
      "brand": null,
      "status": "Halal",
      "company": "HOSU Coffee and Eatery",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072925550526",
      "validUntil": null,
      "productName": "Indomie Goreng dan Rebus",
      "productType": null
    },
    {
      "id": "697e40ec-785c-4df8-8608-0638775c082a",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Telur",
      "productType": null
    },
    {
      "id": "d9039944-3076-4b08-95bd-a094cd896214",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Bakso",
      "productType": null
    },
    {
      "id": "34abfe74-59d1-4d86-9027-d472717348f5",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Spesial",
      "productType": null
    }
  ]
}

Code

Lookup Sertifikat Halal
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("indonesia:cek-halal", "lookup", {
  "query": "INDOMIE",
  "type": "produk"
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

1 endpoint · plain text
GET
Lookup Sertifikat Halal/v1/indonesia:cek-halal/lookup
2 params

Parameters

querystringrequired
Nama produk halal yang akan dicari (min 2 karakter).
typeenumoptional
Mode pencarian: 'produk' (default, cari nama produk) atau 'perusahaan' (filter tambahan nama pelaku usaha). Values: produk, perusahaan.

Request

curl -X GET "https://api.zapi.ink/v1/indonesia:cek-halal/lookup?query=INDOMIE&type=produk" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "type": "produk",
  "count": 10,
  "query": "INDOMIE",
  "results": [
    {
      "id": "003a8dfb-d7d7-46d5-9641-9b3c05f3db51",
      "brand": null,
      "status": "Halal",
      "company": "Warung Zam Zam Resto & Kopi Halim Raya",
      "issueDate": "23 May 2026",
      "certNumber": "ID31110073291550526",
      "validUntil": null,
      "productName": "Indomie Ayam Geprek/Internet/Telor - Warung Zam Zam Resto & Kopi Halim Raya",
      "productType": null
    },
    {
      "id": "c0da778f-b23b-47d0-9ef4-75717cc423fd",
      "brand": null,
      "status": "Halal",
      "company": "JAMIYO/KEDAI BAKSO TIMBUL",
      "issueDate": "23 May 2026",
      "certNumber": "ID32110073256340526",
      "validUntil": null,
      "productName": "Bakso Urat Indomie",
      "productType": null
    },
    {
      "id": "c45d72a7-6e83-478d-a609-3fa898c8073a",
      "brand": null,
      "status": "Halal",
      "company": "JAMIYO/KEDAI BAKSO TIMBUL",
      "issueDate": "23 May 2026",
      "certNumber": "ID32110073256340526",
      "validUntil": null,
      "productName": "Bakso Telur Indomie",
      "productType": null
    },
    {
      "id": "31f0ad63-c82e-422a-8bb0-8cedf6f7b40d",
      "brand": null,
      "status": "Halal",
      "company": "CV. SUMO",
      "issueDate": "22 May 2026",
      "certNumber": "ID12110073008970526",
      "validUntil": null,
      "productName": "Indomie Bumbu Aceh",
      "productType": null
    },
    {
      "id": "0d126b3b-bc8f-4c04-8b23-a1943f0c3b79",
      "brand": null,
      "status": "Halal",
      "company": "SUSANTI",
      "issueDate": "21 May 2026",
      "certNumber": "ID21110072832410526",
      "validUntil": null,
      "productName": "Indomie Goreng 'Mak Uteh'",
      "productType": null
    },
    {
      "id": "a93a4e4c-932c-4c61-8f37-8f24a179db5e",
      "brand": null,
      "status": "Halal",
      "company": "SUSANTI",
      "issueDate": "21 May 2026",
      "certNumber": "ID21110072832410526",
      "validUntil": null,
      "productName": "Indomie Rebus 'Mak Uteh'",
      "productType": null
    },
    {
      "id": "fa50f111-e2cb-45cd-818a-e99642546ddc",
      "brand": null,
      "status": "Halal",
      "company": "HOSU Coffee and Eatery",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072925550526",
      "validUntil": null,
      "productName": "Indomie Goreng dan Rebus",
      "productType": null
    },
    {
      "id": "697e40ec-785c-4df8-8608-0638775c082a",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Telur",
      "productType": null
    },
    {
      "id": "d9039944-3076-4b08-95bd-a094cd896214",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Bakso",
      "productType": null
    },
    {
      "id": "34abfe74-59d1-4d86-9027-d472717348f5",
      "brand": null,
      "status": "Halal",
      "company": "CV. MITRA SUPLINDO PERTANIAN",
      "issueDate": "21 May 2026",
      "certNumber": "ID32110072920370526",
      "validUntil": null,
      "productName": "Indomie Goreng Spesial",
      "productType": null
    }
  ]
}

Related APIs

More in indonesia

Al-Qur'an Kemenag

indonesiaquran-kemenag

Official Indonesian Ministry of Religious Affairs Qur'an: 114 surah, 6,236 ayah with Arabic, kitabah, transliteration, Indonesian translation and footnotes, plus the full Kemenag tafsir (wajiz, tahlili, kosakata, munasabah, sabab nuzul).

242242 calls so far10mResponses cached for 10m
Busy: 10+ calls so far

Jadwal Sholat & Hijriah

indonesiasholat-kemenag

Indonesian prayer schedules for 517 cities sourced from the Ministry of Religious Affairs dataset, plus Hijri/Gregorian conversion and qibla direction.

188188 calls so far10mResponses cached for 10m
Busy: 10+ calls so far

Perpusnas

indonesiaperpusnas

Perpustakaan Nasional RI — Khastara digitised manuscripts and the OPAC national catalogue with full MARC records and digital content listings.

111111 calls so far5mResponses cached for 5m
Busy: 10+ calls so far

Bimas Islam Kemenag

indonesiabimasislam

Directorate General of Islamic Community Guidance: sharia consultation Q&A answered by the Kemenag team, official news, and directorate profile pages.

8282 calls so far10mResponses cached for 10m
Busy: 10+ calls so far

Wilayah Indonesia

indonesiawilayah

Indonesian administrative regions — province, regency, district and village — from official government registries, with BPS and Kemendagri codes.

222222 calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Cek BPOM

indonesiacek-bpom

Pencarian registrasi produk obat, kosmetik, suplemen, dan pangan pada database resmi BPOM RI.

3838 calls so far5mResponses cached for 5m
Busy: 10+ calls so far
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.