Sample curl request to find all GNSS receivers by receiver type:

$ curl 'https://gws.geodesy.ga.gov.au/gnssReceivers?type=TRIMBLE%20NETRS' -i

Sample response:

HTTP/1.1 200 OK
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 770

{
  "_embedded" : {
    "gnssReceivers" : [ {
      "type" : "TRIMBLE NETRS",
      "equipmentType" : "gnss receiver",
      "manufacturer" : null,
      "serialNumber" : "4526253099",
      "_links" : {
        "self" : {
          "href" : "https://gws.geodesy.ga.gov.au/gnssReceivers/1902"
        },
        "gnssReceiver" : {
          "href" : "https://gws.geodesy.ga.gov.au/gnssReceivers/1902{?projection}",
          "templated" : true
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "https://gws.geodesy.ga.gov.au/gnssReceivers"
    },
    "profile" : {
      "href" : "https://gws.geodesy.ga.gov.au/profile/gnssReceivers"
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 0
  }
}