# Digimap — Zapi reference > Apple Premium Partner Indonesia — product detail from the official digimap.co.id store. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/marketplace/digimap - Endpoint catalog: https://zpi.web.id/category/marketplace - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Digimap **Category:** marketplace · **Slug:** `digimap` **Detail page:** https://zpi.web.id/api/marketplace/digimap Apple Premium Partner Indonesia — product detail from the official digimap.co.id store. **Tags:** marketplace, ecommerce, product, indonesia ### Product Detail Full product detail from digimap.co.id: price, stock, variants, specs, images and description. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/product` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Product page URL on digimap.co.id | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/product?url=https%3A%2F%2Fwww.digimap.co.id%2Fproducts%2Fiphone-15-mtpd3id-a" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/product?url=https%3A%2F%2Fwww.digimap.co.id%2Fproducts%2Fiphone-15-mtpd3id-a", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/product?url=https%3A%2F%2Fwww.digimap.co.id%2Fproducts%2Fiphone-15-mtpd3id-a", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "sku": "0788-APPMTPD3ID-A", "url": "https://www.digimap.co.id/products/iphone-15-mtpd3id-a", "name": "iPhone 15 512GB Pink", "tags": [ "synced" ], "brand": "Apple", "price": 18249000, "store": { "host": "www.digimap.co.id", "name": "Digimap Indonesia" }, "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1__GBEN.jpg?v=1717730898", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1_alt__GBEN.jpg?v=1717730898", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-2__GBEN.jpg?v=1717730897", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-3__GBEN.jpg?v=1717730898", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-4__GBEN.jpg?v=1717730898", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-5__GBEN.jpg?v=1717730897", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-6__GBEN_57c235db-4882-418a-81f0-667cf1c28a58.jpg?v=1717730898", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-7__GBEN_b6496093-8500-4ef4-a441-8a8abfddaed0.jpg?v=1717730898" ], "inStock": false, "category": "iPhone", "currency": "IDR", "platform": "shopify", "priceMax": 18249000, "priceMin": 18249000, "variants": [ { "sku": "0788-APPMTPD3ID-A", "name": "iPhone 15 512GB Pink", "price": 18249000, "barcode": "195949037931", "available": false, "listPrice": 20999000, "variantId": "44327322845335" } ], "listPrice": 20999000, "productId": "8433960910999", "isPreorder": false, "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1__GBEN.jpg?v=1717730898", "descriptionHtml": "

iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.

" } ``` --- ### Products full product catalogue, paged - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/products` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `page` | number | query | no | Result page. Default 1 | | `limit` | number | query | no | Items per page. Default 50, max 250 (upstream cap) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/products?page=1&limit=50" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/products?page=1&limit=50", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/products?page=1&limit=50", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "url": "https://www.digimap.co.id/products/apple-airpods-max-2", "name": "Apple AirPods Max 2", "brand": "Apple", "price": 10499000, "handle": "apple-airpods-max-2", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-1.jpg?v=1779417079", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-2.jpg?v=1779417079", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-3.jpg?v=1779417079", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-4.jpg?v=1779417079", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-5.jpg?v=1779417080", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-6.jpg?v=1779417080", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-7.jpg?v=1779417080", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWP4ID-A-8.jpg?v=1779417079" ], "options": [ { "name": "color", "values": [ "Purple" ] }, { "name": "size", "values": [ "One Size" ] } ], "variants": [ { "sku": "0788-APPMHWP4ID-A", "name": "Purple / One Size", "price": 10499000, "available": true, "listPrice": 10499000, "variantId": "47839579799703" } ], "available": true, "listPrice": 10499000, "productId": "9615636463767", "description": "Didukung chip H2, AirPods Max 2 memiliki fitur cerdas baru seperti Audio Adaptif dan Kesadaran Percakapan2 untuk komunikasi yang lebih lancar dan mendengarkan secara optimal di segala lingkungan. Poin-poin fitur utama PENGALAMAN AUDIO DENGAN DESAIN TELINGA TERTUTUP TERBAIK — Didukung oleh chip H2, AirPods Max 2 menghadirkan audio high-fidelity yang ditingkatkan dengan suara bass yang dalam, nada menengah yang luas, dan nada tinggi yang tajam untuk pengalaman mendengarkan yang tak tertandingi. SINGKIRKAN KEBISINGAN — Peredam Kebisingan Aktif hingga 1,5x lebih tinggi dibandingkan generasi sebelu", "publishedAt": "2026-06-18T11:16:10+07:00" }, { "url": "https://www.digimap.co.id/products/apple-airpods-max-6", "name": "Apple AirPods Max 2", "brand": "Apple", "price": 10499000, "handle": "apple-airpods-max-6", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-1.jpg?v=1779417503", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-2.jpg?v=1779417499", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-3.jpg?v=1779417500", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-4.jpg?v=1779417503", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-5.jpg?v=1779417501", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-6.jpg?v=1779417500", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-7.jpg?v=1779417500", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWN4ID-A-8.jpg?v=1779417499" ], "options": [ { "name": "color", "values": [ "Orange" ] }, { "name": "size", "values": [ "One Size" ] } ], "variants": [ { "sku": "0788-APPMHWN4ID-A", "name": "Orange / One Size", "price": 10499000, "available": true, "listPrice": 10499000, "variantId": "47839586025623" } ], "available": true, "listPrice": 10499000, "productId": "9615638266007", "description": "Didukung chip H2, AirPods Max 2 memiliki fitur cerdas baru seperti Audio Adaptif dan Kesadaran Percakapan2 untuk komunikasi yang lebih lancar dan mendengarkan secara optimal di segala lingkungan. Poin-poin fitur utama PENGALAMAN AUDIO DENGAN DESAIN TELINGA TERTUTUP TERBAIK — Didukung oleh chip H2, AirPods Max 2 menghadirkan audio high-fidelity yang ditingkatkan dengan suara bass yang dalam, nada menengah yang luas, dan nada tinggi yang tajam untuk pengalaman mendengarkan yang tak tertandingi. SINGKIRKAN KEBISINGAN — Peredam Kebisingan Aktif hingga 1,5x lebih tinggi dibandingkan generasi sebelu", "publishedAt": "2026-06-18T11:16:09+07:00" }, { "url": "https://www.digimap.co.id/products/apple-airpods-max-5", "name": "Apple AirPods Max 2", "brand": "Apple", "price": 10499000, "handle": "apple-airpods-max-5", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-1.jpg?v=1779417485", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-2.jpg?v=1779417486", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-3.jpg?v=1779417485", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-4.jpg?v=1779417486", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-5.jpg?v=1779417486", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-6.jpg?v=1779417486", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-7.jpg?v=1779417487", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWM4ID-A-8.jpg?v=1779417485" ], "options": [ { "name": "color", "values": [ "Blue" ] }, { "name": "size", "values": [ "One Size" ] } ], "variants": [ { "sku": "0788-APPMHWM4ID-A", "name": "Blue / One Size", "price": 10499000, "available": true, "listPrice": 10499000, "variantId": "47839585632407" } ], "available": true, "listPrice": 10499000, "productId": "9615638167703", "description": "Didukung chip H2, AirPods Max 2 memiliki fitur cerdas baru seperti Audio Adaptif dan Kesadaran Percakapan2 untuk komunikasi yang lebih lancar dan mendengarkan secara optimal di segala lingkungan. Poin-poin fitur utama PENGALAMAN AUDIO DENGAN DESAIN TELINGA TERTUTUP TERBAIK — Didukung oleh chip H2, AirPods Max 2 menghadirkan audio high-fidelity yang ditingkatkan dengan suara bass yang dalam, nada menengah yang luas, dan nada tinggi yang tajam untuk pengalaman mendengarkan yang tak tertandingi. SINGKIRKAN KEBISINGAN — Peredam Kebisingan Aktif hingga 1,5x lebih tinggi dibandingkan generasi sebelu", "publishedAt": "2026-06-18T11:16:09+07:00" }, { "url": "https://www.digimap.co.id/products/apple-airpods-max-4", "name": "Apple AirPods Max 2", "brand": "Apple", "price": 10499000, "handle": "apple-airpods-max-4", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-1.jpg?v=1779417463", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-2.jpg?v=1779417463", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-3.jpg?v=1779417464", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-4.jpg?v=1779417464", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-5.jpg?v=1779417464", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-6.jpg?v=1779417464", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-7.jpg?v=1779417464", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWK4ID-A-8.jpg?v=1779417464" ], "options": [ { "name": "color", "values": [ "Midnight" ] }, { "name": "size", "values": [ "One Size" ] } ], "variants": [ { "sku": "0788-APPMHWK4ID-A", "name": "Midnight / One Size", "price": 10499000, "available": true, "listPrice": 10499000, "variantId": "47839585140887" } ], "available": true, "listPrice": 10499000, "productId": "9615637938327", "description": "Didukung chip H2, AirPods Max 2 memiliki fitur cerdas baru seperti Audio Adaptif dan Kesadaran Percakapan2 untuk komunikasi yang lebih lancar dan mendengarkan secara optimal di segala lingkungan. Poin-poin fitur utama PENGALAMAN AUDIO DENGAN DESAIN TELINGA TERTUTUP TERBAIK — Didukung oleh chip H2, AirPods Max 2 menghadirkan audio high-fidelity yang ditingkatkan dengan suara bass yang dalam, nada menengah yang luas, dan nada tinggi yang tajam untuk pengalaman mendengarkan yang tak tertandingi. SINGKIRKAN KEBISINGAN — Peredam Kebisingan Aktif hingga 1,5x lebih tinggi dibandingkan generasi sebelu", "publishedAt": "2026-06-18T11:16:09+07:00" }, { "url": "https://www.digimap.co.id/products/apple-airpods-max-3", "name": "Apple AirPods Max 2", "brand": "Apple", "price": 10499000, "handle": "apple-airpods-max-3", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-1.jpg?v=1779417250", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-2.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-3.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-4.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-5.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-6.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-7.jpg?v=1779417247", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMHWL4ID-A-8.jpg?v=1779417248" ], "options": [ { "name": "color", "values": [ "Starlight" ] }, { "name": "size", "values": [ "One Size" ] } ], "variants": [ { "sku": "0788-APPMHWL4ID-A", "name": "Starlight / One Size", "price": 10499000, "available": true, "listPrice": 10499000, "variantId": "47839580618903" } ], "available": true, "listPrice": 10499000, "productId": "9615636889751", "description": "Didukung chip H2, AirPods Max 2 memiliki fitur cerdas baru seperti Audio Adaptif dan Kesadaran Percakapan2 untuk komunikasi yang lebih lancar dan mendengarkan secara optimal di segala lingkungan. Poin-poin fitur utama PENGALAMAN AUDIO DENGAN DESAIN TELINGA TERTUTUP TERBAIK — Didukung oleh chip H2, AirPods Max 2 menghadirkan audio high-fidelity yang ditingkatkan dengan suara bass yang dalam, nada menengah yang luas, dan nada tinggi yang tajam untuk pengalaman mendengarkan yang tak tertandingi. SINGKIRKAN KEBISINGAN — Peredam Kebisingan Aktif hingga 1,5x lebih tinggi dibandingkan generasi sebelu", "publishedAt": "2026-06-18T11:16:09+07:00" }, { "url": "https://www.digimap.co.id/products/16-inch-macbook-pro-m5-pro", "name": "16-inch MacBook Pro M5 Pro", "brand": "Apple", "price": 58499000, "handle": "16-inch-macbook-pro-m5-pro", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-1.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-2.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-3.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-4.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-5.jpg?v=1778420627", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-6.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-7.jpg?v=1778420627", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEA4ID-A-8.jpg?v=1778420625" ], "options": [ { "name": "color", "values": [ "Space Black" ] }, { "name": "size", "values": [ "24GB-1T" ] } ], "variants": [ { "sku": "0788-APPMGEA4ID-A", "name": "Space Black / 24GB-1T", "price": 58499000, "available": false, "listPrice": 58499000, "variantId": "47814943768727" } ], "listPrice": 58499000, "productId": "9609408938135", "description": "MacBook Pro 16 inci dengan chip M5 Pro atau M5 Max menghadirkan kecepatan generasi berikutnya dan AI yang andal pada perangkat untuk tugas pribadi, profesional, dan kreatif. Pro dalam segala hal, dengan kekuatan baterai sepanjang hari dan layar Liquid Retina XDR yang menawan.1 Poin-poin fitur utama SIAP MELAJU CEPAT — Bersama CPU generasi berikutnya, memori terintegrasi yang lebih cepat, dan penyimpanan SSD hingga 2x lebih cepat,2 M5 Pro dan M5 Max dilengkapi GPU yang lebih andal dengan Neural Accelerator yang terpasang di setiap core, menghadirkan performa AI yang lebih cepat dan kemampuan pe", "publishedAt": "2026-05-25T10:41:38+07:00" }, { "url": "https://www.digimap.co.id/products/16-inch-macbook-pro-m5-max", "name": "16-inch MacBook Pro M5 Max", "brand": "Apple", "price": 86999000, "handle": "16-inch-macbook-pro-m5-max", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-1.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-2.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-3.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-4.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-5.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-6.jpg?v=1778420629", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-7.jpg?v=1778420629", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGED4ID-A-8.jpg?v=1778420625" ], "options": [ { "name": "color", "values": [ "Space Black" ] }, { "name": "size", "values": [ "36GB-2T" ] } ], "variants": [ { "sku": "0788-APPMGED4ID-A", "name": "Space Black / 36GB-2T", "price": 86999000, "available": false, "listPrice": 86999000, "variantId": "47814943801495" } ], "listPrice": 86999000, "productId": "9609408905367", "description": "MacBook Pro 16 inci dengan chip M5 Pro atau M5 Max menghadirkan kecepatan generasi berikutnya dan AI yang andal pada perangkat untuk tugas pribadi, profesional, dan kreatif. Pro dalam segala hal, dengan kekuatan baterai sepanjang hari dan layar Liquid Retina XDR yang menawan.1 Poin-poin fitur utama SIAP MELAJU CEPAT — Bersama CPU generasi berikutnya, memori terintegrasi yang lebih cepat, dan penyimpanan SSD hingga 2x lebih cepat,2 M5 Pro dan M5 Max dilengkapi GPU yang lebih andal dengan Neural Accelerator yang terpasang di setiap core, menghadirkan performa AI yang lebih cepat dan kemampuan pe", "publishedAt": "2026-05-25T10:41:38+07:00" }, { "url": "https://www.digimap.co.id/products/16-inch-macbook-pro-m5-pro-1", "name": "16-inch MacBook Pro M5 Pro", "brand": "Apple", "price": 70999000, "handle": "16-inch-macbook-pro-m5-pro-1", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-1.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-2.jpg?v=1778420630", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-3.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-4.jpg?v=1778420625", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-5.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-6.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-7.jpg?v=1778420626", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMGEC4ID-A-8.jpg?v=1778420625" ], "options": [ { "name": "color", "values": [ "Space Black" ] }, { "name": "size", "values": [ "48GB-1T" ] } ], "variants": [ { "sku": "0788-APPMGEC4ID-A", "name": "Space Black / 48GB-1T", "price": 70999000, "available": false, "listPrice": 70999000, "variantId": "47814943998103" } ], "listPrice": 70999000, "productId": "9609409200279", "description": "MacBook Pro 16 inci dengan chip M5 Pro atau M5 Max menghadirkan kecepatan generasi berikutnya dan AI yang andal pada perangkat untuk tugas pribadi, profesional, dan kreatif. Pro dalam segala hal, dengan kekuatan baterai sepanjang hari dan layar Liquid Retina XDR yang menawan.1 Poin-poin fitur utama SIAP MELAJU CEPAT — Bersama CPU generasi berikutnya, memori terintegrasi yang lebih cepat, dan penyimpanan SSD hingga 2x lebih cepat,2 M5 Pro dan M5 Max dilengkapi GPU yang lebih andal dengan Neural Accelerator yang terpasang di setiap core, menghadirkan performa AI yang lebih cepat dan kemampuan pe", "publishedAt": "2026-05-25T10:41:37+07:00" } ], "hasMore": true, "nextPage": 2, "totalData": null, "totalDataText": null } ``` --- ### Collections collections (categories), paged - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/collections` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `page` | number | query | no | Result page. Default 1 | | `limit` | number | query | no | Items per page. Default 50, max 250 (upstream cap) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/collections?page=1&limit=50" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/collections?page=1&limit=50", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/collections?page=1&limit=50", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 20, "items": [ { "url": "https://www.digimap.co.id/collections/accessories", "name": "accessories", "handle": "accessories", "updatedAt": "2026-09-14T18:14:52+07:00", "collectionId": "299999002775", "productCount": 5 }, { "url": "https://www.digimap.co.id/collections/accessories-complete-collection", "name": "Accessories Complete Collection", "image": "https://cdn.shopify.com/s/files/1/0640/4761/2055/collections/752_macbook_pro_flex_accessories_small_2x_752_macbook_pro_78f20862-c564-4f32-8456-4f862c6ed62b.png?v=1789528294", "handle": "accessories-complete-collection", "updatedAt": "2026-09-17T18:16:48+07:00", "collectionId": "326898221207", "productCount": 128 }, { "url": "https://www.digimap.co.id/collections/airpods", "name": "AirPods", "handle": "airpods", "updatedAt": "2026-08-13T02:38:38+07:00", "collectionId": "300000706711", "productCount": 1 }, { "url": "https://www.digimap.co.id/collections/airpods-2nd-gen", "name": "AirPods (2nd gen)", "handle": "airpods-2nd-gen", "updatedAt": "2026-08-13T02:38:41+07:00", "collectionId": "302307836055", "productCount": 1 }, { "url": "https://www.digimap.co.id/collections/airpods-3rd-gen", "name": "AirPods (3rd gen)", "handle": "airpods-3rd-gen", "updatedAt": "2026-08-13T02:38:31+07:00", "collectionId": "300572344471", "productCount": 2 }, { "url": "https://www.digimap.co.id/collections/airpods-4", "name": "Airpods 4", "handle": "airpods-4", "updatedAt": "2026-09-17T18:16:48+07:00", "collectionId": "306574655639", "productCount": 2 }, { "url": "https://www.digimap.co.id/collections/airpods-1", "name": "AirPods 4 & AirPods Pro 3", "handle": "airpods-1", "updatedAt": "2026-09-17T18:16:48+07:00", "collectionId": "324376559767", "productCount": 3 }, { "url": "https://www.digimap.co.id/collections/airpods-max", "name": "AirPods Max", "handle": "airpods-max", "updatedAt": "2026-09-13T18:15:04+07:00", "collectionId": "300000673943", "productCount": 2 } ], "hasMore": true, "nextPage": 2, "totalData": null, "totalDataText": null } ``` --- ### Collection one collection's detail - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/collection` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `collection` | string | query | yes | Collection handle, or a collection URL | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/collection?collection=all" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/collection?collection=all", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/collection?collection=all", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.digimap.co.id/collections/accessories", "name": "accessories", "handle": "accessories", "updatedAt": "2026-09-14T18:14:52+07:00", "publishedAt": "2024-05-30T10:48:50+07:00", "collectionId": "299999002775", "productCount": 5 } ``` --- ### Collection Products products inside one collection, paged - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/collection-products` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `collection` | string | query | yes | Collection handle, or a collection URL | | `page` | number | query | no | Result page. Default 1 | | `limit` | number | query | no | Items per page. Default 50, max 250 (upstream cap) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/collection-products?collection=all&page=1&limit=50" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/collection-products?collection=all&page=1&limit=50", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/collection-products?collection=all&page=1&limit=50", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 5, "items": [ { "url": "https://www.digimap.co.id/products/airpods-3rd-generation-with-lightning-charging-case-mpny3id-a", "name": "AirPods (3rd generation) with Lightning Charging Case", "tags": [ "synced" ], "brand": "Apple", "price": 2499000, "handle": "airpods-3rd-generation-with-lightning-charging-case-mpny3id-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-1__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-2__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-3__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-4__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-5__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-6__GBEN.jpg?v=1717742672", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/Airpods_PDP_Image_Position-8__GBEN.jpg?v=1717742672" ], "category": "AirPods", "variants": [ { "sku": "0788-APPMPNY3ID-A", "price": 2499000, "available": false, "listPrice": 2499000, "variantId": "44327880654999" } ], "listPrice": 2499000, "productId": "8434276139159", "description": "Memperkenalkan AirPods yang sepenuhnya baru. Dilengkapi audio spasial yang menghadirkan suara yang mengelilingi Anda (1), EQ Adaptif yang secara otomatis mengatur musik sesuai telinga Anda, dan kekuatan baterai lebih lama (2). Tahan air dan keringat serta menghadirkan pengalaman yang menakjubkan (3).", "publishedAt": "2024-06-18T17:11:32+07:00" }, { "url": "https://www.digimap.co.id/products/240w-usb-c-charge-cable-2m-mu2g3za-a", "name": "240W USB-C Charge Cable (2m)", "tags": [ "synced" ], "brand": "Apple", "price": 549000, "handle": "240w-usb-c-charge-cable-2m-mu2g3za-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/240w-usb-c-charge-cable-2-m_MU2G3_6b9edc5f-1ffa-463c-a70f-ea36889f7d46.png?v=1717742599", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/240w-usb-c-charge-cable-2-m_MU2G3_AV1_f72c2869-91eb-4281-904f-44ac7072596b.png?v=1717742599" ], "category": "Accessories", "variants": [ { "sku": "0788-APPMU2G3ZA-A", "price": 549000, "available": false, "listPrice": 549000, "variantId": "44327876264087" } ], "listPrice": 549000, "productId": "8434273419415", "description": "This 2-metre charging cable is made with a woven design — with USB-C connectors on both ends — and is ideal for charging, syncing and transferring data between USB-C devices. It supports charging of up to 240 watts and transfers data at USB 2 rates. Pair the USB-C Charge Cable with a compatible USB-C power adapter to conveniently charge your devices from a power point and take advantage of fast-charging capabilities. USB-C power adapters sold separately.", "publishedAt": "2024-06-18T17:10:39+07:00" }, { "url": "https://www.digimap.co.id/products/35w-dual-usb-c-port-power-adapter-mw2k3za-a", "name": "35W Dual USB-C Port Power Adapter", "tags": [ "synced" ], "brand": "Apple", "price": 1199000, "handle": "35w-dual-usb-c-port-power-adapter-mw2k3za-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/35w-dual-usb-c-port-power-adapter_MNWP3_GEO_VN.png?v=1717742070", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/35w-dual-usb-c-port-power-adapter_MNWP3_AV1_GEO_VN.png?v=1717742070", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/35w-dual-usb-c-port-power-adapter_MNWP3_AV2_GEO_VN.png?v=1717742070" ], "category": "Accessories", "variants": [ { "sku": "0788-APPMW2K3ZA-A", "price": 1199000, "available": true, "listPrice": 1199000, "variantId": "44327847886999" } ], "available": true, "listPrice": 1199000, "productId": "8434253365399", "description": "The 35W Dual USB‑C Port Power Adapter allows you to charge two devices at the same time, whether you’re at home, in the office or on the go. Apple recommends using it with MacBook Air. You can also use it with iPhone, iPad, Apple Watch and AirPods.", "publishedAt": "2025-06-18T17:56:03+07:00" }, { "url": "https://www.digimap.co.id/products/60w-usb-c-charge-cable-1m-mqkj3za-a", "name": "60W USB-C Charge Cable (1m)", "tags": [ "synced" ], "brand": "Apple", "price": 409000, "handle": "60w-usb-c-charge-cable-1m-mqkj3za-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/MQKJ3.jpg?v=1717742614", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/MQKJ3_AV1.jpg?v=1717742614" ], "category": "Accessories", "variants": [ { "sku": "0788-APPMQKJ3ZA-A", "price": 409000, "available": false, "listPrice": 409000, "variantId": "44327877640343" } ], "listPrice": 409000, "productId": "8434274173079", "description": "This 1-metre charge cable is made with a woven design — with USB-C connectors on both ends — and is ideal for charging, syncing and transferring data between USB-C devices. Pair the USB-C Woven Charge Cable with a compatible USB-C power adapter to conveniently charge your devices from a power point and take advantage of fast-charging capabilities. USB-C power adapters sold separately.", "publishedAt": "2024-06-18T17:10:50+07:00" }, { "url": "https://www.digimap.co.id/products/iphone-15-plus-silicone-case-with-magsafe-mwnf3fe-a", "name": "iPhone 15 Plus Silicone Case with MagSafe - Sunshine", "tags": [ "synced" ], "brand": "Apple", "price": 999000, "handle": "iphone-15-plus-silicone-case-with-magsafe-mwnf3fe-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iphone-15-plus-silicone-case-with-magsafe-sunshine_MWNF3.png?v=1717736119", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iphone-15-plus-silicone-case-with-magsafe-sunshine_MWNF3_AV1.png?v=1717736118", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iphone-15-plus-silicone-case-with-magsafe-sunshine_MWNF3_AV2.png?v=1717736119", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iphone-15-plus-silicone-case-with-magsafe-sunshine_MWNF3_AV3.png?v=1717736119", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iphone-15-plus-silicone-case-with-magsafe-sunshine_MWNF3_AV4.png?v=1717736119", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/MWNF3FE-A_sunshine_MWNF3_SW_COLOR.png?v=1717736118" ], "category": "Accessories", "variants": [ { "sku": "0788-APPMWNF3FE-A", "price": 999000, "available": false, "listPrice": 999000, "variantId": "44327534624919" } ], "listPrice": 999000, "productId": "8434067734679", "description": "Designed by Apple to complement iPhone 15 Plus, the Silicone Case with MagSafe is a delightful way to protect your iPhone.", "publishedAt": "2024-06-18T16:39:40+07:00" } ], "hasMore": false, "nextPage": null, "totalData": null, "collection": "accessories", "totalDataText": null } ``` --- ### Search search products, collections and query suggestions - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/search` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | | `limit` | number | query | no | Results per resource. Default 10, max 10 (upstream cap) | | `types` | string | query | no | Comma list of what to return: product, collection, query (autocomplete terms). Default product | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/search?query=jacket&limit=10&types=product%2Ccollection%2Cquery" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/search?query=jacket&limit=10&types=product%2Ccollection%2Cquery", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/search?query=jacket&limit=10&types=product%2Ccollection%2Cquery", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 3, "items": [ { "url": "https://www.digimap.co.id/products/iphone-15-mtp13id-a", "name": "iPhone 15 128GB Pink", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp13id-a", "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "available": true, "listPrice": 15499000, "productId": "8433971593367", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1__GBEN_863e22ef-a1c6-4031-8bf7-1ac9a9c5a086.jpg?v=1717731724" }, { "url": "https://www.digimap.co.id/products/iphone-15-mtp03id-a", "name": "iPhone 15 128GB Black", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp03id-a", "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "available": true, "listPrice": 15499000, "productId": "8433969725591", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-1__GBEN_39c3c699-48d1-441b-bb96-fea1a1a5e8a7.jpg?v=1717731569" }, { "url": "https://www.digimap.co.id/products/iphone-15-mtp43id-a", "name": "iPhone 15 128GB Blue", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp43id-a", "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "available": true, "listPrice": 15499000, "productId": "8433970610327", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-1__GBEN_d5025ff9-751b-4bf8-bc45-c38ad07add6e.jpg?v=1717731647" } ], "query": "iphone", "collections": [ { "url": "https://www.digimap.co.id/collections/all-iphone?_pos=1&_psq=iphone&_psid=fc47a529d&_ss=e", "name": "All iPhone", "handle": "all-iphone", "collectionId": "324376526999" }, { "url": "https://www.digimap.co.id/collections/iphone-17e?_pos=2&_psq=iphone&_psid=fc47a529d&_ss=e", "name": "iPhone 17e", "handle": "iphone-17e", "collectionId": "321833336983" }, { "url": "https://www.digimap.co.id/collections/iphone-air?_pos=3&_psq=iphone&_psid=fc47a529d&_ss=e", "name": "iPhone Air", "handle": "iphone-air", "collectionId": "313923010711" } ], "suggestions": [ { "url": "https://www.digimap.co.id/search?q=iphone+15&_pos=1&_psq=iphone&_psid=fc47a529d&_ss=e", "text": "iphone 15" }, { "url": "https://www.digimap.co.id/search?q=iphone+17&_pos=2&_psq=iphone&_psid=fc47a529d&_ss=e", "text": "iphone 17" }, { "url": "https://www.digimap.co.id/search?q=iphone+13&_pos=3&_psq=iphone&_psid=fc47a529d&_ss=e", "text": "iphone 13" }, { "url": "https://www.digimap.co.id/search?q=iphone&_pos=4&_psq=iphone&_psid=fc47a529d&_ss=e", "text": "iphone" } ] } ``` --- ### Related related products for one product - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/related` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `productId` | string | query | yes | Numeric product id (the `productId` field of a product response) | | `limit` | number | query | no | How many related products. Default 10, max 10 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/related?productId=10068493762873&limit=10" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/related?productId=10068493762873&limit=10", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/related?productId=10068493762873&limit=10", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 10, "items": [ { "url": "https://www.digimap.co.id/products/airpods-pro-3", "name": "AirPods Pro 3", "brand": "Apple", "price": 4399000, "handle": "airpods-pro-3", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-1.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-2.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-3.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-4.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-5.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-6.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-7.jpg?v=1762255013", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-8.jpg?v=1762255013" ], "options": [ { "name": "size", "values": [ "One Size" ] }, { "name": "color", "values": [ "White" ] } ], "priceMax": 4399000, "priceMin": 4399000, "variants": [ { "sku": "0788-APPMFHP4ID-A", "name": "One Size / White", "price": 4399000, "options": [ "One Size", "White" ], "available": true, "listPrice": 4499000, "variantId": "46245090754711" } ], "available": true, "listPrice": 4499000, "productId": "9214886051991", "description": "AirPods Pro 3. Akses Tes Pendengaran, fitur Alat Bantu Dengar (1), dengan kekuatan baterai hingga 10 jam dengan mode Transparansi (2), dan Pengurangan Bunyi Keras aktif, semuanya dalam satu pengalaman tanpa cela. Juga dengan Peredam Kebisingan Aktif dalam telinga terbaik di dunia (3), sensor detak jantung untuk berolahraga (4), dan pemakaian yang sangat pas. Legal 1. Fitur Tes Pendengaran dan Alat Bantu Dengar didukung pada AirPods Pro 2 dan lebih baru dengan firmware terbaru yang dipasangkan dengan iPhone atau iPad yang kompatibel dengan iOS 18 atau iPadOS 18 dan lebih baru, dan ditujukan unt", "publishedAt": "2025-11-17T09:25:45+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFHP4ID-A-1.jpg?v=1762255013" }, { "url": "https://www.digimap.co.id/products/iphone-15-mtp13id-a", "name": "iPhone 15 128GB Pink", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp13id-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1__GBEN_863e22ef-a1c6-4031-8bf7-1ac9a9c5a086.jpg?v=1717731724", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1_alt__GBEN_033e87e8-7f52-474a-bf43-0ee75e7a0315.jpg?v=1717731724", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-2__GBEN_b9925e4a-b1d4-469f-94b9-618929e473a3.jpg?v=1717731724", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-3__GBEN_ba89d911-8ef8-4c2a-86e0-7564ef9c220f.jpg?v=1717731725", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-4__GBEN_5edc1eff-e2b5-4026-a985-39233c854528.jpg?v=1717731725", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-5__GBEN_80781655-a045-49fb-83be-b1cc88ce1dec.jpg?v=1717731724", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-6__GBEN_75f5384f-757a-46cd-ad4c-348c1288a5ba.jpg?v=1717731724", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-7__GBEN_3aab5f45-a1ca-4833-b7e5-c2981fbbd5f2.jpg?v=1717731724" ], "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "variants": [ { "sku": "0788-APPMTP13ID-A", "price": 15499000, "barcode": "195949036132", "available": true, "listPrice": 15499000, "variantId": "44327345619095" } ], "available": true, "listPrice": 15499000, "productId": "8433971593367", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "publishedAt": "2025-01-14T10:24:36+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Pink_PDP_Image_Position-1__GBEN_863e22ef-a1c6-4031-8bf7-1ac9a9c5a086.jpg?v=1717731724" }, { "url": "https://www.digimap.co.id/products/iphone-15-mtp03id-a", "name": "iPhone 15 128GB Black", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp03id-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-1__GBEN_39c3c699-48d1-441b-bb96-fea1a1a5e8a7.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-1_alt__GBEN_46733a27-83e5-42d5-82f6-f54699f24a09.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-2__GBEN_956509b7-7492-4546-bc0c-10ec2ad849ec.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-3__GBEN_15db4ab9-a849-484c-a6d7-e77b0399902e.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-4__GBEN_dfbdd65e-10b3-4e04-b092-e705afd36502.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-5__GBEN_f6f04f94-10c3-4d5b-b79e-72e2f78347e2.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-6__GBEN_67b4b35f-61f0-4558-8872-ade74795fe1a.jpg?v=1717731569", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-7__GBEN_5909efe7-51a2-425f-b3c2-1693c1280a9b.jpg?v=1717731569" ], "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "variants": [ { "sku": "0788-APPMTP03ID-A", "price": 15499000, "barcode": "195949035951", "available": true, "listPrice": 15499000, "variantId": "44327341981847" } ], "available": true, "listPrice": 15499000, "productId": "8433969725591", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "publishedAt": "2025-01-14T10:24:33+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Black_PDP_Image_Position-1__GBEN_39c3c699-48d1-441b-bb96-fea1a1a5e8a7.jpg?v=1717731569" }, { "url": "https://www.digimap.co.id/products/iphone-15-mtp43id-a", "name": "iPhone 15 128GB Blue", "tags": [ "synced" ], "brand": "Apple", "price": 15499000, "handle": "iphone-15-mtp43id-a", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-1__GBEN_d5025ff9-751b-4bf8-bc45-c38ad07add6e.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-1_alt__GBEN_a413c413-91df-407a-8716-fa3e0deade95.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-2__GBEN_c75d5f40-ea51-4a81-976d-34127b444f82.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-3__GBEN_3320e155-a6a1-4fd2-9bbe-68436deb4aba.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-4__GBEN_faacb620-147e-4f25-ace6-20fdb344b628.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-5__GBEN_663f1630-8232-4136-a60d-37f8c2bb7a00.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-6__GBEN_0bdef8cf-7124-4581-9fac-7e8d2f172268.jpg?v=1717731647", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_PDP_Image_Position-7__GBEN_be234d50-1793-466c-87c6-d8e7ef9cf395.jpg?v=1717731647" ], "category": "iPhone", "priceMax": 15499000, "priceMin": 15499000, "variants": [ { "sku": "0788-APPMTP43ID-A", "price": 15499000, "barcode": "195949036491", "available": true, "listPrice": 15499000, "variantId": "44327343554711" } ], "available": true, "listPrice": 15499000, "productId": "8433970610327", "description": "iPhone 15 menghadirkan Dynamic Island, kamera Utama 48 MP, dan USB-C — semuanya dalam desain aluminium dan kaca berwarna yang tangguh.", "publishedAt": "2025-01-14T10:24:34+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/iPhone_15_Blue_PDP_Image_Position-1__GBEN_d5025ff9-751b-4bf8-bc45-c38ad07add6e.jpg?v=1717731647" }, { "url": "https://www.digimap.co.id/products/iphone-17-pro-256gb-silver", "name": "iPhone 17 Pro 256GB Silver", "brand": "Apple", "price": 22999000, "handle": "iphone-17-pro-256gb-silver", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-1.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-2.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-3.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-4.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-5.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-6.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-7.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-8.jpg?v=1759804337" ], "options": [ { "name": "size", "values": [ "256GB" ] }, { "name": "color", "values": [ "Silver" ] } ], "priceMax": 22999000, "priceMin": 22999000, "variants": [ { "sku": "0788-APPMG8G4ID-A", "name": "256GB / Silver", "price": 22999000, "options": [ "256GB", "Silver" ], "available": true, "listPrice": 24999000, "variantId": "46167835377815" } ], "available": true, "listPrice": 24999000, "productId": "9183584714903", "description": "iPhone 17 Pro. iPhone paling andal yang pernah ada. Layar 6,3 inci yang cemerlang,1 desain unibody aluminium, chip A19 Pro, semua kamera belakang 48 MP, dan terobosan kekuatan baterai. Poin-poin fitur utama DESAIN UNIBODY. UNTUK KEANDALAN MENGAGUMKAN. — Unibody aluminium, ditempa dalam suhu tinggi untuk iPhone paling andal yang pernah dibuat. CERAMIC SHIELD TANGGUH. DEPAN DAN BELAKANG. — Ceramic Shield melindungi bagian belakang iPhone 17 Pro Max, membuatnya 4x lipat lebih tahan retak.2 Dan Ceramic Shield 2 baru di bagian depan 3x lipat lebih tahan gores.3 SISTEM KAMERA PRO PALING MAKSIMAL — D", "publishedAt": "2025-11-29T18:35:28+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8G4ID-A-1.jpg?v=1759804337" }, { "url": "https://www.digimap.co.id/products/iphone-17-pro-max-256gb-silver", "name": "iPhone 17 Pro Max 256GB Silver", "brand": "Apple", "price": 24999000, "handle": "iphone-17-pro-max-256gb-silver", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-1.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-2.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-3.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-4.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-5.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-6.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-7.jpg?v=1759804401", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-8.jpg?v=1759804401" ], "options": [ { "name": "size", "values": [ "256GB" ] }, { "name": "color", "values": [ "Silver" ] } ], "priceMax": 24999000, "priceMin": 24999000, "variants": [ { "sku": "0788-APPMFYM4ID-A", "name": "256GB / Silver", "price": 24999000, "options": [ "256GB", "Silver" ], "available": true, "listPrice": 26999000, "variantId": "46167836328087" } ], "available": true, "listPrice": 26999000, "productId": "9183585534103", "description": "iPhone 17 Pro Max. iPhone paling andal yang pernah ada. Layar 6,9 inci yang cemerlang1, desain unibody aluminium, chip A19 Pro, semua kamera belakang 48 MP, dan kekuatan baterai terbaik. Poin-poin fitur utama DESAIN UNIBODY. UNTUK KEANDALAN MENGAGUMKAN. — Desain unibody aluminium, ditempa dalam suhu tinggi, untuk iPhone paling andal yang pernah dibuat. CERAMIC SHIELD TANGGUH. DEPAN DAN BELAKANG. — Ceramic Shield melindungi bagian belakang iPhone 17 Pro Max, membuatnya 4x lipat lebih tahan retak.2 Dan Ceramic Shield 2 baru di bagian depan 3x lipat lebih tahan gores.3 SISTEM KAMERA PRO PALING MA", "publishedAt": "2025-11-21T13:23:10+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMFYM4ID-A-1.jpg?v=1759804401" }, { "url": "https://www.digimap.co.id/products/iphone-17-pro-256gb-cosmic-orange", "name": "iPhone 17 Pro 256GB Cosmic Orange", "brand": "Apple", "price": 22999000, "handle": "iphone-17-pro-256gb-cosmic-orange", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-1.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-2.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-3.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-4.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-5.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-6.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-7.jpg?v=1759804292", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-8.jpg?v=1759804292" ], "options": [ { "name": "size", "values": [ "256GB" ] }, { "name": "color", "values": [ "Cosmic Orange" ] } ], "priceMax": 22999000, "priceMin": 22999000, "variants": [ { "sku": "0788-APPMG8H4ID-A", "name": "256GB / Cosmic Orange", "price": 22999000, "options": [ "256GB", "Cosmic Orange" ], "available": true, "listPrice": 24999000, "variantId": "46167835508887" } ], "available": true, "listPrice": 24999000, "productId": "9183584747671", "description": "iPhone 17 Pro. iPhone paling andal yang pernah ada. Layar 6,3 inci yang cemerlang,1 desain unibody aluminium, chip A19 Pro, semua kamera belakang 48 MP, dan terobosan kekuatan baterai. Poin-poin fitur utama DESAIN UNIBODY. UNTUK KEANDALAN MENGAGUMKAN. — Unibody aluminium, ditempa dalam suhu tinggi untuk iPhone paling andal yang pernah dibuat. CERAMIC SHIELD TANGGUH. DEPAN DAN BELAKANG. — Ceramic Shield melindungi bagian belakang iPhone 17 Pro Max, membuatnya 4x lipat lebih tahan retak.2 Dan Ceramic Shield 2 baru di bagian depan 3x lipat lebih tahan gores.3 SISTEM KAMERA PRO PALING MAKSIMAL — D", "publishedAt": "2025-10-08T10:04:37+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG8H4ID-A-1.jpg?v=1759804292" }, { "url": "https://www.digimap.co.id/products/iphone-17-256gb-lavender", "name": "iPhone 17 256GB Lavender", "brand": "Apple", "price": 20499000, "handle": "iphone-17-256gb-lavender", "images": [ "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-1_5ff00305-55b3-42e0-be02-cd36ec318b7f.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-2.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-3.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-4.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-5.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-6.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-7.jpg?v=1759804337", "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-8.jpg?v=1759804337" ], "options": [ { "name": "size", "values": [ "256GB" ] }, { "name": "color", "values": [ "Lavender" ] } ], "priceMax": 20499000, "priceMin": 20499000, "variants": [ { "sku": "0788-APPMG6M4ID-A", "name": "256GB / Lavender", "price": 20499000, "options": [ "256GB", "Lavender" ], "available": true, "listPrice": 20499000, "variantId": "46167835639959" } ], "available": true, "listPrice": 20499000, "productId": "9183584977047", "description": "iPhone 17. Makin menyenangkan. Makin tahan lama. Layar ProMotion 6,3 inci,1 Ceramic Shield 2, semua kamera belakang 48 MP, kamera depan Center Stage, chip A19, dan banyak lagi. Poin-poin fitur utama DIRANCANG UNTUK MENYENANGKAN. DIBUAT UNTUK LEBIH TAHAN LAMA. — iPhone 17 hadir dalam lima warna memukau, dengan layar 6,3 inci yang lebih terang,1 dan bagian depan Ceramic Shield 2 yang 3x lipat lebih tahan gores.2 LAYAR 6,3 INCI DENGAN PROMOTION. LEBIH TERANG. CEMERLANG. — Pengguliran lancar dengan ProMotion hingga 120 Hz, kontras luar ruangan yang lebih baik dengan kecerahan puncak 3.000 nit, dan", "publishedAt": "2025-10-08T10:04:39+07:00", "defaultImage": "https://cdn.shopify.com/s/files/1/0640/4761/2055/files/0788-APPMG6M4ID-A-1_5ff00305-55b3-42e0-be02-cd36ec318b7f.jpg?v=1759804337" } ], "productId": "9615636463767" } ``` --- ### Variant one variant: price, stock and options - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/variant` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `variantId` | string | query | yes | Numeric variant id (the `variantId` field of a product response) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/variant?variantId=51433424847161" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/variant?variantId=51433424847161", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/variant?variantId=51433424847161", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "sku": "0788-APPMHWP4ID-A", "name": "Purple / One Size", "price": 10499000, "weight": 1000, "options": [ "Purple", "One Size" ], "listPrice": 10499000, "productId": "9615636463767", "variantId": "47839579799703", "weightUnit": "g", "requiresShipping": true } ``` --- ### Shop storefront profile - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/marketplace:digimap/shop` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `x` | string | query | no | Unused — this endpoint takes no input | **cURL:** ```bash curl "https://api.zpi.web.id/v1/marketplace:digimap/shop?x=VALUE" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/marketplace:digimap/shop?x=VALUE", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/marketplace:digimap/shop?x=VALUE", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://www.digimap.co.id", "city": "Kota Jakarta Pusat", "host": "www.digimap.co.id", "name": "Digimap Indonesia", "shopId": "64047612055", "country": "ID", "currency": "IDR", "province": "Jakarta", "description": "Beli iPhone, MacBook, iPad, Apple Watch, dan aksesoris Apple original di Digimap Indonesia. Apple Authorized Reseller dengan garansi resmi, cicilan hingga 24 bulan, dan promo menarik." } ``` --- _Generated: 2026-09-18T09:30:08.213Z_