logammulia.com APIlogammulia.com ↗
Get current and historical ANTAM gold prices, per-gram rates, daily price changes, and BELM store locations across Indonesia via the Logam Mulia API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/73879726-db6f-4977-9bad-7dd00b9ed308/get_full_price_table' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the full gold and silver price table for today from Logam Mulia. Returns all product categories with weights, base prices, and prices with tax (in Indonesian Rupiah).
No input parameters required.
{
"type": "object",
"fields": {
"categories": "object mapping category name to array of product entries, each with weight_raw, weight, base price, and tax-inclusive price"
},
"sample": {
"data": {
"categories": {
"Harga di-update setiap hari pkl. 08.30 WIB": [
{
"tax": 1473675,
"base": 1470000,
"weight": 0.5,
"weight_raw": "0.5 gr"
},
{
"tax": 2847100,
"base": 2840000,
"weight": 1,
"weight_raw": "1 gr"
}
]
}
},
"status": "success"
}
}About the logammulia.com API
The Logam Mulia API provides 5 endpoints covering current ANTAM gold and silver prices, historical price charts, daily price changes, and physical store locations across Indonesia. The get_full_price_table endpoint returns the complete price table broken down by product category, weight, base price, and tax-inclusive price in Indonesian Rupiah, while get_store_locations lists every BELM boutique with its code and city.
Price Data
The get_full_price_table endpoint returns a categories object mapping each product category (e.g. gold bars, silver products) to an array of entries. Each entry includes weight_raw, a normalized weight, a base price, and a tax-inclusive price — all denominated in Indonesian Rupiah (IDR). This gives you the complete Logam Mulia price sheet as published each trading day.
For lightweight integrations that only need a single reference price, get_gold_price_per_gram returns price_per_gram and price_with_tax for the standard 1g Emas Batangan product. get_gold_price_change adds daily context with today, yesterday, change, and direction fields so you can display whether the price moved up or down relative to the previous trading day.
Historical Data
get_gold_price_chart_history returns a history array of sell-price data points for use in trend charts or price-tracking tools. The endpoint takes no parameters, so the full available history is returned on every call.
Store Locations
get_store_locations returns a locations array of BELM (Butik Emas Logam Mulia) store objects, each containing a boutique code and a name that includes the city. This covers physical ANTAM gold boutiques across Indonesia and is useful for store-finder features or regional availability checks.
- Display today's ANTAM gold bar prices with and without tax on a financial dashboard
- Trigger alerts when
get_gold_price_changereturns adirectionindicating a significant daily drop or rise - Plot a gold price trend chart using the
historyarray fromget_gold_price_chart_history - Show the 1g Emas Batangan reference price in an e-commerce or investment app via
get_gold_price_per_gram - Build a BELM store finder by rendering the
locationsarray on a map using boutique names and city data - Compare multi-weight gold bar pricing across categories using the full
get_full_price_tableresponse
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Logam Mulia (ANTAM) have an official developer API?+
What does `get_gold_price_change` actually return — is it a percentage or an absolute value?+
today and yesterday are integer prices, and change is the integer difference between them. A direction string (e.g. 'up' or 'down') indicates the movement. No percentage is calculated — you can derive it from change divided by yesterday in your own application.Does the API return buy-back (buyback) prices in addition to sell prices?+
How fresh is the price data — does it update intraday?+
get_gold_price_change reflects the shift from the previous trading day, so intraday price movements are not exposed — the data is as current as the source's daily publication cycle.Does `get_store_locations` include store hours, addresses, or contact details?+
code and a name with city information. You can fork this API on Parse and revise it to add an endpoint that retrieves detailed store information such as addresses or operating hours.