> ## Documentation Index
> Fetch the complete documentation index at: https://docs.exchangeratesapi.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog

> Track all changes, updates, and new features added to the Exchange Rates API

## June 23, 2026

### Webhooks (Professional plan and above)

* Added **rate-published webhooks**: get a signed `POST` to your endpoint within minutes of the RBA publishing the daily rates - no polling required. See the [Webhooks guide](/api-reference/webhooks/overview).
* New management endpoints (dashboard session, not a Bearer API key): `POST /api/webhook-subscriptions` (create), `GET /api/webhook-subscriptions` (list), `DELETE /api/webhook-subscriptions/{id}` (delete), `POST /api/webhook-subscriptions/{id}/test` (send a test delivery).
* Deliveries are signed with HMAC-SHA256 (`X-ExchangeRates-Signature: sha256=…`); failed deliveries are retried, and a subscription auto-deactivates after repeated failures.
* Subscription limits: Professional 3, Business 10, Enterprise 50.

### Fixes

* Corrected the daily rate-refresh timing so the API tracks the RBA's same-day publication (previously could lag by a business day).

## Version 1.0.0 - September 2, 2025

### Initial Production Release

**Core API**

* 8 production endpoints
* Real-time RBA data (daily updates)
* Historical data from 2018 onwards
* 21 supported currencies including TWI and SDR

**Authentication**

* Bearer token authentication
* Australian suburb-based API key prefixes
* Plan-based rate limiting

### Endpoints

**Public (no auth)**

* `GET /status` - API status
* `GET /symbols` - Supported currencies

**Authenticated**

* `GET /latest` - Current rates
* `GET /latest/{currency}` - Current rate for currency
* `GET /{date}` - Historical rates
* `GET /{date}/{currency}` - Historical rate for currency
* `GET /timeseries` - Date range rates
* `GET /convert` - Currency conversion (with optional historical date)

### Supported Currencies

**Major:** USD, EUR, GBP, JPY, CHF, CAD

**Asia-Pacific:** CNY, KRW, SGD, NZD, HKD, TWD, INR, THB, MYR, IDR, VND, PHP

**Special:** TWI (Trade-Weighted Index), SDR (Special Drawing Rights)

## Bug Fixes

### August 2025

* Fixed DST timezone handling
* Fixed historical data precision
* Added comprehensive error responses
* Added request ID tracking
* Improved response times
