# Logam Mulia — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Track current and historical gold prices from Logam Mulia (ANTAM) with real-time per-gram pricing, price charts, price changes, and store location information. Get comprehensive gold price data to monitor market trends and find nearby purchasing locations.

**Category:** Finance & Markets | **Website:** [logammulia.com/](https://logammulia.com/) | **Docs:** [parse.bot/marketplace/2499ad05-306e-45ef-9995-152264709462/logammulia-com-api](https://parse.bot/marketplace/2499ad05-306e-45ef-9995-152264709462/logammulia-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_full_price_table

Retrieves the complete daily price table from Logam Mulia covering all product categories (gold bars, silver, collectible items). Each category contains entries with weight, base price, and tax-inclusive price in Indonesian Rupiah. Prices update daily at 08:30 WIB. A single request fetches all categories; there is no filtering parameter.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/get_full_price_table \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_gold_price_change

Returns the gold price change compared to the previous trading day. Derived by comparing the two most recent data points from the chart history API. Provides today's price, yesterday's price, the numeric change, and direction (up/down/unchanged).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/get_gold_price_change \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_gold_price_chart_history

Retrieves historical gold sell price data from Logam Mulia. Returns an array of data points, each containing a Unix timestamp (milliseconds) and the gold price in IDR at that time. Data spans from 2010 to present. Derived from the internal chart data API endpoint.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/get_gold_price_chart_history \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_gold_price_per_gram

Retrieves the current gold price for the standard 1-gram Emas Batangan product. Returns the base price and tax-inclusive price (PPh 0.25%) in Indonesian Rupiah. This is a convenience extraction of the 1g entry from the full price table.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/get_gold_price_per_gram \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_store_locations

Returns a list of BELM (Butik Emas Logam Mulia) store locations across Indonesia. Each entry includes a boutique code identifier and the store name (typically including city information). Extracted from the embedded store data on the price page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-logammulia-com-api-2499ad05/get_store_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
