# ausref Changes Feed — Australasian Government Reference Data

> ausref Changes Feed — Australasian Government Reference Data is a paid API for AI agents from ausref.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a list of government reference data series (policy rates, VAT, minimum wages, public holidays) that have changed since a specified date for Australia and New Zealand.

## Facts

- Endpoint: GET https://ausref.dev/v1/changes
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ausref-changes-feed-australasian-government-reference-data-6655c8f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mNSclVpCXkAOHUDhoKg5D

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability ausref-changes-feed-australasian-government-reference-data-6655c8f3
```

Example prompt: Check ausref and tell me which Australian or New Zealand government reference series — like policy rates, minimum wages, VAT, or public holidays — have changed since July 1, 2025.

## When to prefer this

Use this endpoint when you need to poll for changes across multiple Australasian government reference series at once, rather than fetching a specific current value. Ideal for change-detection workflows, compliance monitoring pipelines, or cache-invalidation logic where you only want to re-fetch series that have actually changed since your last check.

## Known failure modes

- Invalid or missing 'since' date parameter returns an error or empty result
- Date format not ISO 8601 may be rejected
- Requesting unsupported country codes outside au/nz returns empty or error
- Payment not fulfilled (x402) results in a 402 Payment Required response
- Service may return stale data if upstream government sources have not been re-confirmed

## How this service works

Authoritative Australasian government reference values as clean JSON: central-bank policy rates, VAT rates, national minimum wages and public holidays for Australia (au), New Zealand (nz). Every value carries a citation to its official primary source (government gazette or central-bank statement), an effective date, a last-confirmed date and a staleness flag.

## Output

A JSON object containing a 'since' date and an array of 'changes', each entry identifying the series name (e.g. minimum-wage, policy-rate, VAT, public-holidays), country code (au/nz), and effective_from date — allowing the caller to know exactly which official data points need refreshing.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "since": "2026-07-01",
  "changes": [
   {
    "series": "minimum-wage",
    "country": "AR",
    "effective_from": "2026-07-01"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ausref-changes-feed-australasian-government-reference-data-6655c8f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ausref.dev](https://www.zero.xyz/host/ausref.dev/llms.txt)
