# Pegadaian Gold Bar Prices

Pegadaian's Logam Mulia board across every bar size, with the per-gram price derived.

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

**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/pegadaian \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "vendor": "pegadaian",
    "bars": [
      { "grams": 1, "price_idr": 2568000, "price_per_gram_idr": 2568000 },
      { "grams": 100, "price_idr": 250000000, "price_per_gram_idr": 2500000 },
      { "grams": 1000, "price_idr": 2493852000, "price_per_gram_idr": 2493852 }
    ]
  },
  "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"
  }
}
```