zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Finance/Antam
Logo Antam

Antam

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

2 endpoints2 endpoints on this scraper357 calls357 calls so farupdated last monthLast updated 8/21/2026, 2:23:43 AMBusy: 10+ calls so farllms.txt
Endpoints2

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

Harga

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

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

Harga
index.ts
// 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);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

2 endpoints · plain text
GET
Harga/v1/finance:antam/harga
2 params

Antam'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.zapi.ink/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"
  ]
}
GET
Buyback/v1/finance:antam/buyback
1 param

What 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.zapi.ink/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

financepluang

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.

1.7M1.7M calls so far1dResponses cached for 1d
Busy: 10+ calls so far

IDX (Bursa Efek Indonesia)

financeidx

Data Bursa Efek Indonesia: ringkasan saham & indeks, top movers, broker, emiten, laporan keuangan, berita, dan passthrough ke ratusan endpoint /primary/.

771.7K771.7K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

TradingView

financetradingview

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

342.8K342.8K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Stockbit

financestockbit

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

116.2K116.2K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Investing

financeinvesting

Data pasar finansial lengkap — quote saham/forex/crypto/komoditas, teknikal, OHLCV historis, berita, analisis, dan kalender ekonomi.

69.7K69.7K calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Binance Futures

financebinance-futures

USD-M perpetual futures market data: funding, premium index, open interest, long/short ratios, candles and depth.

40.3K40.3K calls so far10mResponses cached for 10m
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.