Documentation menu
Docs / Reference / Search healthcare facilities

Search healthcare facilities

GET/healthcare_facility

Parameters

ParameterTypeDescription
qstringoptionalFull-text search across data fields. Space-separated words require all terms (e.g. "wood panel"). Use OR to match any term ("wood OR panel OR acoustic"), quotes for exact phrases ("supply arrangement"), and a leading minus to exclude ("software -hardware").
categorystringoptionalProcurement category: CNST, GD, SRV, SRVTGD. For recalls: product category (e.g. 'Baby products', 'Toys and games', 'Household items').
statusstringoptionalFilter by status (Active, Expired, Cancelled, Open)
citystringoptionalFilter by city. For the US liquor/healthcare datasets this is a distinct filter (exact, case-insensitive). For all other datasets it is an alias for municipality.
countystringoptionalFilter by county. Exact, case-insensitive (liquor, healthcare).
statestringoptionalFilter by 2-letter US state code, e.g. FL, CA, TX (healthcare, liquor).
facility_typestringoptionalHealthcare: filter by facility type, substring match (e.g. hospital, nursing_home, hospice, assisted_living, home_health, dialysis). See /healthcare_facility/stats for values.
zipstringoptionalHealthcare: filter by 5-digit ZIP code.
ccnstringoptionalHealthcare: filter by exact CMS Certification Number (CCN).
min_bedsintegeroptionalHealthcare: minimum licensed/certified bed count.
max_bedsintegeroptionalHealthcare: maximum licensed/certified bed count.
issued_afterstringoptionalFilter by licensure date >= YYYY-MM-DD (issued_date). Aliases: date_from, date_after
issued_beforestringoptionalFilter by date <= YYYY-MM-DD. Aliases: date_to, date_before
sort_bystringoptionalSort field: published (publication_date for tenders, award_date for contracts), date (event date), value (contract/agreement value), closing (closing_date for tenders)
sort_orderstringoptionalSort order: asc or desc
limitintegeroptional
offsetintegeroptional
cursorstringoptionalPagination cursor from next_cursor in a previous response. Use instead of offset for deep pagination.

Request

curl --request GET \
  --url 'https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility' \
  --header 'x-rapidapi-host: careregistry-us-healthcare-facility-data.p.rapidapi.com' \
  --header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'
import requests

url = "https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility"
headers = {"x-rapidapi-host": "careregistry-us-healthcare-facility-data.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY"}
resp = requests.get(url, headers=headers)
print(resp.json())
const res = await fetch("https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility", {
  headers: {
    "x-rapidapi-host": "careregistry-us-healthcare-facility-data.p.rapidapi.com",
    "x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
  },
});
const data = await res.json();
console.log(data);
<?php
$ch = curl_init("https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "x-rapidapi-host: careregistry-us-healthcare-facility-data.p.rapidapi.com",
    "x-rapidapi-key: YOUR_RAPIDAPI_KEY",
]);
echo curl_exec($ch);
require "net/http"
require "uri"

uri = URI("https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility")
req = Net::HTTP::Get.new(uri)
req["x-rapidapi-host"] = "careregistry-us-healthcare-facility-data.p.rapidapi.com"
req["x-rapidapi-key"] = "YOUR_RAPIDAPI_KEY"
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |h| h.request(req) }
puts res.body
package main

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

func main() {
    req, _ := http.NewRequest("GET", "https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility", nil)
    req.Header.Add("x-rapidapi-host", "careregistry-us-healthcare-facility-data.p.rapidapi.com")
    req.Header.Add("x-rapidapi-key", "YOUR_RAPIDAPI_KEY")
    res, _ := http.DefaultClient.Do(req)
    defer res.Body.Close()
    body, _ := io.ReadAll(res.Body)
    fmt.Println(string(body))
}
import java.net.URI;
import java.net.http.*;

HttpRequest req = HttpRequest.newBuilder()
    .uri(URI.create("https://careregistry-us-healthcare-facility-data.p.rapidapi.com/healthcare_facility"))
    .header("x-rapidapi-host", "careregistry-us-healthcare-facility-data.p.rapidapi.com")
    .header("x-rapidapi-key", "YOUR_RAPIDAPI_KEY")
    .build();
HttpResponse<String> res = HttpClient.newHttpClient()
    .send(req, HttpResponse.BodyHandlers.ofString());
System.out.println(res.body());
Ready to build?Subscribe on RapidAPI to get your key and start calling CareRegistry in minutes.
Get your API key →