For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
  • API Reference
      • GETGet MBS Item
      • GETGet All MBS Items
      • GETGet MBS Changes
  • Guides
    • Minor ID Setup
    • Architecture
    • Security & Governance
    • PRODA
    • DVA Integration
    • AIR Integration
    • Integration test data
    • Troubleshooting
LogoLogo
API ReferenceMBS

Get MBS Changes

||View as Markdown|
GET
/MBSChanges
GET
/MBSChanges
$curl https://api.rebateright.com.au/MBSChanges \
> -H "x-api-key: <apiKey>"
2001 July 2026 release
1{
2 "Title": "Review of Changes in Medicare Items for MBS Release on: 1 July 2026",
3 "ChangedCounts": {
4 "OldTotalItems": 6039,
5 "NewTotalItems": 6045,
6 "AddedItems": 8,
7 "RemovedItems": 2,
8 "ModifiedItems": 5437,
9 "ModifiedItemsByEachField": {
10 "ScheduleFee": 5381,
11 "ScheduleFeeStartDate": 5381,
12 "Description": 80,
13 "DerivedFee": 50,
14 "BenefitType": 7,
15 "ClaimHistoryLimitation": 2
16 }
17 },
18 "ChangedItemNumbers": {
19 "AddedItems": [
20 "12218",
21 "12219",
22 "32219",
23 "45070",
24 "45071",
25 "45072",
26 "73329",
27 "73400"
28 ],
29 "RemovedItems": [
30 "61470",
31 "61477"
32 ],
33 "ModifiedItems": [
34 "3",
35 "4",
36 "23",
37 "36",
38 "44",
39 "46113",
40 "50200",
41 "50201"
42 ],
43 "ModifiedItemsByEachField": {
44 "ScheduleFee": [
45 "3",
46 "23",
47 "36",
48 "44"
49 ],
50 "Description": [
51 "46113",
52 "50200",
53 "50201"
54 ],
55 "BenefitType": [
56 "2978",
57 "3069"
58 ],
59 "ClaimHistoryLimitation": [
60 "50200",
61 "50201"
62 ]
63 }
64 },
65 "ChangedItems": {
66 "AddedItems": [
67 {
68 "ItemNumber": "12218",
69 "Description": "Overnight investigation of sleep, for at least 8 hours, for a patient aged at least 3 years but less than 12 years…",
70 "Category": "2",
71 "Group": "D1",
72 "SubGroup": "10",
73 "BenefitType": "_85",
74 "ScheduleFee": "489.90",
75 "ScheduleFeeStartDate": "2026-07-01",
76 "ClaimHistoryLimitation": "Applicable according to description.",
77 "EligibleAgeRange": "3 years or older and younger than 12 years",
78 "ReferralRequirements": "This item should be referred by one of the following specialties: [ 'Specialist Medical Practitioner', 'General Practitioner' ].",
79 "ItemStartDate": "2026-07-01"
80 }
81 ],
82 "RemovedItems": [
83 {
84 "ItemNumber": "61470",
85 "Description": "Whole body or localised study using thallium-201, or single rest myocardial perfusion study using thallium-201…",
86 "Category": "5",
87 "Group": "I4",
88 "SubGroup": "1",
89 "BenefitType": "_75_85",
90 "ScheduleFee": "1551.40",
91 "ScheduleFeeStartDate": "2025-07-01",
92 "ItemStartDate": "2023-07-01"
93 }
94 ],
95 "ModifiedItems": [
96 {
97 "ItemNumber": "50200",
98 "Changes": [
99 {
100 "FieldName": "Description",
101 "OldValue": "Core needle biopsy of aggressive or potentially malignant bone or soft tissue tumour, excluding aftercare (Anaes.)",
102 "NewValue": "Core needle biopsy of aggressive or potentially malignant bone or soft tissue tumour, excluding aftercare, if the service has not already applied to the patient twice in the preceding 12 months for a service provided by the same provider (Anaes.)"
103 },
104 {
105 "FieldName": "ScheduleFee",
106 "OldValue": "219.55",
107 "NewValue": "225.25"
108 },
109 {
110 "FieldName": "ScheduleFeeStartDate",
111 "OldValue": "2025-07-01",
112 "NewValue": "2026-07-01"
113 },
114 {
115 "FieldName": "ClaimHistoryLimitation",
116 "OldValue": "",
117 "NewValue": "Applicable according to description."
118 }
119 ]
120 }
121 ]
122 }
123}
Compares the two most recent MBS releases RebateRight holds — the previous schedule and the current one — and returns every difference: items added, items removed, and items modified field by field. RebateRight keeps both releases current, so you can see exactly what a release changed without parsing the Services Australia files yourself. The response gives three views of the same release: | Field | What it gives you | |---|---| | `ChangedCounts` | How many items changed — in total, and per field. | | `ChangedItemNumbers` | The item numbers behind those counts, grouped the same way. | | `ChangedItems` | The full detail — added and removed items in full, plus a field-by-field old/new for every modified item. | > 🔍 **Sample only** — the example truncates the long item-number arrays and the longest item descriptions. The live API returns the complete lists, and `ChangedCounts` reflects the real totals.
Was this page helpful?
Previous

Get All MBS Items

Next

Patient Verification

Built with

Compares the two most recent MBS releases RebateRight holds — the previous schedule and the current one — and returns every difference: items added, items removed, and items modified field by field. RebateRight keeps both releases current, so you can see exactly what a release changed without parsing the Services Australia files yourself.

The response gives three views of the same release:

FieldWhat it gives you
ChangedCountsHow many items changed — in total, and per field.
ChangedItemNumbersThe item numbers behind those counts, grouped the same way.
ChangedItemsThe full detail — added and removed items in full, plus a field-by-field old/new for every modified item.

🔍 Sample only — the example truncates the long item-number arrays and the longest item descriptions. The live API returns the complete lists, and ChangedCounts reflects the real totals.

Authentication

x-api-keystring
API Key authentication via header
x-minor-idstring
API Key authentication via header

Response

OK — the differences between the previous and current MBS releases.

Titlestring

Human-readable summary line naming the release this comparison describes.

ChangedCountsobject
How many items changed between the two releases.
ChangedItemNumbersobject

The item numbers behind ChangedCounts, grouped the same way.

ChangedItemsobject
The full detail behind the comparison.