# Antam Gold Bar Prices

Logam Mulia Antam bar prices for every size from 0.5g to 1kg, with the per-gram price derived.

- Method: `GET`
- Path: `/v1/gold/antam`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/gold/antam \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "vendor": "antam",
    "bars": [
      { "grams": 1, "price_idr": 2721000, "price_per_gram_idr": 2721000 },
      { "grams": 100, "price_idr": 261712000, "price_per_gram_idr": 2617120 },
      { "grams": 1000, "price_idr": 2615600000, "price_per_gram_idr": 2615600 }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-18T16:32:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-18T17:10:15.000Z"
  }
}
```