> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.rebateright.com.au/llms.txt.
> For full documentation content, see https://docs.rebateright.com.au/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.rebateright.com.au/_mcp/server.

# Vaccines

GET https://api.rebateright.com.au/AIR/v1/refdata/vaccine

List every vaccine recognised by AIR with its full metadata — antigens, category, funding type, route, batch/type/antenatal mandates, dose limits, validity dates.

Optionally filter by `vaccineCategoryCode` (e.g. `FLU`, `NIP`, `COV19`, `NONST`) to narrow the result to one category.

For shared response patterns see [AIR Integration](/air).


Reference: https://docs.rebateright.com.au/api-reference/air/reference-data/vaccines

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /AIR/v1/refdata/vaccine:
    get:
      operationId: vaccines
      summary: Vaccines
      description: >
        List every vaccine recognised by AIR with its full metadata — antigens,
        category, funding type, route, batch/type/antenatal mandates, dose
        limits, validity dates.


        Optionally filter by `vaccineCategoryCode` (e.g. `FLU`, `NIP`, `COV19`,
        `NONST`) to narrow the result to one category.


        For shared response patterns see [AIR Integration](/air).
      tags:
        - subpackage_air.subpackage_air/referenceData
      parameters:
        - name: vaccineCategoryCode
          in: query
          description: >-
            Optional. Filter to a single category (e.g. `FLU`, `NIP`, `COV19`,
            `NONST`). See the [Vaccine
            Categories](/api-reference/air/reference-data/vaccine-categories)
            lookup for valid values.
          required: false
          schema:
            type: string
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIR_Reference Data_Vaccines_Response_200'
servers:
  - url: https://api.rebateright.com.au
  - url: https://test-api.rebateright.com.au
components:
  schemas:
    AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItemsAntigensItems:
      type: object
      properties:
        antigenCode:
          type: string
        antigenName:
          type: string
        maximumDose:
          type: integer
        isNaturalImmunityValid:
          type: boolean
      title: >-
        AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItemsAntigensItems
    AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItems:
      type: object
      properties:
        vaccineCode:
          type: string
        vaccineName:
          type: string
        vaccineCategoryCode:
          type: string
        startDate:
          type: string
          description: ISO date `YYYY-MM-DD`.
        endDate:
          type: string
          description: ISO date `YYYY-MM-DD`. `9999-09-09` means open-ended.
        antigens:
          type: array
          items:
            $ref: >-
              #/components/schemas/AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItemsAntigensItems
        isMedicalContraindicationValid:
          type: boolean
        isVaccineBatchMandatory:
          type: boolean
        vaccineBatchMandatoryStartDate:
          type:
            - string
            - 'null'
        vaccineBatchMandatoryEndDate:
          type:
            - string
            - 'null'
      title: AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItems
    AIR_Reference Data_Vaccines_Response_200:
      type: object
      properties:
        statusCode:
          type: string
        codeType:
          type: string
        message:
          type: string
        vaccines:
          type: array
          items:
            $ref: >-
              #/components/schemas/AirV1RefdataVaccineGetResponsesContentApplicationJsonSchemaVaccinesItems
        correlationId:
          type: string
      title: AIR_Reference Data_Vaccines_Response_200
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    minorId:
      type: apiKey
      in: header
      name: x-minor-id

```

## SDK Code Examples

```python All Vaccines
import requests

url = "https://api.rebateright.com.au/AIR/v1/refdata/vaccine"

querystring = {"vaccineCategoryCode":""}

headers = {"x-api-key": "<apiKey>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript All Vaccines
const url = 'https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=';
const options = {method: 'GET', headers: {'x-api-key': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go All Vaccines
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode="

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-api-key", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby All Vaccines
require 'uri'
require 'net/http'

url = URI("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java All Vaccines
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")
  .header("x-api-key", "<apiKey>")
  .asString();
```

```php All Vaccines
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=', [
  'headers' => [
    'x-api-key' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp All Vaccines
using RestSharp;

var client = new RestClient("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=");
var request = new RestRequest(Method.GET);
request.AddHeader("x-api-key", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift All Vaccines
import Foundation

let headers = ["x-api-key": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```

```python Filtered by Category (FLU)
import requests

url = "https://api.rebateright.com.au/AIR/v1/refdata/vaccine"

querystring = {"vaccineCategoryCode":""}

headers = {"x-api-key": "<apiKey>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript Filtered by Category (FLU)
const url = 'https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=';
const options = {method: 'GET', headers: {'x-api-key': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Filtered by Category (FLU)
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode="

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-api-key", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Filtered by Category (FLU)
require 'uri'
require 'net/http'

url = URI("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java Filtered by Category (FLU)
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")
  .header("x-api-key", "<apiKey>")
  .asString();
```

```php Filtered by Category (FLU)
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=', [
  'headers' => [
    'x-api-key' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Filtered by Category (FLU)
using RestSharp;

var client = new RestClient("https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=");
var request = new RestRequest(Method.GET);
request.AddHeader("x-api-key", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Filtered by Category (FLU)
import Foundation

let headers = ["x-api-key": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.rebateright.com.au/AIR/v1/refdata/vaccine?vaccineCategoryCode=")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```