zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Finance/Antam
Logo Antam

Antam

Antam's own price list — the Indonesian retail gold benchmark, quoted per bar

Endpoints
2
Requests
322
Updated
5 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • harganot measured
  • buybacknot measured
no measurements yetdaily 01:00 WIB

Playground

2 endpoints
GET/v1/finance:antam/harga1h cache2 paramschecking key…
Parameters
seriesstring

Filter by series name, case-insensitive substring. Omit for every series.

metalenum

Restrict to gold or silver products. Default all.

·
Response
EXAMPLE
{
  "asOf": "2026-08-21",
  "count": 17,
  "items": [
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 1412500,
      "taxedPrice": 1416031,
      "weightGram": 0.5,
      "weightText": "0.5 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 1416031
        }
      ],
      "basePricePerGram": 2825000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 2725000,
      "taxedPrice": 2731813,
      "weightGram": 1,
      "weightText": "1 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 2731813
        }
      ],
      "basePricePerGram": 2725000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 5390000,
      "taxedPrice": 5403475,
      "weightGram": 2,
      "weightText": "2 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 5403475
        }
      ],
      "basePricePerGram": 2695000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 8060000,
      "taxedPrice": 8080150,
      "weightGram": 3,
      "weightText": "3 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 8080150
        }
      ],
      "basePricePerGram": 2686667
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 13400000,
      "taxedPrice": 13433500,
      "weightGram": 5,
      "weightText": "5 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 13433500
        }
      ],
      "basePricePerGram": 2680000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 26745000,
      "taxedPrice": 26811863,
      "weightGram": 10,
      "weightText": "10 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 26811863
        }
      ],
      "basePricePerGram": 2674500
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 66737000,
      "taxedPrice": 66903843,
      "weightGram": 25,
      "weightText": "25 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 66903843
        }
      ],
      "basePricePerGram": 2669480
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 133395000,
      "taxedPrice": 133728488,
      "weightGram": 50,
      "weightText": "50 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 133728488
        }
      ],
      "basePricePerGram": 2667900
    }
  ],
  "metal": "all",
  "total": 23,
  "series": "batangan",
  "dataset": "harga",
  "currency": "IDR",
  "provider": "antam",
  "seriesAvailable": [
    "Emas Batangan",
    "Emas Batangan Gift Series",
    "Emas Batangan Batik Seri III",
    "Emas Batangan Karapan Sapi",
    "Koin Perak Gunung Bromo",
    "Perak Murni",
    "Perak Heritage",
    "Liontin Batik Seri III"
  ]
}

Code examples

Harga
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

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

const data = await client.run("finance:antam", "harga", {
  "series": "batangan",
  "metal": "gold"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:antam/harga?series=batangan&metal=gold" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

2 endpoints · plain text
GETHarga/v1/finance:antam/hargaAntam's own price list — the Indonesian retail gold benchmark, quoted per bar

Parameters

seriesstringoptional
Filter by series name, case-insensitive substring. Omit for every series.
metalenumoptional
Restrict to gold or silver products. Default all. Values: gold, silver, all.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:antam/harga?series=batangan&metal=gold" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "asOf": "2026-08-21",
  "count": 17,
  "items": [
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 1412500,
      "taxedPrice": 1416031,
      "weightGram": 0.5,
      "weightText": "0.5 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 1416031
        }
      ],
      "basePricePerGram": 2825000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 2725000,
      "taxedPrice": 2731813,
      "weightGram": 1,
      "weightText": "1 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 2731813
        }
      ],
      "basePricePerGram": 2725000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 5390000,
      "taxedPrice": 5403475,
      "weightGram": 2,
      "weightText": "2 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 5403475
        }
      ],
      "basePricePerGram": 2695000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 8060000,
      "taxedPrice": 8080150,
      "weightGram": 3,
      "weightText": "3 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 8080150
        }
      ],
      "basePricePerGram": 2686667
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 13400000,
      "taxedPrice": 13433500,
      "weightGram": 5,
      "weightText": "5 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 13433500
        }
      ],
      "basePricePerGram": 2680000
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 26745000,
      "taxedPrice": 26811863,
      "weightGram": 10,
      "weightText": "10 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 26811863
        }
      ],
      "basePricePerGram": 2674500
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 66737000,
      "taxedPrice": 66903843,
      "weightGram": 25,
      "weightText": "25 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 66903843
        }
      ],
      "basePricePerGram": 2669480
    },
    {
      "metal": "gold",
      "series": "Emas Batangan",
      "taxLabel": "Harga (+Pajak PPh 0.25%)",
      "basePrice": 133395000,
      "taxedPrice": 133728488,
      "weightGram": 50,
      "weightText": "50 gr",
      "taxedPrices": [
        {
          "label": "Harga (+Pajak PPh 0.25%)",
          "price": 133728488
        }
      ],
      "basePricePerGram": 2667900
    }
  ],
  "metal": "all",
  "total": 23,
  "series": "batangan",
  "dataset": "harga",
  "currency": "IDR",
  "provider": "antam",
  "seriesAvailable": [
    "Emas Batangan",
    "Emas Batangan Gift Series",
    "Emas Batangan Batik Seri III",
    "Emas Batangan Karapan Sapi",
    "Koin Perak Gunung Bromo",
    "Perak Murni",
    "Perak Heritage",
    "Liontin Batik Seri III"
  ]
}
GETBuyback/v1/finance:antam/buybackWhat Antam pays to take a bar back. One number for the whole product line — the

Parameters

xstringoptional
Unused — the buyback price takes no parameters.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:antam/buyback?x=" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "metal": "gold",
  "dataset": "buyback",
  "currency": "IDR",
  "provider": "antam",
  "pricePerGram": 2585000,
  "appliesToAllDenominations": true
}

Related APIs

More in finance

Pluang

finance/pluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

27.9K calls·1d cache

Binance Vision

finance/binance-vision

Binance's public bulk archive: klines, 5-minute open-interest and long/short metrics, funding, book depth and liquidations, back to 2017.

7.9K calls·1d cache

TradingView

finance/tradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

57K calls·1d cache

Stockbit

finance/stockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

17.7K calls·1d cache

Mempool Space

finance/mempool-space

Recommended fee tiers in sat/vB, as mempool.space's own estimator sees them.

1.1K calls·2m cache

Etherscan

finance/etherscan

Current gas price tiers and base fee, from Etherscan's V2 multichain API.

683 calls·30s cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026