diff --git a/endpointmanager/pkg/chplendpointquerier/canvasmedicalwebscraper.go b/endpointmanager/pkg/chplendpointquerier/canvasmedicalwebscraper.go new file mode 100644 index 000000000..dff94ad2f --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/canvasmedicalwebscraper.go @@ -0,0 +1,48 @@ +package chplendpointquerier + +import ( + "strings" + + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +func CanvasMedicalURLWebscraper(CHPLURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, "") + if err != nil { + log.Fatal(err) + } + + doc.Find("table").Each(func(index int, tablehtml *goquery.Selection) { + if index == 1 { + tablehtml.Find("tbody").Each(func(indextr int, rowhtml *goquery.Selection) { + rowhtml.Find("tr").Each(func(indextr int, rowbodyhtml *goquery.Selection) { + var entry LanternEntry + tableEntries := rowbodyhtml.Find("td") + if tableEntries.Length() > 0 { + organizationName := strings.TrimSpace(tableEntries.Eq(0).Text()) + URL := strings.TrimSpace(tableEntries.Eq(1).Text()) + + entry.OrganizationName = organizationName + entry.URL = URL + + lanternEntryList = append(lanternEntryList, entry) + } + }) + }) + } + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go index a2d736513..a3a461f09 100644 --- a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go +++ b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go @@ -134,8 +134,9 @@ var healthInnovationURL = "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endp var mPNSoftwareURL = "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv" var NexusURL = "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv" var MEDENTURL = "https://www.medent.com/std_api/ServiceBaseURL.csv" - -//var tenzingURL = "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints" +var CarepathsURL = "https://carepaths.com/uploads/org_endpoint_bundle.json" +var athenaClinicalsURL = "https://docs.athenahealth.com/api/guides/base-fhir-urls" +var canvasMedicalURL = "https://docs.canvasmedical.com/api/service-base-urls/" func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { @@ -273,6 +274,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { CSVParser(chplURL, fileToWriteTo, "./ezdocs_fhir_base_urls.csv", 1, 0, true, 3, 1) } else if URLsEqual(chplURL, netsmarttechnologiesURL) { CSVParser(chplURL, fileToWriteTo, "./fhir_base_urls.csv", -1, 0, false, 1, 0) + } else if URLsEqual(chplURL, athenaClinicalsURL) { + CSVParser("https://fhir.athena.io/athena-fhir-urls/athenanet-fhir-base-urls.csv", fileToWriteTo, "./athenanet-fhir-base-urls.csv", 17136, 2, true, 3, 1) } else if URLsEqual(chplURL, medicscloudURL) { MedicsCloudWebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, advancedmdURL) { @@ -371,14 +374,16 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { BundleQuerierParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, healthInnovationURL) { BundleQuerierParser(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, CarepathsURL) { + BundleQuerierParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, mPNSoftwareURL) { CSVParser("https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", fileToWriteTo, "./ServiceBaseURLs.csv", 1, 0, true, 3, 2) } else if URLsEqual(chplURL, NexusURL) { CSVParser("https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", fileToWriteTo, "./nexusehr-fhirapi-base-urls.csv", 1, 0, true, 2, 1) } else if URLsEqual(chplURL, MEDENTURL) { CSVParser(MEDENTURL, fileToWriteTo, "./ServiceBaseURL.csv", 1, 0, true, 1, 0) - // } else if URLsEqual(chplURL, tenzingURL) { - // TenzingURLWebscraper("https://tenzing.docs.apiary.io/#introduction/terms-and-conditions/fhir-endpoints", fileToWriteTo) + } else if URLsEqual(chplURL, canvasMedicalURL) { + CanvasMedicalURLWebscraper(chplURL, fileToWriteTo) } } diff --git a/endpointmanager/pkg/helpers/helpers.go b/endpointmanager/pkg/helpers/helpers.go index cefe95d91..d8ffe7f1a 100644 --- a/endpointmanager/pkg/helpers/helpers.go +++ b/endpointmanager/pkg/helpers/helpers.go @@ -179,6 +179,8 @@ func QueryAndOpenCSV(csvURL string, csvFilePath string, header bool) (*csv.Reade // read csv values using csv.Reader csvReader := csv.NewReader(f) + csvReader.Comma = ',' // Set the delimiter (default is ',') + csvReader.LazyQuotes = true // Enable handling of lazy quotes if header { // Read first line to skip over headers diff --git a/resources/dev_resources/AthenaClinicals_EndpointSources.json b/resources/dev_resources/AthenaClinicals_EndpointSources.json new file mode 100644 index 000000000..129f56008 --- /dev/null +++ b/resources/dev_resources/AthenaClinicals_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sollus Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Scott \u0026 Jonah Mds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trophy Club Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - The Sharewood Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Contemporary Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Dr. Stephen B. Hillis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Margarita M Vendrell MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boca Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Emotional Wellness at RPCA", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/CanvasMedical_EndpointSources.json b/resources/dev_resources/CanvasMedical_EndpointSources.json new file mode 100644 index 000000000..e8dffbff4 --- /dev/null +++ b/resources/dev_resources/CanvasMedical_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fumage-modernfamilypractice.canvasmedical.com", + "OrganizationName": "modernfamilypractice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Carepaths_EHR_EndpointSources.json b/resources/dev_resources/Carepaths_EHR_EndpointSources.json new file mode 100644 index 000000000..14440c6fa --- /dev/null +++ b/resources/dev_resources/Carepaths_EHR_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "http://developer.carepaths.com/beauchene/api/", + "OrganizationName": "Beauchene Family Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/qcounseling/api/", + "OrganizationName": "Q Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390898-152525/api/", + "OrganizationName": "Kristen O'Shea, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salt/api/", + "OrganizationName": "Salt and Light Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frcc/api/", + "OrganizationName": "Firmly Rooted Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rochford/api/", + "OrganizationName": "Lisa Rochford, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pacificsky/api/", + "OrganizationName": "Pacific Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yelk/api/", + "OrganizationName": "Dawn L. Yelk, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scl/api/", + "OrganizationName": "Sharon Chatkupt Lee, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385102-145752/api/", + "OrganizationName": "Embrace Life Counseling", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/AthenaClinicals_EndpointSources.json b/resources/prod_resources/AthenaClinicals_EndpointSources.json new file mode 100644 index 000000000..9d29e44b8 --- /dev/null +++ b/resources/prod_resources/AthenaClinicals_EndpointSources.json @@ -0,0 +1,102808 @@ +{ + "Endpoints": [ + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sollus Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Scott \u0026 Jonah Mds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trophy Club Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - The Sharewood Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Contemporary Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Dr. Stephen B. Hillis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Margarita M Vendrell MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boca Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Emotional Wellness at RPCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEDIKA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RevaMed Healthcare Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RevaMed Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Trinity Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Urban Community Action Projects dba", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Radomir D Stevanovic MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Corry Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Valerie A. Hiveley Blatz, GNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Adnan Yousuf, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Internal Medicine of Wakefield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Spine Institute Of Idaho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Axiom Clinic SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrative Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Graham Glass MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atlanta Orthopaedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Steven J Steele MD, FACS, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nathaniel Griffith, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Bryan Abernathy, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Bradon Y Kimura MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peachtree Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HEMAL J SHAH, MD P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - The Musello Partnership LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fish River Rural Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Fish River Rural Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neurology Specialists of the Treasu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - New Jersey Foot and Ankle Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Total Patient Care of Ocala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jose J Monsivais MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - WESTERN DUPAGE OBSTETRICS AND GYNEC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamdard Health Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - METRO XTRACARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Twin Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspirus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Presbyterian Medical Care Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Starfish Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Heartland Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ESFANDIAR ESFANDIARIFARD M.D. INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - COMMUNITY FOOT AND ANKLE OF MENTOR,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Healthrise Lotus Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Allied Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NHFHS - Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Horizon Family Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - New Horizon Family Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MCJR, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Sheila J. Stanek, D.O., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Antonio Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Unique Healthcare Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Winston-Salem Pediatrics Highroad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Discover Health Medical Group 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Julia Chowdhury MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - MASONBORO URGENT CARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Health Care Practitioners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Chip Backus MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Bernard Orewa, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Trinity Family Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cuyahoga Falls Foot Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dayspring Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Barrett Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brain and Spine Neurosurgical Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advantia-Women's Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ballinger Memorial Hospital Distric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Community Pediatrics of Andover", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dixie Melillo, M.D., F.A.C.S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Westchester Women's Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Family Care Medical Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Care Medical Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Foot and Ankle Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Verghese Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ADVANCE FOOT CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Market Street Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Diabetes \u0026 Hormone Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Functional Medicine Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Gynecologic Cancer Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Congressional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mark R Gloss, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DAVID CHAO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES J CHAO, MD, FACS A PROFESSIONAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Robert E Wray DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - United Urgent Care \u0026 Family Medicin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Health First Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ADVANCED WOMEN'S OBGYN HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Bryan W. Danhires DPM, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Heart of the Valley Healthcare PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pulmonary \u0026 Sleep Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GlowackiMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - University Allergy \u0026 Asthma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fem Health USA, Inc. dba carafem", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Providence Family Medicine Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Ortho Surgery of the Foot And Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Charleston Therapeutic Yoga", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Sleep Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palliative and Medical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Alps Road Family Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hanul Bhandari MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Trident Clinical, PLLC dba Trident", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Southern Pediatric Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rose Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Turner Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sidney T. Robin, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountain Regional Arthritis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOLIVAR PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Medicine of Sherman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cookeville Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Transitions Home Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Gardner Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - ASSOCIATED FOOT SPECIALISTS, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newport Beach Women's Wellness Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cactus Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Commonwealth Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Stop Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - McBee Surgical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Evangeline Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Community Advanced Practice Nurses", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Synergy Urgent Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountain ENT Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - A Woman's Place in Fayetteville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dennis M Weppner MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - WEST SUBURBAN MIDWIFE ASSOCIATES, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Achilles Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fort Worth Diagnostic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Karine Tagmazyan, M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JOHN D ERKMANN MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JOHN DEKEYSER MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sky Sports Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PROPT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Foot \u0026 Ankle Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Finch Family Medical Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Urology, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Central Florida Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Down East Diabetology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - East Carolina Medical Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sunset ID Care PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Elliot M Levine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Madhava Agusala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Texas Diabetes and Endocrine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Richard L Fox DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - United Physicians PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - JPLRC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Nephrology Associates of SW OH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Capital Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Manuel Lopez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - SEAPORT CLINIC L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DAVID O OPAWUMI MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Southern Arizona Midwives, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sunrise Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Stepping Stone Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA Integrative Gastroenterology \u0026 Rahbar Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kids Fitness For Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fern L Grapin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Kelly Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Cardiology Associates of Central VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bellaire Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neuro-Ophthalmology of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kingsway Medical Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hypertension \u0026 Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Willow Midwives Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Laurinburg Ear, Nose \u0026 Throat Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - REPLY OB/GYN \u0026 FERTILITY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Jackson Orthopedic \u0026 Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRIAN BOSWELL, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chico Practice Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHOMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DAVID HARWOOD, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DOUGLAS BENSON, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EDGAR VYHMEISTER, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "F DAVID COLLINS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES UMBER, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KUSUMOTO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MENDOZA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHAEL W O'BRIEN, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MYERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "N EUGENE CLEEK, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARAMJIT SINGH, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PETER T. MAGNUSSON, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROBERT H STANLEY, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAM MAZJ, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEPHEN F PEARCE, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TAN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ZAK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tru Obgyn \u0026 Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Jan L. Patterson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Laambda Healthcare Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Susan Crockett", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Wright's Medical Services, PA dba W", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Regional Healthcare Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Olde Towne Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Great Lakes Orthopedics \u0026 Sports", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NMHI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - McManus \u0026 Associates, Internal Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Appalachian Orthopaedic Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr Elene Brandt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Jack Matheny", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Presken Family Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Estrellitas Pediatrics Christy Stew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Pain Management, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eye Associates Of Plantation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLAYTON SLEEP INSTITUTE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KVH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHERN MISSOURI SLEEP CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Ernest S Sears MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Providers Direct", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Family C.A.R.E. services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Allergy \u0026 Asthma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vascular Surgery Specialist PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EAST SIDE CARDIOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Harrington Family Heath Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Richard D Semeran MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mauro Gasparini, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ridgeview Internal Medicine Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cy-Fair Headache and Neurological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PlayBig Therapy \u0026 Recreation Zone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - James William Endicott MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - TriCare Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CVCH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Path", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Munther S Tabet MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David Ullman DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Oculofacial Plastic Surgery of WNY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SAN JOSE NEPHROLOGY MEDICAL PRACTIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alaska Center for Pain Relief", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Modern Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BALANCE AND NEUROLOGIC CENTER OF THE ROCKIES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - California Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Waters Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coyle Institute of Female Pelvic Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Physicians Medical Walk-In Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Polyclinique West Palm Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Cornerstone Geriatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chong Soo Rim MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Anderson Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ResolutionCare/Vynca Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Kidcare Louisiana LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pradip K. Dhar, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - KPCMNC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Professional Association for Pediat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - New Orleans East Wellness Center, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW ORLEANS EAST WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RONALD MCLENDON JR, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Apple Hill Podiatry Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Big Horn Basin Bone \u0026 Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Lang, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Memorial Regional Health Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Neil L Horsley DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AETHENA GYNECOLOGY UNIFIED, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BELLEGROVE OB/GYN AT OVERLAKE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BELLINGHAM OBSTETRICS \u0026 GYN ASSOC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNIFIED CENTER FOR WOMENS HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VALLEY WOMENS HEALTH OF RENTON, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Unified Women's Healthcare of Washi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Washington Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paradise Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Skilled Nursing Facility - under construction - do not use", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metro Orthopedics \u0026 Sports Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sterling Ridge Orthopaedics \u0026 Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Tanya Wilke Family Medicine LLC-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – Turkey Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Northeast Alabama Family Foot Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Revitalized Natural Health Ctr, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - EPOCH Health (Anthem)- Columbia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tri Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Access Medical Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Maia U. Chakerian MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boston Maternal Fetal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Better Family Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Oakstone Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mapleton Hill Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Kidney Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lassen Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clincare International Center- Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jennifer Hertz, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Wilson Care/Primecare Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ACMF Multispecialty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLIANCE COMMUNITY HOSPITAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Industrial Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UMU Student Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Yvonne Wright-Cadet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Cardiology Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capital Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Vascular Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Washington Vascular Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTER FOR ORTHOPAEDICS \u0026 SPORTS MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INDIANA TOTAL THERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOOT \u0026 WOUND CARE OF INDIO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MORRISON MULT-SPECIALITIES COMPANIES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michael Keller Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Norris Morrison Dpm", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ONTARIO FOOT \u0026 WOUND CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAN BERNARDINO FOOT AND WOUND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colonial Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Leon Etter, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Institute for Sports Medici", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Valentin Tureanu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beth Israel Lahey Health Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Affiliated Physicians Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Home Physicians Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Great Falls Clinic LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orthopaedic Clinic of Daytona Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Neighborhood Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Darrell L Bowyer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - WORTHINGTON FOOT \u0026 ANKLE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Agnes Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Better Foot Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Experts of Texas, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cooperative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Eau Claire Cooperative Health Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Tyson Quy, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alarice Enterprises LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Surgical Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - JMJ Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JOSEPH C. BARBARA, M.D., INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Curtis Bazemore MD PC DBA Encompass", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bach \u0026 Godofsky Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Scott Grigory, MD, PC dba My Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nader Al Sayyed Ahmad, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - FRANCOIS PHONG BUI, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - NAOMI AKITA, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Advantage Orthopedic \u0026 Sports Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Healthy Results", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Internal Medicine Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Neurology, Psychiatry and Balance T", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Central Massachusetts Podiatry, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Bray Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Swenson Foot \u0026 Ankle, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Oklahoma Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Planning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ODHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - CAPCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Jennifer G Jose MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent's Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Pella Sleep \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Healthcare Network of SWFL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Healthcare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tristate Gastroenterology Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - John C. Westerkamm,MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SnapCare Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Elmhurst Podiatry Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Frankenmuth Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Castle Hills Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Castle Hills Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Caring Cardiology Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Snowy Range Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Aroostook Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EDDIE DAVIS, DPM, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bergen Passaic Pediatric Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Allergy \u0026 Asthma Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Connecticut Neurosurgery Consultant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HSC - Dr. Robert Louis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HSC - Family Planning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HSC - NISS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hoag Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orange Coast Women's Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Doctor's Medical Express", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - David L Principe MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Samantha Goodman MD- Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michigan Cardiology Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Heritage Hills Family Medicine P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Women's Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Rodolfo E Fernandez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delaware Valley Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Good Samaritan Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHF The Kinder Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alamo Ranch Integrative Medicine, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - STEPHEN R. BRENNAN, D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Chenevert Family Care Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Cardiovascular Clinic of Covington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Allergy, Asthma and Sinus Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Valley Foot \u0026 Ankle Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NuAdvance Orthopedics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Greater Orange Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bellevue Behavioral Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Family Primary Care Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wafaa Alrashid M.D., Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Miriam D Johnson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michigan Vein Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - DBA Advanced Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Amitabh Bharadwaj MD dba Retina Spe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareWell Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRIME HEALTHCARE - GADSDEN PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRIME HEALTHCARE - GADSDEN PHYSICIAN MGT PSYCHIATRY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Riverside Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Barbara S Rickards DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Gynecology Today PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric Frechette, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Lander Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension St Marys_St Joseph", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Patrick J. Cindrich, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hilo Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bee Caves Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SAN DIEGO PODIATRY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Lanza's Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jerry W. Miller, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARDIACARE CENTER / MEDICAL SPECIALTIES OF NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Neptune Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Column Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Column Sturdy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - STOWE NATURAL FAMILY WELLNESS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Foot and Ankle Health Centers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - JMC HEALTH GROUP LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Geriatric \u0026 Palliative Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Alexandria Neuro Headache Ctr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jean-Raphael Schneider", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Alkarim Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Olde Towne Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Restoration Healthcare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Dr. Walter M. Snihurowych, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Peter Ramzy MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sevag Balikian, MD, A Professional", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Center For Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DO NOT USE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Rabida Outpatient Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dr Jocelyn Slaughter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Farmington Ped. \u0026 Adolescent Med.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Saddleback Valley Surgery Medical G", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Nash OB-GYN Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NW Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Access Physicians Telemedicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - George M Joseph \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DR RHODORA MANGASER MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Benjamin N Mena MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alex J. Urteaga DPM, PA DBA Foot \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Champion Orthopaedics DeSoto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mitias Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ORTHOXPRESS HOLDINGS OF GEORGIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoXpress Holdings Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bethel Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ellen Yankauskas MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - DM Foot And Ankle Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dynamic Foot and Ankle Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MDVIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Heart Associate of Hilton Head PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Anthem-Epoch", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Anthem-Epoch", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOA Ambulatory Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valdosta Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Catalyst Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - McLean County Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercer Bucks Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Mary's Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mount Carmel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rancho Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Memorial Podiatry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Richmond Spine Intervention \u0026 Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Marcalus, Eric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dominion Cardiovascular Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ocala Orthopaedic Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Agape Family Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carthage Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Emmaus Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ST JOSEPH MERCY HOSPITAL HICKNER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Complementary Family Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rowe Spine and Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spectrum Spine and Pain Care_Pooler Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Restoring Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Diabetic Eye \u0026 Macular Disease Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Missouri Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Elderhealth \u0026 Living Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - TONY YAN, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Town of North Haven dba North Haven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Farzin Aliasgharpour, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brodell Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Skin Pathology Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ost, Mary Anne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATX Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Rosita Villanueva, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Priority Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Katharine R Cooper MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Total Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Valley Family Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pulmonary Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Southern Tier Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RIGHT PATH PAIN AND SPINE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Health Partners, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - LARGO FOOT \u0026 ANKLE HEALTH CENTER AN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Danville Sports Medicine and Primar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Neurology \u0026 Headache Center, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Savannah Bone \u0026 Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARK DIRNBERGER D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEDICAL EXPENSE DIVISION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mark Dirnberger D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - James Bauer, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Medical Associates Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Rock Harbor Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Ragged Mountain Physical Medicine a", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Resilient Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - National University of Health Scien", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ijeoma Nnamani MD, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pediatric Associates Prof., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pain Partners of Texas, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Lakewood Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - FIT Health Care, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Christine Harter, MD, PC dba Pinnac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Stapleton Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NJ Ortho Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Vulcan Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Nirmala Kharbanda MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Aiken Neurosciences, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cedar Creek Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Rosedale Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Alder Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Niloufer S. Dennis MD Medical Corpo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - College Hill OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Access Care Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cotton Grove Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Center For Advanced Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Concho Valley OB/GYN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Child \u0026 Adolescent Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Anne Arundel Eye Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Nephrology \u0026 Hypertension Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fairfax Internal Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ROBERT H. CORNFIELD, D.P.M., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Country Creek Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jordan's Place Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Encompass Wellness and Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Commonwealth Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - MDforMen, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SPORT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Dennis A. Sparks, MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family First Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Peace of Mind Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Peter T. Anastassiou, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - COLUMBIA MEDICAL CLINIC, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Mark Scheinberg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Susan L Boyd MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Senior Care Medical Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Turtle Mountain Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lily J Voepel Md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAITH COMMUNITY HEALTH SYSTEM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - After Hour Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AA - Inpatient Clinicals Test Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DeBrady, Akili, MD PC DBA Debrady M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Northside Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Doctors of Compassionate Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbia St. Mary's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kohl's Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Madison Medical Affiliates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Trinity - Reporting Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Foot \u0026 Ankle Specialists of NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Tanya R. Grun MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Family \u0026 Community Medicine Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - R. Scott Kobylar, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health OLD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Pediatric \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Do not use", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - SOUTHWEST FERTILITY CENTER FOR MEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cahaba Podiatry, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Endocrine Associates Of Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Central Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Winnsboro Health Services, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Quad Cities Foot and Ankle Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Access Health Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Venus Women's Healthcare Profession", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aaron Margulies MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jack C. Askins, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Associates of North TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cahaba Medical Care Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MCR Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MCR Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HORIZON HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physician Healthcare Network PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - A Wyoming Pain Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Marilyn Gordon, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Knox Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Encinitas Women's Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Omni Communications", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brick Cardiovascular Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Deborah Cardiovascular Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Midwest Neurology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Algiers Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Women's Healthcare Special", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Memorial Hospital Carbon County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Delta Orthopedics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Amin Radparvar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Instant Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - City Pain Management, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - John D Holloway MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Meera Kodityal, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Good Shepherd Rehab - Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Good Shepherd Rehab Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Ortho-Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Asheville Gynecology \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heart City Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Riverside Podiatry, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Prairie Path Foot \u0026 Ankle Clinc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Stanley M Cole MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - CHAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Tampa Orthopedic Clinic, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Turner, Kevin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Wichita Endocrinology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - F.W. Huston Medical Center - DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hongbo Liu, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New Braunfels Christian Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Northwest Primary Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Christopher A. Rumsey, D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Rudolph Antoncic III MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest ENT and Allergy, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Salud Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Mansfield Internal Medicine, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Swaraj Bose", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gastroenterology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Marga F Massey MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Irving Coppell Primary care doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Arthritis \u0026 Osteoporosis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pro Sports Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Camp Lowell Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Farmington Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lemoyne Primary Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Donna L. Bacon, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Mountaineer Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Generations FMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Generations Family Medical Clinc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Legends Medical Clinic, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Morehouse Community Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Anthem Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Weaver Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Morning Star Rising, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Planned Parenthood of Southern New England", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crescent City California", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weimar California", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DiamondBack Pain, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pocono Adult/Pediatric Med Grp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Medcorps Asthma and Pulmonary Speci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Lifestyle Medicine Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Coastal Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arbor Medical Pediatrics Gilbert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Scottsdale Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Scottsdale Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Papago Buttes Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Scottsdale Children's Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Fredric C. Puckett, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Advanced Cardiovascular Care-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Northwest Medical Associates of Chi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - North Shore Vascular Surgery PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Pricare PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Orthopaedic Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AXMANN AND WHITAKER GYN ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC000_TEXAS TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC001_OBGYN NORTH DALLAS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_CRAIG RANCH OBGYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_NORTHWEST WOMEN'S CENTER/UNIFIED, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_MIDLAND WOMENS CLINIC OF TEXAS II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_OBSTETRICS AND GYNECOLOGY ASSOCIATES OF DALLAS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_WOMENS HEALTH SERVICE ARLINGTON PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC007_WOODLANDS OBGYN ASSOCIATES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC008_WOMENS HEALTH MEDICAL GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC009_CARING CENTER FOR WOMEN OF CENTRAL TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_MARK J GODAT MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC011_PETER J. IRWIN, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC012_TEXAS OBSTETRICS AND GYNECOLOGY ASSOCIATES II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC013_RADIANCE WOMEN'S SPECIALTY GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC014_BKCHEN II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC015_EDWARD D CLARK MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC016_BRADLEY AXLINE, MD, OBSTETRICS \u0026 GYNECOLOGY II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC017_NATHAN THOMAS MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC018_PATRICK L. ALLEN, MD, II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC019_JORGE F LOPEZ M.D. II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC020_FRISCO UNIFIED WOMENS HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC021_TRICIA A SHIMER MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC022_CARRIE KIM PATTERSON MD II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC023_DAVID WI FONG MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC024_903 WOMENS HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC025_MADEWELL OBGYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC026_NAOMI R HARMAN MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC027_NABIL K. ABOUKHAIR, M.D., II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC028_ ATX OBGYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC029_WOMENS MEDICAL ASSOCIATES OF NORTH TEXAS II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC031_MARK D SMITH MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC032_GEORGETOWN OBGYN UNIFIED PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC033_GWEN H WEBSTER MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC034_TOMBALL WOMEN'S HEALTHCARE CENTER II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC035_MICHELEMD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC036_DR HELEN RHODES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC037_TRILOGY WOMENS HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC038_CHRISTOPHER PETR MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC040_GRACE OBSTETRICS \u0026 GYNECOLOGY II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC041_SAN MARCOS WOMENS HEALTH II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC042_WEATHERFORD OBGYN ASSOCIATES II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC043_LAKE VIEW WOMENS HEALTHCARE ASSOCIATES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC044_CHRISTY WALKER M.D. II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC045_ROUND ROCK OBGYN II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC046_CENTENNIAL OBGYN II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC047_ADVANCED WOMENS HEALTHCARE II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC049_NORTH CYPRESS WOMENS CENTER II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC050_OBGYN NORTH AUSTIN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC051_KARAN MOSELEY MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC052_MIKEAL LOVE MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC053_DESERT MOUNTAIN OBSTETRICS \u0026 GYNECOLOGY II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC055_MY VITA WOMEN'S WELLNESS CENTER II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC056_DR. CHOUTEAU MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC057_TEXAS UROGYNECOLOGY \u0026 LASER SURGERY CENTER II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC058_JOHN A WHITFIELD MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC059_NORTH TEXAS OBSTETRICS \u0026 GYNECOLOGY ASSOCIATES II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC060_BOARDWALK OBGYN ASSOCIATES II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC061_LUANN K HASSAN MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC062_DARSHNA S CHANDRASEKHARA MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC063_ELITE WOMENS HEALTHCARE II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC064_HUNTER WOMENS CLINIC II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC065_MOCKINGBIRD OBGYN II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC066_WOMENS HEALTH AND WELLNESS CENTER PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC067_DAMLA G KARSAN MD II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC068_WILDFLOWER OB/GYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC069_VIRTUOSA WOMENS HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC070_ADRIATICA WOMENS HEALTH OB/GYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC071_RIVERWALK OB/GYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC072_FRISCO OBSTETRICS \u0026 GYNECOLOGY PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC073_PLANO TEXAS OBSTETRICS AND GYNECOLOGY ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC076_ALL ABOUT WOMEN OBSTETRICS AND GYNECOLOGY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC077_HILL COUNTRY OB/GYN ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC078_VIOLET CROWN OB/GYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC080_MOONTOWER MIDWIFERY AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC503_WOMENS HEALTH INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC505_HEIGHTS OBSTETRICS AND GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC506_LEGACY WOMENS HEALTH OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC511_LIVE OAK WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCO30_MY LINH VU M.D.,II,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCO74_OVATION OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fulshear Foot and Ankle PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Perry County General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LifeLink Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Kathy Alvarez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Tael Laser Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Orthopedic Medicine of Alexandria,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Anson Regional Medical Services, In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Unique Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Central Urgent Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wilmington Surgical Associates, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Cardiology Associates of Northern N", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Drs. James and Kelly Hoye, Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Nephrology \u0026 Hypertension Spe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - State Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Randolph Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Rocky Mountain Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Leila C Morris MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Shifa Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Frisco Hand Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Step By Step Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dr Jon's Urgent Care Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Riverbend Family Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nephrology Associates of South Miam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Rincon Pain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Carmine J De Fusco MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - New Day OB GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Stephen A Irwin MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bradenton Pain \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Lloyd Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Seattle Integrative Oncology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Millare Healthcare SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Medical Center Barbour", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Optimum Physical Therapy and Perfor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arizona Kidney Disease \u0026 Hypertension Centers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Suncoast Vascular and General Surge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Premier Foot \u0026 Ankle Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gunnison Valley Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gunnison Valley Health Clinic - Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Quakertown Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gaertner Psychiatric PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Heart And Vascular Care, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVENT HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BELLA VIDA FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baptist Health Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bethesda Health Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELITE MOBILE HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Essential Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IDEAL FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOXAHATCHEE FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MELROSE INTERNAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PATIENTS CHOICE PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PINNACLE FAMILY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER MEDICAL CENTER OF BOYNTON BEACH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RevaMed Healthcare Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHENANDOAH MEDICAL CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOMMER FAMILY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rose Women's Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLIANCE IMMEDIATE \u0026 PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHICAGO SLEEP HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Elliot A. Grossman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kass Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulfcoast Medical Housecalls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountain Community Health Partnersh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr. Anusha Sirithara MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Mary Bachko", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Treasured Pediatric Care Hilary Nic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Regis Neighborhood Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Alla Erlikhman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Des Moines University Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHANNON BAUMAN MEDICINE, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Major Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Parkway Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Switzerland County Nurse Managed Cl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lapeer Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Bellevue Primary Healthcare, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Central Florida Orthopaedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Indus Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTER FOR PAIN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clearway Pain Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Clearway Pain Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RelievUS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RenewUS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - VIDA PEDIATRICS LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Doughty Podiatry PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Christopher W. Chu MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vargas Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Quality Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Health Physician Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Joseph's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OAO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jose M Duran MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Clare Medical of New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - LYDIA B. ESTANISLAO, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Primary Care Physicians Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - International Pediatrics Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Next Generation Orthopedic \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Fatan Jaafar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COLLIER FOOT AND ANKLE SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR LOAN LAM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Collier Foot and Ankle Specialists,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Meridian Physicians Consulting, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lufkin Adult Medicine Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hamilton Mill Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardinal Chiropractic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardinal Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Jennifer Stroh, DO LLC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Mountainlands Community Health Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Thompson GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Associated Pulmonologists of Wester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Helen Mirau, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Lisa Diamond MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Specialized Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Hazlet Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Sand Medical Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Davuluri Childrens Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Jil Medical Consultancy Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Powell Health Care Coalition", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hafeez U Rehman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Doctors Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Anita C. Vaughn, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - James J Gomez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - DeKalb OB/GYN Affiliates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Center For Pain Care PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Kimberly Manina, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Matthews Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Down East Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Francisco Rodriguez \u0026 Associates MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ABA Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Medical Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Centro Medico Del Carmen, A Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - South Central Ohio Obstetrics And G", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Pulmonary and Sleep Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Michael Skyhar, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robert Stokes MD PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nevada Kidney Disease \u0026 Hypertension Centers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pioneer Valley Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palmetto Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prisma Health Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Prisma Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Laurel Pediatrics and Teen Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sarabjit S Anand MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Convenient Care Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pediatric Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Danvers Family Doctors, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CENTRAL VALLEY URGENT CARE MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cristo Calle Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Premier Obgyn Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Flanders Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BJC_Bone \u0026 Joint Clinic (Legacy)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bone and Joint Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Covington Orthopedic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LMG_Lab Division", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NAT_Nautilus Rehabilitation (Legacy)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pontchartrain Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Training Room", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Harrogate Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metropolitan Neurosurgery P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Minnesota Neurosurgical Trauma Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cha OB/GYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Kenneth G. Cesa, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina GI Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clancy Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Brunswick Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - New Concepts II, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael A Benavides DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwest Hand and Microsurgery PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Midcoast Medicine \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Joe Ghanami, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Rice Planter Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Sports Medicine-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gritman Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Shen Valley Family Practice DBA She", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Circle The City, an Arizona Non-Pro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family First Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ventura Pulmonary Crit Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - San Luis Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regional Center for Border Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "San Luis Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Justin Alexander, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Medical Care of Mount Dora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Marshall Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Asthma Allergy Immunology Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Jack Sproul Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Thomas A Digeronimo MD \u0026 Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Dr. Bose S. Mikkilineni, MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr Tan Women's Health Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ormond Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Spine \u0026 Brain Neurosurgery Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Palmetto Nephrology PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Joel D. Weisblat, M.D., Inc. (dba A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Raul Ramos, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Monmouth Arthritis \u0026 Osteoporosis L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Shore Atlantic Geriatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Ajay K Joshi Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Appalachian Family Practice, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Greenwich Pediatric Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - FAMILY HEALTH CENTER OF PLAINFIELD,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Center for Child and Family Develop", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MediPro Orthopedic \u0026 Spine Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Diablo Nephrology Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Podiatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pediatric Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Total Urology Care of New York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Dermatology Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Lumina Women's Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTER FOR THE SURGICAL ARTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elkridge ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gemini ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North American Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain and Spine Specialists of Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain and Spine Specialists of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain and Spine Specialists of Maryland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain and Spine Specialists of Pennsylvania", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain and Spine Specialists of Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shakthi Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Simcare ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Aaron K Clark MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Plantation Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Allied Health Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Prime Medical Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Huron Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Zafar Quader MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - JEFFREY G. OGDEN, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Center for Health and Cancer Preven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Orthopaedic Surgeons Limited", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sierra Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Exodus Healthcare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOUNTAIN VIEW SLEEP CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Lost Rivers Hospital District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lost Rivers Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peach State Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - William R Bond Jr MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bridge Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - PALM Integative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Rocky Fork Family Practice, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Warren Community Health Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LOUISBURG FAMILY PRACTICE AND PAIN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Illinois Valley Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IVCH Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Illinois Valley Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Joel S Leifheit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Hygienic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Esperanza Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Blossom Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - COTA MEDICAL MANAGEMENT GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Jawad H Khan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR. ERIC TIBLIER, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OHI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Total Healthcare Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NewYork-Presbyterian", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Meaghan DiLallo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - TPIRC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Valley OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Amana Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elite Kidney Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Dr. Anika T Whitfield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Orthopedic Ins of Rio Grande Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MSPB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mt. Grant General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PORTER EMERGENCY ROOM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Woodlands Physician Network Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodlands Healthcare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Issa Yusuf MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - W. Thomas Thompson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Jagdeep S. Bijwadia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - I Clinic P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capella Kershaw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUSC COMMUNITY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - East West Integrative Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Central Texas Foot Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pinecroft OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED SURGICAL HEALTH ASSOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Specialists of Central NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Centro Hispano Urgencias Medicas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - One Palos Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - FMB Medical LLC DBA Estero Island M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - FOOT HEALTHCARE ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Jim Robinson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ANWAR E. MONROY, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David J. MacGregor, M.D, APC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grant A Craig MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "I35 Capital Physician Group Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Specialists of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paul R Millmann MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VERITAS FAMILY MEDICINE DENTON PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LliBott Consultorios Medicos WS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Vesna Mrzljak MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Tularosa Clinics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - DBA TRAILSIDE HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Comprehensive Medical Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sacred Heart Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gladys Dupuy, P.A. DBA Orchid OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Logan County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Straith Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Carroll Parish Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Scott Gynecology \u0026 Pelvic Surgery,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Paradigm Healthcare PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Sikeston Surgical Specialist, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Orleans Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - RMCHCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RMCHCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UUC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Englender, Sper, \u0026 Drasnin MD's Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - A. Vicki Rickerson M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pediatric Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Center For Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Port Orange Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DALLAS ENDOVASCULAR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgia Endovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Endovascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Endovascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sacred Heart Mercy Health Care Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Allayant Pain Management, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shivam Medical Group, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - J. Shan Young , MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ventura County Urology Medical Grou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Freedman, Lee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Healthy Woman OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tennessee Pediatrics/ADO Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Orthopedic Surgery \u0026 Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sean Kelley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Kappos Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Bloom Midwifery and Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rager Adolescent Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Mohammad Jarbou MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Shelburne Pediatrics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Barnard Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hand and Plastic Surgeons of Katy,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - McGillicuddy \u0026Sungarian, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - PARK CITY GYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Greenwood County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Southwest Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Birth Place/Easy Access Womens Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Orange Women's Health Service Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Nikolaj Wolfson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lake Immediate Care \u0026 Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Aids Project East Bay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Signature Psychiatry Associates Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "H\u0026B Quality", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FULL CIRCLE MIDWIFERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Full Circle Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Venkata R Mannava MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Neighborhood Health Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Berkeley Primary Care Medical Corpo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kare Family Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eugene Usberghi Jr DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Axtell Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Kreptowski Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - James McGrath, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dawn Porter MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Foothill Pediatric and Adolescent C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sattin, Sandra Gail", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Susan C. Benes, MD- Start-Up EMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Deekay Medical Center, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Heisler, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lowell, Bruce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Schubert, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baystate OB/GYN Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Greenwich Village Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Waterboro Village Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Roberta J Guibord DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pulmonary \u0026 Digestive Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vernon Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Tobar Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - S.A.S. OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - M Elaine Krosse DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Gipson, William Terry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nagarathna G. Manjappa MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Landry, Frank", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integrative Wellness Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Rose City Pediatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Serio, Thomas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Zang", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Acadiana After Hours", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Martin's Pediatrics and Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RHN Medical \u0026 Dental Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Regence Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Florida Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Leder, Michele", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Liberty Pain Associates, Sathya P B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Heart Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Groene, Linda", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - In2it Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - White Plains Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Nallamala, Ramann", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Associated Medical Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neurology Solutions Consultants, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Thomas County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Balance Integrative Health \u0026 Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Noela Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Moore Free Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Plastic Surgery Associates of South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Podiatric Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Pain Centers of the Midlands, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Coordinator Demo Facility", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Batson, Charles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CardioSolution Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Esprit Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASSOCIATES IN DERMATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Silvergate Medical, Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hart/Hattwick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Alliance Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Greystone Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Vein Associates of Northwest IN.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Medical Anesthesia Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - North Coast Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Northwest Florida ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - VR Allergy \u0026 Asthma Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Angels Medical LLC dba Camden Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MUMTAZ \u0026 MUMTAZ, INC. DBA Alpharett", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston ENT Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kovar, Gerald", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Nanticoke Cardiology Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - South Central Kansas Med Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Vitae Integrative Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Seattle Natural Family \u0026 Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Apollo Healthcare Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Bellevue Family Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Lampinen, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Billet, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Remnant Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Fred E Santoro MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Shady Side Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Optimal Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Chaney, Sharon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Genevieve Belgrave, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ellahi Heart Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Metroplex Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hospice of Wichita Falls, Inc. DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Madison Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Franden, Christine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ankle \u0026 Foot Center of Central Flor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Penny Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Cardiovascular Specialist Of German", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sachdev, Atul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lifecare Podiatry, P. C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Robert Abrams, D.P.M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - NEA Reliant Health Care Professiona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Family Birth \u0026 Women's Health Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ADOC Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Levin Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Elizabeth Foot and Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atlanta Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ortho Xpress", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROSI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - CAVU Healthcare Systems LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Progressive Surgery LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Vascular Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - King's Clinic and Urgent Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Regina B Portnova MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Vivek Mangla MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Open Arms Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tennessee Valley Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Mesa Family \u0026 Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Surgical Care Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Estrada, Patricia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - 3D Sports Medicine and Orthopaedic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Persuaded Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Pulmonary Health Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Mize, Shannon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MD At Home Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Point Loma Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Emanuel V Dozier MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Alicia R Guidone DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Five Journeys, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Penner, Dennis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Madison Family Physicians Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Melonie Roberts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Medical of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Amputee Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Disc Comfort Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAMLET PPM LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAMLET PSYCH PPM LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BSP_BIG SPRING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Big Bend", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Big Bend Regional Health Center-RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MONROE PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Southward Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kay May Kwok, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Branch Pediatric \u0026 Adolescent Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeung C Yoo, MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marland, Albert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Maine Coast Hand and Shoulder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Steven W. Pappas, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Spine Specialists of Louisiana, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Consultative Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Consultative Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dr. Jeff Wilkins M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mark C Nitzberg MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Richard L Isaacson DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Talbert House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Eastern Pulmonary \u0026 Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jefferson Community Health Care Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinical Bridges PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Joyce D Johnson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Monroe Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - ANP FAMILY CARE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lovely Foot Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Just for Kids Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Ram Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Redi-Med LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - The Inner-City Muslim Action Networ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - MedLeaders, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Sandwich Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - U City Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Tulsa OBGYN Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Center for Internal and Integra", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Family Medical Clinic of Lawrencevi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southside OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Family Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Sastun Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Arnett Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - TRINA KAPOOR FRANKEL, DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lata T Bansal MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Healthy Kids Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Horizons Medical Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Christ Health Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Rebirth OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ballentine Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Saint Lucie Family Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Guy, Esther", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Carolyn C Thompson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Yonah Mountain Family Practice DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Randy B. Cronic Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - BMI Surgery, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "My Flushing Medical Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Tooele Valley Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - West Virginia Health Right", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Browne Family Practice PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Baptist Community Health Services I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bee Well Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Jonathon G Dewald MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Nicholas Cassis Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Inscriptions Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mylinh Trinh MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Edward W Pegg MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Beach Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The C.W. Williams Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hampton Health, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Thal, Alyson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Edward J Snyder MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Mount Olympus OB/GYN/CNM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - CoordiCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - STONEBRIDGE FOOT AND ANKLE, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Allstar Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - David Elmer MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michele Y. Yoon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulf Coast Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Antonio Pizarro, MD, APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Regina Fearmonti, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Sartell Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bernice Gonzalez MD, PA DBA Vital L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Roger A Pompeo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROSM of Boulder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regenerative Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Alpine Orthopedics and Spine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Craig Shouse DPM PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Interventional Cardiac Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LECOM Englewood Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Perisseia Primary Care and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Lawrence M Lampton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Suresh K. Sachdeva, M.D., Professio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Dr. Warner Bruner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Institute of Dermatology, Laser and Cosmetic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Frederick C Hayek MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Healthy Brain Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Elmer H Lommler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Heart Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hanna Dgheim MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Robert Grossman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Raul D. Isern Jr., M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Center Grove Foot \u0026 Ankle Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Stuart B Kipper MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - South Atlanta Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sports and Family Medicine of Boern", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Su Clinica Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Advanced Vein Therapies DBA Miller", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Mountain View Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Advanced Orthopedics and Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Colonial OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gwenervere L Flagg, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SOUTHERN AZ OPHTHALMOLOGY, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Ashe Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Medicor Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - The Expressway Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - ALI O. EROL, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NorthStar Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ayman Z. Matta, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Quality Care Internists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Allergy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Steiner, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Allied Pathology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Comprehensive Wound Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saddleback Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Orange County Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Carrie B Boyd Healthcare Center, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Birmingham Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HJA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Buffalo OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Daniel S. Forrer D.O., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - St. Vincent de Paul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent de Paul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Oakland Primary Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Orthopaedic Specialists of North Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Specialists of NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Cuozzo, Gregory", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Obermeyer, P. Mae", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Julio C. Molina, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LMG Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Loudoun Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delta Health Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Senior Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marcus K Parker MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Femm Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sassan Keshavarzi MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwestern Cardiac Arrhythmia Ins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HENRY MAYO NEWHALL URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alonso Med \u0026 Wellness Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Dr. Dixon Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cornerstone Charitable Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neurology Children's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Center For Internal Medicine (term)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - LCS Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Premier Sleep Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Snake River Community Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Neurology and Pain Consultants, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Elite Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ATLAS Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midwest Orthopaedics at RUSH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gibbs Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Beresh Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Cardiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Joan Y Lyn DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Eastside Neurology Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gastroenterology Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Warman, Sheldon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Carlos A Cruz MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Memon Health Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Livia A Delgado MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ally Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Jon L Stockrahm DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Shoulder Surgery \u0026 Sports", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Compass Pain Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Pax Medical Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Humbard Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Samaritan Health Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hegland, Erika", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bridgeway Rehabiltation Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rodolfo M Revilla MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Physicians Care Starke", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - New Haven Neurosurgical Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DBHMDMEDICINE, P. A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Fremont Family Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - OCampo Medical Centers LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. LaRon Mason, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Stoney Mesa Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Amity Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rehab Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Valley Allergy \u0026 Asthma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Advanced Care Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - George N. Chidi, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - New York Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Sound Beach Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sacred Heart Pediatrics Detroit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Mathews, Mahesh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Adam Milik MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - David C Matthews MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anderson Podiatry Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foot Surgery Center of Northern Colorado, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Regis Kwo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Monahan, Kevin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AVICENNA MEDICAL CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Preventive Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SDM-1 Stop Primary and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Achilles Health Care, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Dr. Florence Aslinia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FOOT AND ANKLE CARE OF SOUTH JERSEY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Thomas, Adeeb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Kingdom Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - David L Samani MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Juan Martin MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - John Phoenix, APRN, PLLC, d/b/a Hun", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Iraan General Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Zito, Gene", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lopez Po, Patricia.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Zekser, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dream Sleep Testing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHESTNUT HILL CLINIC COMPANY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Shamsa Ali, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Advanced Family \u0026 Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Goodman, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS UROLOGY GROUP, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MELBOURNE VASCULAR \u0026 ENDOVASCULAR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Education Plus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - John A Walsh, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUSC COMMUNITY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Providence Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - LPNT Providence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Proactive Rehab, Physical Therapy \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ernesto J. Villegas, M.D., S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Altamonte Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Open Health Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Handelsman, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Women's CenterforIntegrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Eastern Urological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EyeCare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sports Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Chand Rohatgi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Trinity ASC and Cath Lab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Volunteer Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Christ Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Olga Joukovski, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Restore Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Stuart Silverman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weems Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - George Galvan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Barry L Smith MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cornerstone Management Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hale County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Samia Kozman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Regenerative Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alta Orthopaedic Medical Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Collins, Ann", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - The Rosa Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Deborah Mistal DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Denali Family HealthCare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blane K Chong MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - TP_Blane K Chong MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Glenda Petrie, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - One Stop Family Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arlington/Mansfield Foot \u0026 Ankle Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GBC Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Milan Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Surgical Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Ley, Christopher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Gastroenterology Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Valley Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - John Joven, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Patrick A Krzyzewski DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Southeastern Surgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Wasserman, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Prospect Behavioral Pediatrics and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TOTOE MEDICAL GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascentist Physicians Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Northeastern Rural Health Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pikes Peak Internal Medicine Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wee Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hoat M. Hoang, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Total Wellness Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Infectious Disease Specialists of C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Phillips, Spencer/ Phillips, Kelly", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - RUETZEL GYNECOLOGY \u0026 OBSTETRICS, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Zeale, Peter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - JOHN EDWARD KELLY, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Pace Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Diabetes and endocrine center o", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Surya Health Care Limited Liability", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Melvin A Martinez-Castrillon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - HealthOne, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Patricia A. McCalley, CNM, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Behm Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Riverbend Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - EveresT Center for Men's Health, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OrthoNow Aventura", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kathy Adams-Berry MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Real, Timothy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Michele Ziskind MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miriam Lara MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Saint Paul Family Medical Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Innovative Women's Health Specialis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Maria Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lehigh Physician Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Oculofacial Aesthetics, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Excelcare Alliance, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Northside Child Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Desiree Reyes DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - John Krehlik, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Bellingham Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JR Johnson, MD, Inc - athenaOne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arthritis Consultants P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Village Crossing Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Appalachian Heart Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central North Alabama Health Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Diego Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Harding Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Newman Medical Partners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Newman Regional Health Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Occ Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SOUTHERN INDIANA ENT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPITAL HEALTH MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capital Health Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Imaging and Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercer Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Capital Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Ear Institute, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Advanced ENT \u0026 Allergy PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Harbor Family Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Shipley And Sills Family Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Healthy Babies, Happy Moms Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Highland Urgent Care \u0026 Family Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeastern Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Delora A Denney MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Pallavi V Rawtani MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Stevens, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Kleinman, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Greenway Family Medical Practice LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Access Healthcare Associates, A Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Essential Foot Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Birmingham Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lakeside Endocrine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ridge, Shelli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Valley Colon and Rectal Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ATX Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Neospine Puyallup Spine Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cabarrus Rowan Community Health Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Upper Extremity and Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Foot and Ankle Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Desire / Dr. Djafari", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ashburn Lung Specialist, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dodson, Calvert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - East Valley Joint Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David A. Hernandez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Shelby Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Carbon Medical Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Alice C Adee MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Agape Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Fairview Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roanoke Valley Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric M Kagel MD Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulfstream Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Dedri Ivory MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Street Outreach Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALPINE URGENT CARE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GESSNER PETERSON HOUSE CALLS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gessner Peterson Medical group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - South Royalton Health Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bridger Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bridger Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pro Sports and Elite Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - YC SBHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Permian Digestive Disease Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Access Medical Care of Monroe Count", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mark Nelson, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Stephen Nitz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Blue Ridge Urogynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Agnar Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diane Petrilla", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "J. Lynn Williams", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sewanee Family practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sewanee Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Tennessee Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Gila Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Acadiana Pediatric Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwest Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - West Mountain Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Sage Functional Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brazos Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Granbury Hospital Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Granbury Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Granbury Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeside Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Natural Family Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ultrasonics Diagnostics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Michelle Snyder Do, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Thomas H. Walter, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Allergy, Sinus \u0026 Asthma Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Oklahoma Shoulder Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Jacobs/ van Cleeff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Isaeff, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Perez and Denney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sklaver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bay Area Transitions Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Clay-Battelle Health Services Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Conrado Boja", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Foot \u0026 Ankle Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Pediatric Medical World", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr Brian Welsh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Christina Littrell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Jenny Uremovich", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Lyndsey Harper", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Paul Payne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Robert Gladney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Robert Gunby", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - PA Foot \u0026 Ankle Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Haven Home Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHERN PLAINS ANESTHESIA ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WYOMING INTERVENTIONAL PAIN MANAGEMENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Prime MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sigma Pain, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aspen Center For Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - John J Green DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Adelpha Psychiatric Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sound Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - TNT Kids OT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - CONNECTICUT NEUROSURGERY AND SPINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas Healthcare For Children", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Bath Beach Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Richarme, Susan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Barton Family Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Valley Medical Arts Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Comprehensive Healthcare of Louisia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Williamsburg Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Salud For Women \u0026 Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Broward Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A Plus Family Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Broadway OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NORTHEAST TEXAS ONCOLOGIC AND RECO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Fit Feet For Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - W2W Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alpenglow Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ABC Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - John F Reilly MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Emir Rubio MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Pathways Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Corktown Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HELP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Hetland Ear Nose Throat PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Select Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Illinois Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Spine and Pain Clinics of Minnesota", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stem Cell Centers of Minnesota", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Pediatrics \u0026 Adolescent M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Dr. Gary Birdsall Medical Clinic LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Neuroscience Network Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FIOSS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paley Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palm Beach Children's Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palm Beach Neuroscience Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunrise Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tenet Florida Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Lakes Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northshore Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CNCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Shailesh Joshi, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Denton Digestive Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rajan-George, Biby", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Adventist Reporting Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Wagener Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Schubert, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OB/GYN Specialists of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Frey, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Vein Specialists of Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Meadows, Kim", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Be Well MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Weiner, Lewis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Caring Partner Medical Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Brunswick Cardiology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Morris, Walter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Markey Cancer Center at Lexington Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Lexington Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Urgent Care and Wellness Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sharon Yegiaian, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Volunteers In Medicine Berkshires", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Steel, Lilly", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Lung Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kay R Lewis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Yessar Hussain MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH BEND ORTHOPAEDIC ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Bend Orthopaedics / OrthoAlliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastern Iowa Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Thomas W. Britt, DOPC DBA Gap Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PPGWNI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mondi, Philip", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - PGC Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palm Beach Orthopaedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Foot DrX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiovascular Institute Of America", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Steven P. Havard MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tri-Valley Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tri-Valley Orthopedic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Michael H. Tarlowe M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murphy Group Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Trent L. Tredway, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Flatiron Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kidney Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tandem Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lavin, Marc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Hasbrook, Charles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Maldia, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dr. Karl Sillay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - LAGRANGE MED CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Blue Tiger Recovery LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Saima Jehangir, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AmeriClinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - WDPC Orthopedics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Moody, Jon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Rural Health Medical Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tri Valley Allergy, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "**DO NOT USE**", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "**DO NOT USE**", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Carolina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "**DO NOT USE**", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wisconsin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - J Paul Jones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BMS Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dedication Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Los Gatos Doc, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - DeAtkine, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADHE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Brain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - BUFCSAC, PC DBA BENCHMARK URGENT AN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - BUFCLA, LLC DBA BENCHMARK URGENT AN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BUFCTX, PA DBA BENCHMARK URGENT AND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Thomson, April", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Jefferson County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Oasis Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cleveland Area Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Area Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Area Medical Associates a service of Cleveland Area Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DNA Comprehensive Therapy Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Roberto Benejam MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - EverCare Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Heart Failure Survival Center Of Am", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Hills Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - StediClinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Pocatello Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - South Bay Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marietta OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MyPCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Boules Salib, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BELLIAMINOWA V. JACKSON, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Louis Medical Professionals", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Louis Medical Professionals Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Riverside Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Morris, Paige", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Northampton Neurology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - T\u0026T Healthcare, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Right Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - PRENTISS PRIMARY CARE, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Quiroz Adult Medicine Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wiregrass Vascular, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Integrated \u0026 Preventative Health Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Cohen, Adam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Hinchman, Glenn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Gerber, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Malama Pono Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Dr Martha Arambula", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Neuromuscular Spine \u0026 Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Park Sierra Medical Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AIMS OUTPATIENT SURGERY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AIMS PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AIMS URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Healthstop LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Elysium Aesthetics And Vein Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alberto Chavira, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael DiClemente, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delhi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Richland Parish - Delhi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bibb Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Interventional Spine \u0026 Sports Insti", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Augusta Allergy and Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Ortho Plus, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Senior Healthcare Outreach Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Northside Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Miller Urogynecology, S.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Physicians' Specialty Hospital (a campus of Siloam Springs Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ralph B Armstrong DO dba Hollister", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Senior Friendship Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Hilliard Family Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - LYONS PRIMARY URGENT CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Skin Wellness Dermatology Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HMH Physician Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HMHPO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WCRHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Rocky Mountain Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Robinson, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Heart to Hand, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - N AL Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sebring Urology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Allied Health Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GFP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GFPP_Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Griffin Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Non GFP_Population Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Erena Treskova \u0026 CO., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sun Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rural Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vida Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dr. Terry Sinclair Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wyn D. Nguyen, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Progressive Urgent Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Advanced Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Cromwell Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Syllette N King MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - S. Park-Davis Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Kalonaros, Vasilios", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Community Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wills Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Elaine Ellis Center of Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Millennium Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Michl, Keith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Neibaur / Terry / Jensen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Surgical Associates of West Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Matsumoto, Mavis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Salem Township Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Salem Township Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Coastal Volunteers in Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Remirez, Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Vibrance Internal Medicine and Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Spring Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Whole-istic Living, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Charter Oak Walk In Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peter D Jones MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nivano Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nivano Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nivano Physicians, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "River Bend Medical Associates Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Alpine Surgical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lifeline Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Comprehensive Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Silver Spring Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Scurria, Sandra", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - RPW Obstetrics/Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Independence Foot and Ankle Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Delco Family Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Comprehensive Pain Specialists, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Madrona Hill Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Teresa R. Kroeker MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Synergy Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EDX_Evergreen Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EVERGREEN FAMILY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EVERGREEN FAMILY MEDICINE, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Teresa A Shenouda MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TX - Ford / Holster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pelican Family Health Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE ENT CENTER OF TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE HEARING CENTER OF TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUELLER SURGERY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Roth, Philip", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Gumshoe Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Comfort, Kevin P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alexander, Anne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - 365 Recovery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Caretime Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Duncan Family Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Portage Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Good Old Fashioned Family Doc Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Fordem Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Korngut, Irwin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Southeast Michigan Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pampe, David E.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Metzger, Loretta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Allegheny Medical,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Lung and Sleep Institute, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Dimski, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Center for Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kumar Rajagopalan, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - RAWLINS COUNTY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rawlins County Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lake Russell Specialty Healthcare S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PEDIATRIC CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WFPH PEDIATRIC CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Susan Steadman ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - WiseCare Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEPHROLOGY ASSOCIATE OF TEXAS CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Superior Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sandpiper Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Newberry County Memorial Hospital Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Handelman, Mark C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vicroy, Theresa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Gunter, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Family Medicine \u0026 Vein Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arlington Center For OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Northlake Family Practice P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Access Omnicare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Justis Group of Edenton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alan Mintz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Morris, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Central Florida Internal Medicine a", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Retina Consultants Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Hussain Rawji", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lisa Bartoli, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joseph P Behan MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Silicon Valley Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas Neuroscience PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Four Women Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - La Altura Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - EGGLRock Nutrition, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pedernales Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Hamerly Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Charles J Veale MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Body Of Christ Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Old Irving Park Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Boynton, Gerard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Jennifer Tuttle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jamacha Urgent Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alabama Pediatric Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Innovative Surgery Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Young, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Imlay City Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - One World Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Majid Ghauri, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Biem Medical Services PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rodeo Drive Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Doctors Advice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Douglas Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARSHFIELD MEDICAL CENTER - NEILLSVILLE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fremont Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cross Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neurology Restoration Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "135 S Bryn Mawr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "234 S Bryn Mawr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Buckingham Primary Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heritage Main Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Paradise Valley Foot \u0026 Ankle, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sean M. O'Brien, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Dan Lister, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cleveland Family Health Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Damion J. Valletta, DO, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Paul C. Murphy, MD DBA Murphy Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ACHE Institute PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dovilan Wyatt MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Schrader, Shannon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - David A. Mackoul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Trinity Health Connections", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Common Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Anders, Alec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NeuroGrow Brain Fitness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - APG Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Marcos Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Clarksville Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Neurology \u0026 Neurodiagnostics of AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Vicksburg Holistic Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - APPLE Medical Home Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - TRIDENT CARDIOLOGY ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Southern California Kidney Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Maida, E Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Value in Prevention of Houston, TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Philly City Foot Doc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ehab Shalaby MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Delaware Neuroscience Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Gastroenterology Consultants of Wes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Francis X. Walsh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - West Side Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Challis Area Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicagoland Pain Management Institu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Tova Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kenneth P Tway", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - 14 Street Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Thaxton Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jim Tougas, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Transitional Care Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - John P Lavery MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hollywood, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Colonial Heights Pediatrics Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Berkeley Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tall City Convenient Primary Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Yaniv Larish MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ware Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Vinay Parameswara \u0026 Dr. Aditi S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - We Care Pediatrics \u0026 Adolescent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Your Best You", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Poleck Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - North Suburban Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Customized Care Management Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kevin Vo Md Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Quick Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Maui Lani Physicians and Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Living Well Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Northeast Florida Health Service In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dodson, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pine Ridge of Pittsboro Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pine Ridge of Sanford Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Sports and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Allergy \u0026 Asthma Tri-State Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cornerstone Family Practice and Urg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Carriero Foot and Ankle Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Minnesota Head \u0026 Neck Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bliss Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - McLaren Port Huron Pulmonary Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - NEBRASKA PAIN MANAGEMENT PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Medical Arts Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Richard L Lockwood DO Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Jackson Health and Wellness Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ernesto Pinzon, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sedat T Ekici, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Center For Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Healing Community Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Northeast Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mecklenburg Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Coast Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Primary Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Michael A Dundr MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Health Experiences Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kaplan, Harry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Family Health Care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Utica Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - CENTER FOR PHYSICAL MED AND REHAB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CKS MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Neilan, Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michiana Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unity Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unity Medical and Surgical Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "iSpine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Dallas Shared Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DANELO R CANETE MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gerald H Watanabe MD LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kapolei Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Partners of Hawaii", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Brandywine Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kinue Miki", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Keiki Korner Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Internal Medicine Honolulu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Family Foot Health Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Global Neuro and Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - QHC PF Alta Vista Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - West Sedona Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - TeamPraxis Master Tablespace", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Winnie, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Flores Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Mercy Family Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Campbell Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - TELLinMedicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PrimaryPlus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coteau des Prairies Health Care System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neighborhood Health Services Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dayton Center for Neurological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Holliday, H. Douglas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Socrates Perez-Rodriguez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Covid of Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Express Care \u0026 Platinum Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Psychedelics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Flood Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Missouri Delta Foot and Ankle Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - A Plus Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Jack Ford MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Akeso Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeffrey Peterson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - House, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Paragon Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lifetime Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ashutosh Rastogi MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Shelton, Kimberly", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MSU Health Care (Legacy)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mid-Michigan MRI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Bladder Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Regan, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Ozdemir, Leah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Berg, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Stephen Massimi MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "City Health Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cottage Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Sanders Clinic For Women PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Cleveland Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "University Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Milles, Gary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Center of East Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Regional Neurosurgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MediCalls of New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Origins Primary Care at Montgomery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Universal Health Care Navigators", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Joann Pfundstein, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Hubner, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Hubner, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Malinow, Malinow, Oster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - William F Simpson DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Hearing \u0026 Communication Partners, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MD- Osman/Osman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Partners in Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sierra Neurosurgery Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Katz, Claire", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Gwinnett Family Medicine and Geriat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bethesda Medical Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Usaajj Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kolender/Kerner/Zide", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ellenville Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Graham Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bharathi Gowda MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Grace Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ACTS OF KIDNESS PEDIATRICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Garcia, Nicholas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shabnam Qasim MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Jeri White DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KEYSTONE FAMILY CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Joseph J Savitt MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Metzger Jr, Charles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - OrthoArkansas, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoArkansas, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Child Heart Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Baystate Neuropsychology \u0026 Concuss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Family Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Sinus \u0026 Nasal Specialists of Louisi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Holly Y Sata MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sierra Pacific Surgical Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Keshvari -Rasti, Hamid", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - RICHMOND PRIMARY CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Corinthia McLeroy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Wound Healing On Wheels, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Neurology of Bethlehem P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Work Life Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MATERNAL MEDICINE CENTER INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Waseemuddin Kazi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - LeBlanc, Cheri H", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Tony C Roisum MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Rosen, Amy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wacks, Israel L.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Shapiro, Evan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Maliheh Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Potts Surgical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Singer, Jacobs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Murphy, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Pelvic Floor Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - North Shore Heart and Vascular, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Oculoplastics Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gonzalez, Rigoberto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bessemer Family Foot Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Chang W. Ahn, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - S Irfan Shah MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Afaq Kazi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wacks, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Del Pilar Medical \u0026 Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Frederick County Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Steve W Smith MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - VIP of Mississippi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OKLAHOMA SLEEP INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Sleep Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hobbs, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FourOaksHealth, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Smith, Alan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aunt Martha's Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Pediatrics-Central FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "White River Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Stephen Payne MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Pone Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nurture Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Vivian Family Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Family/Industrial Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Keval Patel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STAT+MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Zero Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Blackmon, Donald", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PATRICIA W HENDERSON DO PC DBA Jack", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Woodlands Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pacific Endometriosis and Pelvic Su", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lippelman, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Health Physician Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP Medical Group CT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP Medical Group GA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP Medical Group PA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Arkansas Verdigris Valley Health Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE ARIZONA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE COLORADO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE FLORIDA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE GEORGIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE NEVADA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE OHIO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE VIRGINIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADV CARE WASHINGTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARIZONA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARKANSAS DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CALIFORNIA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COLORADO DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CONNECTICUT DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FT Worth Dispatchhealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida DispatchHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgia DispatchHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IDAHO DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ILLINOIS DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Indiana DispatchHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kansas Dispatchhealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kentucky Dispatchhealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MASSACHUSETTS DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MONTANA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEVADA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW JERSEY DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH TEXAS DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OHIO DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OKLAHOMA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OREGON DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH TEXAS DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TENNESSEE DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TEST - WYOMING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIRGINIA DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WASHINGTON DC DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WISCONSIN DISPATCHHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Washington DispatchHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "zzzDelete-Seattle DispatchHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Castle Hills Eye Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Genesis Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Chart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kaplan, Levey and Levine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Melecia Fuentes Md Pa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Nellestein Vein Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Pain Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Falfurrias Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Pinon Family Practice, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Aimee Widner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ellenton Family Practice Direct", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Song Bird Healing Arts, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gil, Kevin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr. Brian Cain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gehring, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - LeFevre, Christian", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Nolfo, Emily", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rex, Stephen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Samuel B. Pegram MD PA DBA Rheumati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Fox, Julie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peninsula Community Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Myers, David A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Dale Nash", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Stewart Trimble", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Jones, Tammy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Boulware/Dozier/Ross", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ridgeview Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Restore Medical Partners, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kimberly Hicks MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Romero, Jacqueline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Moosa, Abdul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Ruxin, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Agata Oczko-Danguilan, M.D., S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Freeman, Helene", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Jim Zimmerman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Lanter / Scanlon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - O'Brien, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cahaba Pain \u0026 Spine Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RESTORE VEIN \u0026 WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AA - Golden Practice 52", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Lederman / Weinberg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Caughron, Samuel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - George Schwenck DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Griffin OB/GYN Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Danville Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kaufman, Ava", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EPC Family \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Academy Women/Children Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Womens Health Center Of Clrksvlle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Elizabeth Pacocha, DPM, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Natural Family Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sabriya B Ishoof Md Obgyn Pa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nadia Gaddi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - INTERNAL AND PULMONARY MEDICINE OF", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Walk In GYN Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Helping Hands Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Muslim American Social Services,Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Boris Havkin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Princeton Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Longevite Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pankaj J Patel, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Becker, Frederic dba King of Prussi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mary C White DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Blum/Bontempi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Utah Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Odibo Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mt Pleasant Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ramaswamy, Shreelakshmi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Brandse, Karen-Gail", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - KAYAL MEDICAL GROUP INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Rekha A Patel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Spine \u0026 Sports Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Cardiovascular Physicians \u0026 Consult", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Conlon/Crowe/Kopecki/Myers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Reproductive Endocrinology and Infertilely", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Reserve Health, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - THE SPORTS MEDICINE AND REGENERATIV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - AAA Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Asian Muslim in Need", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Schwarzentraub Foot Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Wooten", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Alford / Jackson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Baker, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Talcott Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Unity Health on Main", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrative Cardiovascular Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Michigan Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Madras Medical Group Pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Thomas Fowles MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Lighthouse Foot and Ankle Center, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Milca Kaplan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wesley Chapel Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Family Healing Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Crowley, Kurt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Benson, Stuart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Catalina Island Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Catalina Island Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Gassner/Elliott/Jorgensen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Alaestante, Greg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Hoshiwara, Steven/Coulombe, Paul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Okimura, Judy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Way Free Medical Clincic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Wilson, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Surgical Group of Southwest Mic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Doctor's Clinic of Rio Grande City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BEACHES BEHAVIORAL MEDICINE, INC. D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Leeward Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Every Child Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PSD - Health Centers SBHCs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roaring Fork School District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Open School", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCA - Central Coast Associated Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Desert Care Network Primary and Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GMS - GMMSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAN - San Ramon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCA - Southern California Associated Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Marshall Nickel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tannaz Ebrahimi Adib, MD, APC dba V", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Family Circles Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Tygart Valley Orthopedics and Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lone Star Kids Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Northern Illinois Orthopaedics And", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lindsey E. Tijerina, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rejuv The Derm MediSpa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Vern M. Christensen, DPM, PA dba Fo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Relief Pain and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Union Square Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Oncology, PA - JPL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Todd S Newberger MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Crantz, Joanne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Washington Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - District Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nissi Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Delaware Center of Excellence in Ob", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Providence Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ira A. Katz, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Kwak, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Couch III, James C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Waynesboro Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cure-TX Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Urology Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cape Fear Clinic Incorporated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Fennell, Gail", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Center for Rural Health Innovat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - North Louisiana Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - George C Pursley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Heartland OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Macon Volunteer Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Low Country Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lazowick/Hutchison", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Clinic of Jackson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Medical Center Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mel Leaman Free Clinic of Smyth Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Kids Station Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Lagom Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Samuel U Rodgers Health Center INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Samuel U Rodgers Health Center INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Whitney S. Kennedy, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Gibson General Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aaron J Burrows, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tennessee Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Dettmann Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Regenirex, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Oakland Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wakefield Pediatric \u0026 Adolescent Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Salina Family Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Musarrat A Yousuf MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Every Woman Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Schetman, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Suzanne Lewis LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Comprehensive Orthopaedics \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - East Nashville Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lake Oconee Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anne Cummings MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Aguilar, Oscar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joseph Camero MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Oakland Orthopedic Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Children's Heart Specialis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - TCMC dba Radiance OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Koltzova-Rang", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Canandaigua Trinity OB/GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - OrthoTec Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - David M Viviano MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 1488 Family Medicine Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Digestive Disease Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - David M Harris MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jocelyn Lieb MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mulligan \u0026 Bethel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Iowa Pediatric Asthma \u0026 Allergy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED DERMATOLOGY OF MELROSE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Adult \u0026 Pediatric Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Associates in Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BD\u0026L PROVIDER,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOSTON DERMATOLOGY \u0026 LASER CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COASTAL DERMATOLOGY, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dermatology Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dermatology Professionals, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dermatology Professionals, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mystic Valley Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Partners In Pediatrics \u0026 Fam Hlth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Park Ridge Multi-Med, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BetterMed Urgent Care Portal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael P. Vik MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Total Womens Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - NY DIABETES CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bloom Ob Gyn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Michael Tedford, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Artemis for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Waikiki Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Community Medical Care Gro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Homa Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jack W Carey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Coast Psychiatric Services Pa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Webster Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Farragut Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Main Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Boise Summersweet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Boydton Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Clinic At JMH Franklin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Gateway", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Hagadone CDA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Indianapolis Airport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR KTTA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMR Madison County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Origins Family Medical \u0026 Weight Los", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Prospect Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - PESALA MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Children First Pediatrics of VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Hicks Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - SonoSpine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Crofton Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mednow Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Heartland Medicine Physicians of IL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vahe Kazarian MD Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Suncoast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Metro Podiatrists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sound Sleep Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - W King Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Putnam North Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Massard Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sardanopoli, Lisa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Pediatric Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Center For Pediatric and Adolescent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Laub, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North San Antonio Healthcare Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Friedland, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Family First Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 5141 P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Keys Medical Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Anthony J Martino MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Center of Medical Excelle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - SteadyMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Georgia Surgicare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ibihealhcare Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ideal Body Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SurgiCare Arts \u0026 Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgicare Gwinnett", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Center For Advanced Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dr. Gary Burnstein Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Multicare Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wagoner Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Avicenna Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Delta Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lancaster Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Shaw Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Donald W Alexander MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Planning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Minnie Hamilton Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beyond Concierge Medical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blue Concierge Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NAPLES CONCIERGE HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "National Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Critical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Inpatient Partners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prestige Outpatient Providers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Y of the USA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The YMCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tristan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EDWARD CONDON, MEDICAL, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - West Side Health Care District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLEN EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATHENS CLARKE MEDICAL ENTERPRISES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AUGUSTA PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AURORA EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BALLANTYNE EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BELVIDERE EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BENNING HOSPITALIST SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BROAD RIVER PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BULL CITY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brunswick Physician Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRAL EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRAL GEORGIA EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHATTOOGA RIVER PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COLONIAL HEIGHTS PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COLONIAL REHABILITATION GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMMONWEALTH HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COOKEVILLE HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cherokee County Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chippenham Hospital Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chippenham Hospital Pediatrics Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DES MOINES RIVER PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DESERT GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ESSEX PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ETOWAH EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Emergency Group of Columbus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FLORIDIAN EMERGENCY SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FLORIDIAN HOSPITALIST SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOUNTAIN VALLEY GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foley Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Apollo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GASTONIA PHYSICIAN SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA HOSPITALISTS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GI ANESTHESIA SERVICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GULF SHORES EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gem Capital Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgia Radiology Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gordon Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HARNETT EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HERITAGE PHYSICIAN SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOUSTON COUNTY EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOUSTON HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HUMBOLDT PARK HEALTH EMERGENCY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hanover Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Henrico Doctors Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Henrico Doctors Pediatrics Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IREDELL COUNTY GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES RIVER HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "James River Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jefferson Emergency Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "John Randolph Medical Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Johnston Willis Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KERNERSVILLE EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KINSTON PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAGRANGE EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LIBERTY EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOMPOC ANESTHESIA SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOMPOC HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LORAIN EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOW COUNTRY PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lehigh Regional Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARLBOROUGH HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MORGANTON ANESTHESIA PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MURPHY HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MURRAY EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUSC COMMUNITY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUSCOGEE HOSPITALIST SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mobile Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Multispecialty Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murphy Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murray Medical Center Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW ALBANY HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA ANESTHESIA PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA EMERGENCY PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nanticoke River Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Fulton Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oak Mountain Group Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oglethorpe Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PASSAIC HOSPITALIST SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PASSAIC RIVER OBSERVATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PASSAIC RIVER PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PENSACOLA EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PENSACOLA HOSPITALIST PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PUTNAM EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parham Doctors Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pennsylvania Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Piedmont Triad Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Portage Hospital Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Porter Regional Hospital Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Porter Regional Hospitalist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QUEENS COUNTY MEDICAL SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RIVERSIDE EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROANOKE PHYSICIAN SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROCKFORD EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROCKFORD HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROME ANESTHESIA SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Retreat Doctors Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Retreat Doctors Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Robeson Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Robeson Hospitalist Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "S\u0026S IMAGING ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SANDY SPRINGS ANESTHESIA GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SANTA ANA PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SEVEN STATES HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SIOUX CITY HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH CAROLINA GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH FULTON EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHERN VIRGINIA HOSPITALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHERN VIRGINIA PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SPOTSYLVANIA HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STALLINGS EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUN VALLEY EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUNSHINE PHYSICIAN SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Santa Ynez River Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shelby County Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Swift Creek Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TANGLEWOOD PARK PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TARHEEL EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TENNESSEE EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TENNESSEE GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TENNESSEE RIVER PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TULLAHOMA HOSPITALIST GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TULLAHOMA PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Bortolazzo Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Carolinas Emergency Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tricities Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinity Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIRGINIA EMERGENCY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIRGINIA GROUP SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIRGINIA PALLIATIVE PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valparaiso Medical Center Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WESTERN CAROLINA EMERGENCY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WHITE FEATHER PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weiss Lake Hospitalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Creek Emergency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Yadkin Emergency Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heart Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHEAST COLORADO HOSPITAL DISTRICT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Unique Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Family First Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Clifford C Matthews MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ali M Alsaadi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Little River Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chooljian, Steven / Laramie, Mythe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ADVANCED PAIN CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Annamarie Greco, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Redelsperger, Rodney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Ob/Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Womens Health AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Rosario B. Gonzaga, M.D. P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bryan / Woods", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Victory Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mark Baravik NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Green Hills Pediatric Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - James A Gibson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Will-Grundy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Allwood Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - I Am Healthy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Cooperman, Jay S.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Community Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Boones Creek Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Tiffany Lee Md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Ozark OB-Gyn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Sumter United Ministries Free Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Joseph Russino MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Covenant with Christ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Laramie, Jeannine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Woods, Timothy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Cattaraugus County Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Miles A Brumberg DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Skin Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AccessHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Portnoy, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CYPRESS CARDIOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DIABETES TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Select Interventional Pain PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - David Turbay MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Johsens, Karl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sachs, Bruce J.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Dr. William Fattig", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Corvallis Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Corvallis Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Corvallis Clinic Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Gallatin County Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Front Royal Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Anew Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peds and Parents Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Good Samaritan Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atlanta Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bassam M Haddad, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bronx Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Front Range Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hawaii Nephrologists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopkinsville Kidney Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney \u0026 Hypertension Institute of Utah_8972", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney Care of Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney Disease and Hypertension Associates INC_8948", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Nephrologists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mississippi Nephrologists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEPHROLOGY ASSOCIATES OF UTAH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Jersey Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Mexico Kidney Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PKC- Chestnut Ridge_8934", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Permian Nephrology_8923", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pittsburgh Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEPHEN THOMSEN MD PA_8933", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Santa Rosa Kidney Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Florida Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Utah Kidney and Hypertension Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St Louis Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennessee Kidney Care_8909", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Three Rivers Nephrology_8946", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Utah Valley Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Leung, Cheung", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Ellis, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lexington Regional", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Heritage Health.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooklyn College Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Santiam Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Santiam Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stayton Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kids and Teens Portal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Soluna Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Christian Medical Centre, PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Cardiovascular Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LifeChoices Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Big Sky Foot and Ankle Institute, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Pain Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Griffin/Paniagua", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BHS Physicians Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nacogdoches Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Providence Physician Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Resolute Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VB Physicians Network, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Aruna Kola", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Belote", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michigan IPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Magnolia Pain Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Total Care Family Medicine, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Global Pediatrics And Fam Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Moss, Scott", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Fairfax Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Klinik Fonfred", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chang, Wesley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Meinhold, Rolf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHI MEMORIAL HOSPITAL - GEORGIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sidiq N Aldabbagh MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Western Podmed Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Arbor Lane Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - David J Domenichini MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Have a Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sound Medical Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Axia Physician Solutions Master", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Landen Lake Pediatrics Co, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Dr. Ralph Eccles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Gardner, George", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Bekteshi and Kadikar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Martin, J. Frank", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Miller, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Okamura, Neil R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lee, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Missouri Highlands Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Edwin L. Ferren MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Baptist Medical Clinic of Galax", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chanana, Anjali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Fort Wayne-Allen County Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Health Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wiggins Worthy Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Anita Kadikar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Menteer, Francoise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Weigles Hill Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Omkar Dave M.D. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Schneiderman, Scott", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ray, Annmarie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Gregory, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Community Health Outreach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Adult and Child Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rai, Kuljeet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. John's Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wichita Falls Heart Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Push Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Womens Health Of West New York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Edward R. Hutchison", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "John H. Mitchell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Ensor/Posey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Goldstein, Arnold", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Crest Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thomas A Bowhay, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Matsuda, Kent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hayes Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Zanesville Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baltimore Suburban Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lifebridge Gynecology of Pikesville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Baltimore Suburban Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Miya \u0026 Torchinsky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Khurram Abbass MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific ENT Medical Group Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Kim Mitchell-Silver MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Edward T Wolanski MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - EMI OTA, M.D., INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lassen Hospitalist Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Senol, Laurie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Hutfless, George", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pediatric Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Bethesda Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Liu, Nancy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ROBERT W. MORROW, MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Klarisana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Home Physician Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Foot \u0026 Ankle Specialists of Central", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Aelia Pediatric Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Anthem Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anthem Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primo Center for Women and Children", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Carl L Pierce Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Beacon Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Big Horn Basin Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Spectrum Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr Jose Bejarano", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OLGA GOMEZ CHILDRENS CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Midtown Reproductive Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Health Experiences LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Family Medicine Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthy Texan Pediatric \u0026 Family Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Skyline Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Khulusi, Nami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Griffith, Scott", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Armando S Villarreal MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Pratt, Timothy J.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Seiling Municipal Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "David Ghozland, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Cardiology Center LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Maltman Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Brookville Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Renaissance M.D, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vijaya Nama, M.D., PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bright Stars Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KANAN MEDICAL LLC d/b/a: AltamonteM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Physician's Health Services Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - OAA Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bond Community Health Center INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Fabricius - Grabenstein", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kelly Walker DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Care Clinic Of Dare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Osborn, Christopher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Center for Adolescent and Child Neu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - John M Farmer MD PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Hall Of Fame Woman's Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Arafat Hashwani", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Women's Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mt Vernon Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Burgert / Lambert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Amer B Nouh MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Piedmont Colon \u0026 Rectal Surgery Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regen Austin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regen Clinic of West Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trinity Health and Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Braden Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ashe Memorial Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Ashe Memorial Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ithaca Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Advanced Medicine of West Essex", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAXTUN HOSPITAL DISTRICT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Premium Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lincoln Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Franklin Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Center for ENT and Allergy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Beaumont Primary Healthcare, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - UltraHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Island Renal Physicians, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Bigfork Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mount Morris Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Florek / Meyers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Foot \u0026 Ankle Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Drell / Kagan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS-Trinity Hospital of Augusta Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anson Hospital District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anson General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pulmonary Consultants of San Antonio, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Brown Foot Care Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Neighborhood Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sheremeta, Adrian", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Healing Space Family and Integr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PEDIATRIC PHYSICIANS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Advanced Pain Management of Oklahom", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Dwight J Lin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - CHS-Martin General Hospital Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Shirley W Nelson DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center For Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hirota, Sherrie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - The Free Medical Clinic of Newberry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NFCH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comfort Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE CARDIAC \u0026 VASCULAR INTERVENTIONAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Freestone Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Bucy, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "710 Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TLC Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - LISA GLEASON, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Calado, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Shawn M. Sullivan, D.O. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Whole Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Donna L McLean LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DFW Housecall Physicians, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Erwin Deiparine, MD APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dry Prong Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Montgomery Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vivify Wellness Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Beck, Amy.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Robert S Gotlin DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - East Idaho Orthopedics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lansing Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Total Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Powder River Physical Medicine Reha", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Vein Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Uptown Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SONOMA VALLEY HOSPITAL DISTRICT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Gail Cansler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Southern Arizona Neuropsychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marina Ob Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - St. Gianna Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Caceres Specialized Gynecology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Maternal Fetal Medicine and Genetic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - North State Vascular Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Raleigh Preventative Care, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jerry J Tracy III, Physician, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - OUTZ MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Brain Spine and Sleep Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - GHCCM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shawnee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Colon \u0026 Rectal Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Santhakumar Neurology Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Star State Heart and Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Arthritis Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Middlesex Medical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jose A Lujan-Palma MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Trinity Oaks Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - McCulley Allergy, Sinus \u0026 Asthma Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pocatello Women's Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Leslie Michaud MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - All About Kids, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hutchison, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Wichita OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Border Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heart of Texas Neurology and Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Registered Sleep Analysis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Rigsby, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Todd D Cable MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wake Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Urgent \u0026 Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Family Medical Care, Incorporated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Rain, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Laura Wagner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SHELLY L. WILLIAMS, D.O. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CorCareTX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Caruso Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Titan Orthopaedics of Memphis, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Peter S Dixon, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Three Oaks Health S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Asthma/Allergy Center Northern NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Michael J Wahl MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gosselink, Peter/Live Oak Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Health Wise Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Augusta Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Niobrara Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Guadalupe Zamora MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Athena Complete Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elite Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cleveland Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Petty, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - iKare Mood Trauma Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - East Alabama Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Vintage Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Wajahat Mirza MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Parking Way Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Institute for Florida Pain Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brandi Compton-Joseph, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Washington Ear Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Infectious Diseases \u0026 Epidemiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Center for Infectious Diseases LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Minnesota Ortho and ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Advanced Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - P. Douglas Cochran, MD LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "River Region Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physician Practices of River Region", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Heart \u0026 Vascular Center at River Region", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nathan, Hema", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bruce P Dorman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Elite Hands Physician Assistant Ser", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - All Ages Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Access Family Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Four County Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Life Point Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - East Alabama Family Practice, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - ER Specialists Urgency Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Markway, Greg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Get Well Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Springfield Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SEMO Health Network Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Guiteras, G. Patrick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Melbourne Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - The Womens Pavilion PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Breathe Easy Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gwinnett Pulmonary \u0026 Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Saint Cloud Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Charleston Women Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Livingston Foot \u0026 Ankle Institute,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Harrisonville Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dr. Philip Asenso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Grand Blanc Family Footcare, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Tanvir I Qureshi MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Starr Internal Med \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Upadhyaya LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOSTON ORTHOPAEDIC \u0026 SPINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW ENGLAND ORTHOPAEDIC AND SPINE SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRO SPORTS ORTHOPEDICS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Wayne Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Foot and Ankle Associates of Clevel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - RotaCare Bay Area, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Advanced Cardiovascular \u0026 Vein", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Beansprout Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Medical Center Womens Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Kidney \u0026 Hypertension Clinic of Ala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rizzo Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Whole Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Audrey M Henderson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Pedimedica, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - University Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Brito Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kara Wallace MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mutual Medical, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Drew H Wyrick MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - New Directions Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Coastal Podiatry Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Life Health and Wellness HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brownsville Ob/Gyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lisa L Thomsen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Stovall, Raymond", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Joseph G Abdo MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Insights to Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Aloha Nui Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Family Practice Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Highlands Hospital Outpatient", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dang Medical Clinic, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Family Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - AA Spine \u0026 Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Beacon Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Muslim Community \u0026 Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Jay Williamson DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - David M. Gorson, MD, F.A.C.E.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Senta Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Boise Womens Health \u0026 Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Texas Colon and Rectal Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Humble Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Greater Louisville Internal Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Health Reach Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - River Valley Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wichita Heart \u0026 Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vision Maximum", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Planned Parenthood League of Massachusetts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Medical Center West Podiatry Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vidhya Subramanian , MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Arellano MD S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Drs of Santa Clarita", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gwinnett Pediatrics and Adolescent Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Paiute Indian Tribe of Utah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Nicholas Ransom, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Peoples Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Community Health Centers INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Christian Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Johnston, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Therapeutic Associates Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spine Surgery Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spine Surgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hibiscus Women's Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Marylou D Fernando MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Joseph M LaConte DPM Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Oscar Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dermatology and Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rosaasen Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rosaasen Family Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEADY MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pugh, Charles M JR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pediatric Partners of Augusta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Cooper Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hilton Head Regional Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Piedmont Physician Network, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Robert H. Fain Jr., MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRMC Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Universal Heritage Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Theresa M. Peet, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Putnam County Medical Home Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Stephens County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Durant, Smith \u0026 Gini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Holistic Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Weiss, Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marathon Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Weiss, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Summit Gastroenterology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Copiah County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Poverello Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Prime Home Visit \u0026 Telemedicine Ser", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Taylor Medical Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mukesh A Patel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lindsey Mashburn MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sloan Lance A MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - vybe urgent care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "vybe urgent care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Pain Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hurty Med-Info Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Primary Care Partners, SLO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Kinnard, Randy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CORTICA HEALTHCARE INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - A Healthy Choice Clinic P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - St. Martin de Porres Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SPH Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Riverside Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Elevate Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Harbin Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Primary Care Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - United Commonwealth Federation All", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Phillip Kintner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - All About Kids Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Maskil Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Abundant WellnessMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Community Health Center of West Pal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Integrated Health Concepts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pediatric Consultants Of Troy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Desert Peaks Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - All Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clineva Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Walburga S Martin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Wellness Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - My Friends Gynecologist LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Robert L Dubin M.D., PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pamela Hall, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Dunlap, Merritt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Antorian Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - New England Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Harold Mark Cotler D.O. \u0026 Cotler Fa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - CO Clinics for the Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Lynchburg Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Big Country Internal Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Columbia Women's Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRECKINRIDGE HEALTH CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRECKINRIDGE HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRECKINRIDGE HEALTH PODIATRY CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Breckinridge Health Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Breckinridge Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Breckinridge Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cloverport Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McDaniels Family Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Trucare Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Prairie View Family Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Suwanahoochee Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Access Medical Clinic Arkansas LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Good Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Traci Vaughn MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Aaron Campbell, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kateryna Komarovskiy MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Old Towne Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATEN HYPERBARIC MEDICINE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATEN WOUND CARE \u0026 HEALING CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Adair Allergy \u0026 Asthma Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BARIATRIC SURGERY CENTER OF NORTH TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COLON \u0026 RECTAL ASSOCIATES OF NORTH TEXAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPLETE FOOT AND ANKLE CARE OF NORTH TEXAS, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DFW Hospital Medicine Consultants, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Daryl A Stewart MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Matthew Thompson, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "F. Jeffrey Charney, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fisher Cardiology and Electrophysiology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INTERVENTIONAL SPINE AND PAIN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michael M. Taba, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH TEXAS RHEUMATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH TEXAS RHEUMATOLOGY PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PETERSON MEDICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PH DENTON PHYSICIANS INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRESBYTERIAN HOSPITAL OF DALLAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physician Senior Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Gastroenterology of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SURGICAL ASSISTANTS OF DALLAS SUPPLIES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lone Star MSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Health Presbyterian Hospital Kaufman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Shailaja Gunnala MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Great Bend Regional Hospital \u0026 Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Barone Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Compassion Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wilson Hand Surgery PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QVMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Bloomfield Eye Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Canton South Family Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Waikiki Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Slothower Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BCMH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cambridge Health Care Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dr. Aimee and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Joel P Karasek MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sotomayor Medical Practice, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Winston Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rondout Valley Prompt Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hope Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Love In Action of the Tri-Cities", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Craig J Mcmanaman DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Christian Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Comprehensive Sleep Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ophthalmology Consultants, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pain Consultants of the Rockies", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Edgardo Castillo M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Women's Health and Birth Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EMMANUEL MEDICAL CORP.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Allergy \u0026 Pulmonary Specialists, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grand River Family Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Redicare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Schreiber Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Innovative Gynecology \u0026 Obstetrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Encinitas Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prohealth Family Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr Katherine Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Susan Purcell MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DocCare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric C Buxton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Southwest Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Women's Health \u0026 Pelvic Pain LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - AA Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Watkins Foot and Ankle Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Axis Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Axis Spine, a Division of NWSH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Julie Staats, D.O., Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Advanced Medical Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Highlands Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Terri-Ann Samuels, M.D., PLLC DBA P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - David M Steiman, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. David Gomez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Felipe Gomez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr. Middleton (Lifebridge)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - LifeChoices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Cascade Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Cass River Health Plaza", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Meadowbrook Medical Group PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Willamette Pain \u0026 Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SIKIRU A GBADAMOSI MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Peoples Community Clinic of Newberg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Andrew Gottesman, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Houston Co Volunteer Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Arturo Prada MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Superkids Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Hyde Park Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LEAPS ACADEMY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Broken Arrow Orthopedics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Sunshine Pediatric Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - David L Duke III MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Thomas H Raetzsch MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ClinicTime Internal Med PrimaryCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Orchid Oakridge Clinic Pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Utah Physicians Care Centers, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hawaii Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Orthopedic Center of New England", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Tower Orthopedic \u0026 Jt Replacement", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Allmed Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Consolidated Tribal Health Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - One Neuro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Timony, Tracy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Sports Medicine \u0026 Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - LA Hand Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DocDX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JIVANA CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Effingham Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TeleMedVIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alpine Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedSurg Healthcare Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Melrose Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Nissi Diabetes Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Jay Raisen Md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Consultants of So. Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMITA Health ABBHH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marlon Farley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Loreto House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBRIA MEDICAL CLINICS OF SOUTHERN CALIFORNIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Susan J P Hall MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mariam Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mehdi Khorsandi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Western Reserve Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TriCounty Urology, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - NOLA Sole Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Healthy Living Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SACRED ROOTS MIDWIFERY BIRTH CENTER INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SACRED ROOTS MIDWIFERY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Ob/Gyn Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MIDWEST PAIN INSTITUTE CENTER FOR M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Uma Gunnala, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GRANITE COUNTY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - University Foot Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Da Vinci Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carlos Mendoza, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Center for Orthopaedic Excellence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jose Pacheco, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mircea Petrina, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peter Steele, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thomas Haffey, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Impact Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bayou City Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Blackstone Valley Foot Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Byrd Regional Hospital Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Frank P Jircik MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Saad Medical Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mohamedally Health Plaza PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Center For Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tim Martin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jonas Garcia MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Blue Mountain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baker Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baker Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluewater Bay Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluewater – Gateway Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Express Medical Care of North Okaloosa Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gateway Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gateway Medical Clinic – Baker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gateway Medical Clinic – Laural Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hospitalist Services of Okaloosa County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Medical Center Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Medical Center – Transitional Care Unit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Physician Group - Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Physician Group – Convenient Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Physician Group – Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Okaloosa Physician Group – Surgery Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Okaloosa Medical Group; Okaloosa Medical Group – Baker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Okaloosa Obstetrics \u0026 Gynecology of North Okaloosa Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Okaloosa Orthopedic and Sports Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Putnam Pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Palisades Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tomagwa Healthcare Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Therapia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southern Bone \u0026 Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Varnado Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Englewood Community Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Psychology Associates of Bethlehem", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Spine \u0026 Pain: Relieve Pain. Restore Lives.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Comprehensive Spine \u0026 Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ASPA OB/GYN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Beaufort Orthopedic Sports \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Behavioral Health - Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiology - Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthworks Medical Specialties – Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthworks – Peerless", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Infectious Disease – Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Neurology – Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Pain Medicine - Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care - Ocoee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care - Ooltewah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care – Athens", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care – Peerless", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Walk-In Clinic – North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Walk-In Clinic – Ooltewah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Weight Loss Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova – Healthworks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Westside Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Bariatric, AMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Angels Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix Rising Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lagniappe Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Unity Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNITY MEDICAL AND WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Montgomery Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Montgomery Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Jubilee Medical Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Caro Clinic Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - WellCare Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - John D Wenzel DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Live Oak Family Health, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dana J Saltzman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Maker Surgical SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ramon A Gil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Inspired Spine Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Darrell T Natori MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Mississippi County Hospital System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - WholeCare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bhat, Raja", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nirupama Madduri M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - East Columbus Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Fairfield-Hamilton Internal Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rebecca Reilly Nivers DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Omar Aref MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Community Health Clinic of Hardin-L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Texas Bone \u0026 Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Housecalls-MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RediClinic With Call Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RediClinic in RiteAid Stores", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Licht \u0026 Holloway MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Wayne Co. Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Swan Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Arlington Musculoskeletal Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - ENT Clinics Of Oahu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Edmonds Health Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Albany Cardiothoracic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Woodstock Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Complex Care Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Sussex Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Daab, Susan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CERTIFIED FOOT AND ANKLE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Piedmont Rheumatology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Kay Ficht MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Arlington Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Meridian Health \u0026 Wellness, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Southern Interventional Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Diabetes \u0026 Endocrinology PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Raul Marquez, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Las Vegas Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Joyce A Farmer DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Saint George Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Creekmore Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Vancol Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Dr. White Midwest Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rocker, Jeffry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lake Shore Foot \u0026 Ankle, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arlo B Brakel MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Eufaula General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CloseKnit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eden Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Eden Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - First Priority Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Mountain West Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Enhance Orthopedic Surgery, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Puyallup Valley Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ian Thompson Jr. MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Yvette Fensler", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Marina Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laser Vein Centers Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Ethel \u0026 Raphael Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cherry Creek Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ultimate Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Your Natural Dr LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Unity Health and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - COGNUS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Oceanside Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Pic Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The De Morgan Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Manzella Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Center for Weight Loss Success, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pafford Health Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mangrove Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Beach Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CA Inst Cardiovascular Lsr Vn Surge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Englewood OB/GYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Washington Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Illini Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Dermatology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NAU Urology Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Evercare Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Athletic Institute Of Medicine, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jose Baez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lapeer Community Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Express Urgent Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Franklin County Family Health Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Brookside GYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Aloha Kona Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Devine Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Family Eye Care Centers of Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Olivia Lanna MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Radha Tamerisa, MD, PA.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Allan O Cook MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Mattalino Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gwendolyn V Youngblood MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ruth Freeman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Katsigiannis, Antonios", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Forrest City Family Practice Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Young, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Culinary Health Fund", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - AKR Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ali Omar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Flagler County Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Cape Volunteers in Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - New Life Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Yoo Foot and Ankle Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rangely District Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Houston Metro Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Bone and Joint Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Conejo Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Joseph R Robinson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Healing Hands Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - The Whole Child Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Yalobusha General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Yalobusha General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TAMPA FAMILY HEALTH CENTERS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Melissa Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Sierra Vista Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Teton Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Catherine F. Vanderloos, MD AMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neuro Pain Consultants PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Stepping Stones Community Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Your ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jane Yoo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Columbiaville Family Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOBILE COUNTY HEALTH DEPARTMENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Surgical Oncology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Total Life Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Perloff, Irene", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllCare Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carteret Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carteret Health Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Big Horn Memorial", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Iroquois Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Columbiaville Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Iowa Family Practice Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwest WomanCare OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hazel Green Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Duluth Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Riverwoods Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bryan Weckel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - New Era Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - \t FERNANDO RAMIREZ MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Community Health Clinic of Butler C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - The Image of Eve Restored, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - JOHN A. MURPHY, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - INFANTS \u0026 CHILDRENS P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Bethel Free Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Eastside Healthcare of Chicago Heig", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Bay Center for Digestive Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Oconee Valley Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Circle Family HealthCare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Circle Family HealthCare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gaffar Syed MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Mercer Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Heart and Vascular Institute of Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amory Regional Physicians LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Batesville Physician MGT Pysch LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Batesville Regional Med Center - RHCs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Batesville Regional Physicians LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clarksdale Regional Physicians LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Project Tiger", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Williamson Market", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PINNACLE HEALTH REGIONAL PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UPMC Pinnacle Regional Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEIGHBORHOOD MEDICAL CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Your Choice Health Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vasquez, Jaime", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Women's Care of Pittsburgh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbia River Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Orthopaedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Azalea Orthopedic and Sports Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fondren Orthopedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Orthopedics, Sports and Rehabilitation Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WB Carrell Memorial Clinic Associated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - LA PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PACN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Faith Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Joy Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Friedrich Boettner, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Grant Park Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marina Village Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Joyce T Muni MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ultracare Medical Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gastroenterology Consultants of Augusta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - TCA Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TCA Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wahiawa Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Palm Beach Vascular and Wound Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Peter's Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroad Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Progressive Cardiovascular Care, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Synergy Elite Medical, Fl-athenaone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mainstreet Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Coshocton Cty Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mohinder P. Gupta, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Better Health Family Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Claude Luvis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - NPHOUSECALL, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kenya Williams", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain View Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Tampa Bay Cardiovascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Allen Health Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upward Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Sports Enhancement Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Barrington Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Nelson, Alan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Synergy Elite Medical, AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Griffith / Mills", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chestertown Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CAO - Ctr for Advanced Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Coeur D'Alene Plastic Surgery, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KRL FOOT \u0026 ANKLE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Holy Family Convent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Piedmont Family \u0026 Occupational Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - David L Martin MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Carolina Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - SMG - Central", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHC YOUNGSTOWN OHIO OUTPATIENT SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEWARD MEDICAL GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEWARD SHARON REGIONAL HEALTH SYSTEM, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rontal Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Joseph Mercy Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Wayland Personal Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - EAC medical services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Gladstone Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Capitol Area Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Reflections Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Christina A. Lord, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - John T Haretos MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Midwest Hemorrhoid Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Benjamin A Nachamie MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Helping Hands Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Monarch Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tooele Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Axel Martinez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Danville Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Stuart M Goldman DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Gavin Friedman MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mark Jawahir MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Mountain Hope Good Shepherd Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Nikolaos I Sarrimanolis MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hidden Valley Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Covenant House Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Loop Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dahl Memorial Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Mason Gasper MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - HOMSI PEDIATRIC NEUROLOGY, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - IntegraCare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stephanie Stephens, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Payson Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Integrative Pain Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Hospital of Bowie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - GIO, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Primary Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Kidney Physicians, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - BoxBar Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Interventional Specialist Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regenerative Institute of Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AMERICAN MUSLIM COMMUNITY CLINICS (", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - CHS Master Table", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Caridad Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Orakwao D. Dowuona, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - JMJ Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Comprehensive Foot \u0026 Ankle, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Aletheia House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Mark A Boettler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Macula and Retina Specialists of Ho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Henderson County EMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Henderson County Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Henderson Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Foner Med, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Echarte", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael E. Menchaca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Tree of Life Naturopathic \u0026 Midwife", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Keith B Banton MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Thomas Ziering", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Bearden Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Kentucky River Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NEUROLOGY \u0026 NEURODIAGNOSTICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Darin L Weyhrich MD, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT Institute - Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT Institute - Mississippi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ENT Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Surgeons of Excellence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Aesthetic \u0026 Family Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Gulf Coast Occupational, Sports and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney Disease Medical Group Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MCKENZIE CLINIC CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regional Health Management Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Health Care Authority of the City of Anniston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Surry Medical Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Sanjay Ramchandani", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Westlake Orthopedic Spine and Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mclean Cardiology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Northern Nevada Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Space City Pain Specialist, L.L.P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Robert W. Nesbitt, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Associates In Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elica Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Five Rivers Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Pulmonary \u0026 Sleep Consultants KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kelly Lambeth CRNP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PFCC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Nourish Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Lifespark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anderson Mill Physician Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brock Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Breast Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Neurology and Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park OB/Gyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Physician Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Minimally Invasive and Reconstructive Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ear Nose \u0026 Throat Associates of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Texas Pulmonary and Sleep Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family First Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hill County Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hill County Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hill Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Star Children’s Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Star Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Diagnostic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Zapata Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Preferred Primary Care New Milford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Salmon Creek Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Thomas Hirai", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Breaux Internal Medicine/Ped Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Paul J Janson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Primary Care and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Toes on the Go", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Neil J Mallis MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Eastlake Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - MARKERT FAMILY PRACTICE PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Newman/White", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Milena Newhook, D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Cobble, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fayette Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Laurel Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Plateau Cardio-Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Plateau Clinic; Greenbrier River E.N.T.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Plateau Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Plateau Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Care of Southern WV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Alpha Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ortho San Antonio, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Physical Medicine Associates of NW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Excel Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Magnolia First Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Jodi Van Jura", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Theodore S Marty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kumarasamy Sivakumar MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - First Care Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHS - Sunbury Clinic Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - QHC Sunbury Clinic Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Kenneth E Green MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rain City Integrative Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gallia County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Martina P Callum MD. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Downtown Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Headache \u0026 Facial Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Huff Orthopaedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Nelson Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Stern, Edra", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Rocks, Diana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Edward Lis DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Shepherds Care Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shepperd Medical Clinic- (Sole Prop", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Compassionate Healthcare for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS MOVEMENT DISORDER SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Urology Associates Of Elkhart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arlington Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Resurgens Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arizona Digestive Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arizona GI Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bullhead City ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bullhead City Gastroenterology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado River Gastroeneterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado River Women’s Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Continental Divide Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ear \u0026 Sinus Center of the Southwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Empire Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fort Mohave Walk-In Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laughlin Walk-In Care (NV)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mohave Desert Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mohave Ear, Nose \u0026Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mohave Surgical Associates of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mohave Valley Specialty Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mohave Walk-In Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain View Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Riverview Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Silver Creek Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wester Arizona Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizon Gastroenterology Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Interventional Cardiology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Lung Speicalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Neuro-Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Orthopaedic and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Pulmonary Critical Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Arizona Vascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Your Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Center for Addiction Treatment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Surgical Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Class OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WESTON MED SPA AND COSMETIC SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Bariatric and Foregut Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Bone \u0026 Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Breast Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Heart and Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Infectious Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Pediatrics at Continental Reserve", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Pediatrics at Northwest Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Allied Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary \u0026 Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QuickMed Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QuickMed at Swan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QuickMed at Valencia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kariah Healthcare Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Geoffrey E. Baum, DO, Orthopedic Su", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Bluegrass Eye and Laser", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Mobile Wound Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alliance Spine and Pain Management,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Luis F. Arango M.D. PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Dr Knights Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hoffman, Scott", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Longwood Cardiology, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Hodgeman County Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - NewStep, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cardiology Of Central Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Cross And Crown Mission Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Summit Medical Group Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Health Action", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hudson Eye Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Las Americas Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - LEONI 2MED, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FryeCare Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LPNT Frye Regional", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Deland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Edgewater", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Ormond Beach East", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Ormond Beach West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ormond Medical Arts Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Care Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Greenway Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Pediatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DuPage Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Jennifer Iacovelli, MD - Sta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Quality Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Klebanoff O'Melveny \u0026 Drinkard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Water Tower OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Debra Beth Solomon, OD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laurie Kurens MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ayse K Mohyuddin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Dade Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Allergy/Asthma Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Johnson County Hospital Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - James E Race MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Healthy Beginnings Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Beaufort Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Painalgia Relief Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Urgent Care Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - David B Andreas MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michigan Women's Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Christian Medical Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LCD Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Metro Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Willis Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Avow Care Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Anytime Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS - Evanston Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EVANSTON HOSPITAL CORPORATION BVMG-Bridger Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Darren Chapman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Women4Women OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Top Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Amity Group Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Sunflower Pulmonary and Sleep Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Our Lady of Guadalupe Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS-Red Bud Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - QHC Red Bud Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RED BUD REGIONAL CLINIC COMPANY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Red Bud RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Bruce P Miller MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Unionville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Woodward Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Thunderbird Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Advanced Medical Express Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neo2Teen Pediatric Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Northwest Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Pain and Rehab Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Kozmary Center For Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Strasburger Orthopaedics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Hoffman's APRN-CNP Medical Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Rubin Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Total Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Omar Benitez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS-Lock Haven Clinic Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lock Haven RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Chesterfield Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Danville Surgical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Port Warwick Pediatrics Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Vascular Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - James E. Long, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NOVA Pulmonary Critical Care \u0026 Slee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Terence B Mitchell MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - American Foot \u0026 Ankle Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heartland Rural Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Veda Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prime Heart and Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vitality Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kidney Care Services of Humboldt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - American Interventional Pain Instit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Peter Lontai MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Ramon Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bassett Medical Center - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Family Medicine of the Rockies", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Brietstein \u0026 Strauss DPMs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Comprehensive Pain of the Palm Beac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Monarque Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Bruce A. Darrow, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Surgical Associates Of SE IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phillips Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Pregnancy Support Center of Stark C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cross County Cardiology-Mount Sinai Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gastrointestinal Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Georgia Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Suzanne M Pica MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Nana Dwomo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - ICNA Relief USA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shawn Tassone, MD PhD, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Cardio-Thoracic Surgery PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Infectious Disease Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Infectious Disease Associates Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BAY AREA HEART CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - NP Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - NuWest Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Springtide Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QHC - San Miguel Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Brighton Sleep Diagnostics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amarillo Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hong Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - New Leaf Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Colon \u0026 Rectal Disease Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Susan N Grammatico", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - League City Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wildflower Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASPIRE HEALTH CONCEPTS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Swiftcare Oregon, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Flagstaff Bone and Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tania A White Jackson Md Pa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Premier Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - North Florida Eye Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Salmon River Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Needham Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maine Migrant Health Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Harriett Searcy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Cunningham, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Waterfalls Medical Practice, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - PMA Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Miller Family Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Future Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Robert Mmereole, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthy Tots of Brownsville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cincinnati Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Deming Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mimbres Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Laura Gray Schoenberg DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Ascending to Health Respite Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Advanced Dental Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Community Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Abby Laing ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pioneers Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Weed, Andrea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tet Toe, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - St. Mary's Dining Room", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Healthnet of Rock County Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Highland Medical Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Helping Hands Healthcare LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Osceola Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Caring Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Glendale Neurological Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Itasca Foot \u0026 Ankle LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Centro Medico Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Square Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Apollo Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CATG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tanana Chiefs Conference", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foley Clinic Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Read Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Country Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Carelife Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Fleischner, Nathaniel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiology \u0026 Internal Medicine Grou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Anderson Foot and Ankle Institute I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - North Central Ohio Ear, Nose \u0026 Thro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pennsylvania Muscle Bone/Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mission House Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - The Kansas City Free Eye Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sun Neuro PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - V Aravind Reddy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tots To Teens Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FERNANDO LUNA FNP-BC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ramsbottom, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Beaver Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Leedey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Mooreland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Oklahoma Avenue", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Woodward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine and Obstetrics on 19th", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine and Obstetrics on Main", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Specialists – Woodward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Woodward Clinic Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Woodward Clinic Family Medicine and Obstetrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Woodward Clinic Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Woodward Woodward Clinic Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - EndoHealth LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heart Endovascular and Rhythm of Te", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Virginia Thurston Healing Garden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Wayne Physiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ruth Haskins MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Hope Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - R.G. Vargo D.O.,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Advanced Practice Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Chaconas, George", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Doug's House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gloucester Mathews Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Physicians For Women's Healthcare,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Hummel, Matthew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SMMC Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Partners in Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Coastal Internal Medicine \u0026 Geriatr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - South Atlanta Plmn/Critical Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RGV Clinic For You PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Kuddythamby Sinnathamby", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Embrace Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Graham Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Graham Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin COVID Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT Austin COVID Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT Austin School of Nursing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT Health Austin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UTHA Employee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WorkLife Occ Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Breast Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rajesh Dhairyawan, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Stephen J Galizio MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Eric D Trattner DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Robert J Uhren MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stabler Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - KENTUCKY FERTILITY AND GYNECOLOGY,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Family Medicine and Urgent Care of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pensacola Cardiology, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Feldan/Goldstein/Shears-Bethke", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Macon County General", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Blue Water Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Phoenixville Clinic Co, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenixville Clinic Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Blessings Woman's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Coast Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Gate City Primary Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FORT WORTH INFECTIOUS DISEASE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Innovative Foot \u0026 Ankle Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Forrest City Clinic Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sonoran Pediatric Endocrinology and Diabetes Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Foundation for Positively Kids", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Heath Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beartooth Orthopedic and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Park Hospital District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Doctor Gregory Thompson, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Surgeon's Choice Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Elite Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Children's Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Healthy Minors, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ERIC D. GRUEN, D.P.M., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Balance and Vestibular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Arja MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinica MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kindrell S. Tucker, M.D., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - CityHEALTH Medical P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Back To Basics Family Physical Ther", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hudson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hudson Mind", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hudson Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physio Logic Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Community Clinic of Shelbyville and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Utah Navajo Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastern New Mexico Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roswell Clinic Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Digital Vision Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Digital Vision Optical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Viglione, Deborah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - North Springs OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - White Cranes Medical Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Milagros Medical, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GoodHands Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Borissova, Irina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Blackwell Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Carlton, Stacey B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - BOSTON EYE CARE CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite Women's Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Schnuck Markets Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Senior Healthcare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS OAKS ORTHOPAEDIC AND SPORTS M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Able Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Healthquest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Apexcare-SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Deckerville Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - RejuVeination, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Spine \u0026 Pain Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Out Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lisa M Judge MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Raphael Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Straight to you Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mosaic Family Care Medical Group,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hyperbaric Excellence Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Omar Gonzalez, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Day / Ferrara", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Reno Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Eye Physicians Surgeons of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELENA BEHAVIORAL HEALTH SERVICES, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MED-SURG PHYSICIAN GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Jenkins Family Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Jordan Valley Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Fishman, Lisa C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kurle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weiner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PREMIERE SPINE AND SPORTS MEDICINE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Anthony J Williamitis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Zugec Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Midwest Therapeutic Endoscopy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Your Family Practice Team PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Jonathan Daniels MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - GREENFIELD FAMILY MEDICINE CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A WOMAN VIEW HEALTH CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Orfanos, Jackie P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Enliven Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - A Bella Baby OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Panorama Urgent Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOHO NAKO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Van Nuys Urgent Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CLARA JACKSON SCHERMERHORN, MD, PHD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Center for Advanced Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Endocrine Center of Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Aspire MedHealth Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Graham County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Daniel L Jensen DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Express Care Walk-In Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Crossover Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mizus, Irving", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Jessica Van Rye APRN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - YU-JIE \"JACK\" KUO, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hope Clinic of McKinney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Richardton Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinity Health Mid-Atlantic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Joe's Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Life Choices Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Corpus Christi Metro Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Mosaic Health \u0026 Healing Arts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Her Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capital Area Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Capital Area Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lake Dora Internal Medicine \u0026 Geria", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Malgeri, Megan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Southern Baptist Seminary Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Longevity Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Wyoming Neurologic Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Providence Medical Clinic of Kingsp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "John Mendelson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ria Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kudo Care Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Life Tree PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Mendez EyeWear and EyeCare Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Bountiful Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Diseases of Ear Nose and Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Rani G Whitfield MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Arthur DeLuca, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Access Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - HER Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Deadrick/Mansfield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Accessadoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Allies For Health + Wellbeing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jay Carpenter MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - QuickCare APRN-CNP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Colfax Medical and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Daniel Urrutia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Your Medical Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Blount, Calvin L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Andrew Ciarlone DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bernick, James J", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JACKSON LIVER AND GI SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Deanna Inlow", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Neighborhood Medical Walk-in Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jones / Umstattd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - H.E.L.P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMERICARES FREE CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Levin, Bonnie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Medical Arts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Total Access Medical Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Whitmer, Daniel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Memphis Choices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Asian American Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "USA Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - A Kidz Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fair Oaks Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Millennium Medical Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Primary Care of Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Montgomery Gynecology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Wheatheart Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Westside Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - McKenzie, Allan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Live Oak Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GENISIS SERVICES, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - P Dean Kyer III MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Irmindra S Rana MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Douglas Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Starke Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PREETI RANA, M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CENTER FOR HEALTH EMPOWERMENT, DBA:", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Center of Oculofacial Aesth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GI Specialists Of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Premier Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gary M Greger, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FREDERICK UROLOGY ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HASEEB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOHAMMED M MOHIUDDIN MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jensen Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Highline Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Greater CNY Neurology Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Bou Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Highlands Ranch Family Medicine, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHCSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Barbara Atwood Md LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Genoa Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dr. Mazen Harake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Clinica Medica Buford LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newhide Medical Group Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blue Mountain Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Northside Pulmonary, Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Smaldore, Kellie and Stephen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Emerging Care of Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Maureen McGeehan, M.D., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Integrative Medical Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Great Western Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Marco Diaz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Western Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Prairie Rock Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Poquoson Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Well-Being Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - McRae Dental P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WPCC-Obria Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nephrology \u0026 Hypertension Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - HOLTZMAN MEDICAL GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - McKenna, Ruggeroli and Helmi Pain S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Athena Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Holland Home Palliative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ribaut Medical Partners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Juniper Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jefferson County Health \u0026 Welfare U", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aurora Family Health OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Southwest Gynecology Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Midwest Health Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vero ENT Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Clairvil Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - KLA Diabetes Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Foot Doctor, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Corporate Lakes Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Allison Greenberg ND, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Boiling Spring Lakes Family Medicin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Brett Swenson MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Hammonds Harmony Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Integrity Extended Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hawaii Brain and Spine Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Family First Healthcare Clinic, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Grace Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - ENT Physicians Of Kearney PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Spine \u0026 Sports Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - DK Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shine Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Christie Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Better Way Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lebanon Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Peninsula Surgical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ramapo Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - TRISTATE WELLNESS \u0026 MEDICAL CARE, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Carol C. Jagdeo, MD.,L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Allergy and Immunology of Dallas, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WomanKind OB/GYN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Big Horn Basin Family Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - J Moran \u0026 Assoc Foot/Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - RAMAN TULI, MD P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Peter M Loisides MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Cameron O'Connell, ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Juneau OBGYN - Dr. Newbury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Centers for Pain Control", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Interventional Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stream Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Chidi Family Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Camas Swale Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Care Clinics Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - High Country Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Southern Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Jordan Creek Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Turan Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Robert H Price MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Christopher G. Vialpando MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - John G Highfill MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Complete Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Institute of Digestive Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joginder S Soni MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Christine Pfisterer, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Seaton Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Opus Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optim Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optim Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kathryn D Kelly MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brandywine Urology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOGA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Wayne County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mineral Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Specialists of Metropolitan Washington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holton Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capstone Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The RISE Project of the Carolinas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nkechi Onwumere, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regional Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sleep Medicine Spclsts S FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SYNAPTOVEDA, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BMH Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beaufort Memorial Physician Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ESSENTIAL HEALTH AND WELLNESS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bristol, Paul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Schlein / Shinder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Beacon Occupational Health \u0026 Safety", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Quintin Law, MD DBA Executive Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Princeton Perinatal Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New River Health Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Inyo Healthcare District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - YMS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Needell, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Union County Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - All Hours Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDLANDS PULMONARY AND CRITICAL CARE SPECIALISTS, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upstate Lung and Critical Care Specialists, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Halifax Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HALIFAX HEALTH CARE SYSTEMS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Chesapeake Pain \u0026 Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Black Canyon Community Health Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Sandia Foot And Ankle L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Wholehearted Healthcare, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anabi Medical Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - National Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Vitality Wellness Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Quarles, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - CSS Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Pinnacle Personalized Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Uramoto, Kristine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Clarendon Health \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Altman and Gerety Family Medical As", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Children's Medical Central", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - David Schnaiderman MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Eye Physicians-BIDCO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jaime Alvarez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PrimeCare Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - H Bianca Japal MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brian P. Mcdermott DO P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pete O'Donald, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Doctors Volunteer Clinic of St. Geo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatricenter of Greater Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Michael Polcino, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lorenz Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Impact Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Sentinel Plastic Surgery LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Connecticut Primary Care and Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Urban Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Haig Physical Medicine PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SOUTHWEST GASTROENTEROLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Liberty Pain Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Associates Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Fraley Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Discovery Medical Network Telehealt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Pain Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Desert Sage Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Monica Hannon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Ziyad Hannon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - UPMC - Sunbury Clinic Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UPMC - Lock Haven Clinic Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UPMC - Lock Haven RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MONIMILS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Francisco City Impact Health \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Black Canyon Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS LONE STAR FAMILY MEDICINE, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - David Witham MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ARIZONA HEART 360 P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Free Clinic Of Culpeper", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kempert/Snyder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LALK Medica PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Mindful Wellness Maui", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Clifford, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - DESERT HEART CENTER, LTD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Internal Medicine Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ALLAM MEDICAL GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Atlanta Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Childrens Health Center -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Barrington Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spira Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ARRAY MEDICAL CENTER, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - HUDA Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ANTON DUBRICK M.D. S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - P. F. IOFFREDA, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pulmonary Medicine Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jan H. Petri, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Thomas, Kurt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Haider Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Antonio Castaneda MD, FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Sebree Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Darroch Brain \u0026 Spine Institute of Doctors Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Garden City Pediatric Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ENDOCRINOLOGY ASSOCIATES P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Remote Allergy Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kent E Tompkins MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Vu Nguyen, MD- Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Heart Care Center of the Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Merkel Educational Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - CLIFFORD D GLUCK MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Health Choices, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Israel A Hartman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - CLB Pharmaceutical Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mauricio A Figueroa MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tullahoma Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Northern Kentucky Center for Pain R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Employee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Charis Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHWEST NEPHROLOGY CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Kidney Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pulaski Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Northwest Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COASTAL VASCULAR CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PediatriCare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rheumatology Services of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Christy Walker MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Nevada Muscle \u0026 Nerve", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MDSM Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Adedeji", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cabrillo Center for Rheumatic Disea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Southern Idaho Pain Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ridgeline Physician Services, PLC D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - James H Duncan Do Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Honor Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jesus Antonio Caquias MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MHM Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Onduo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Kathleen Kirchmeier-Kroessler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Dr. Maher Ayoubi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Metabolic Center Lousiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Dixon, Ritu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Consultants of Kidney Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ezell Askew MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Patrick K. Leung MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Daniel E. Gutierrez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wholesome Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CHEVERLY PRIMARY CARE INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Foothills Women's Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alaska Center for Venous and Lymphatic Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Tokunbo T Dada MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP - Dr. Wendy Walker \u0026 Dr. Thomas Loomis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coalfield Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - GI Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Shellie Norman, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Beverly Hills Advanced Pain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Longhorn Eye Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Jersey Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Blue Ridge OB/GYN Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wellspring Family Practice, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Renaissance Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Floyd Russak MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pain Instacare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA County Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Maximillian Malotky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Good Samaritan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Saint-Fleur Internal Medicine \u0026 Ass", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Berea Clinic Of Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Desoto Family Care Clinic, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - HelpCare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Manuel J Sanchez Md Pa D/B/A Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - KNJ Properties LLC, dba Berlin Inte", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooklyn Surgical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Vijay Mangannan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Deon D Middlebrook MD, PC DBA Sherw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Minor Pediatrics, Kristie Minor, AP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Weekends Plus Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Synergy Sleep Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saline Clinics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Vikas Merchia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Heart and Soul Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Rebecca Jaffe MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Adv. Cent. for Pod. \u0026 Wound Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Practice Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - OPCS | Dr. Michael Neimkin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Bloom, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Advanced Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Hudson Pediatric Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLHG-Avoyelles LLC Dba Avoyelles Hospital Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - KnowNOW Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rheumatology and Autoimmune Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MedPac Memphis, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastern Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Methodist Physician Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St Francis Arkansas Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St Francis Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Grace Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COLORECTAL ASSOCIATES OF TEXAS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - TLC Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Light Of The World Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Fiat Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "One Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pain Relief Centers PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Heis, MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vadyala, Vikram", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - ELENA ANISIMOVA, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Allpria Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dennis Sager", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareSouth Medical and Dental", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRAL ARKANSAS CARDIOVASCULAR INSTITUTE, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HealthStar Physicians of Hot Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "John R Pace", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southland Neurologic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sumit Bhutani MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Homestead Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Abounding Prosperity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sun City Women's Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Vicksburg Womens Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Complete Emergency Care El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Alafia OB/GYN, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - L Rowley PCM PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Central Texas Spine Institute, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - El Paso Visiting Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - One Telemed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cleveland Emergency Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cleveland Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cleveland Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cleveland Emergency Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Brock Hughes Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Vincent B Longobardo DPM PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Idaho Falls Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pedro N Romaguera MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HEBREW HOME OF GREATER WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Brent R. Wendel DPM Inc PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sound Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prairie Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sonoma Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Urology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thrive Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Birmingham Infectious Diseases PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest OB-Gyn \u0026 Infertility Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MONROE RHEUMATOLOGY AND ENDOCRINOLO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Advanced Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Care Clinic of Franklin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - The Eden Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Physicians Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Chen, Alicia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fauquier Health Physician Practices, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - LPNT Fauquier", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Advanced OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DWH Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LRGV Community Health Management Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - COASTAL EYE CARE, A MEDICAL CORPORA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Chips Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pediatric Cardiology of San Diego", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CL Brumback PCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Trey Medical Enterprises Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heart Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Local Care Midwifery, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Assured Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Georgia Womens Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - ANDROMEDA TRANSCULTURAL HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sports Medicine at Chelsea, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CEC Holding Lakeway", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surepoint Azle Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surepoint Stephenville Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Surepoint Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Heather Shenkman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Angelo Cappiello M.D. (startup)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DSP Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DAN V SANDRU MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hospitals of Providence Children's Specialty Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hospitals of Providence Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Holden Beach Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - LE \u0026 CHANG FAMILY URGENT CARE P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Southern Nevada Bariatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pomerado Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Garrett M Eckerling, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - EMPOWERED PREGNANCY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sandra L Mccormack MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. J General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Z General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Family Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Kenneth Winnard MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lake Murray OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE FOOT CARE ASSOCIATES PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Ronald Small", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - E.C.O Health Care Center Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Challie Minton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Oculofacial Plastic Surgery Consult", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gupta \u0026 Gupta Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Muneer E Assi DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pompano Beach Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Carl N Williams Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mckinney Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Farah Naz MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Zenith Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sunnyside Collaborative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Adult Medicine \u0026 Preventative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pinnacle Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gershon Pain Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates of Wausau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RiseSurgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stevens Point Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Partners in Obstetrics and Gynecolo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Daniel Foot \u0026 Ankle, P.A. - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Arvan, Andrea A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CA \u0026 I Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Dr. Lokesh Tantuwaya", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - To Each Her Own", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hanover Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cumberland Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Performance Ortho \u0026 Sports Med, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Reeves Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Oquirrh Radiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIDS Urgent Care and Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Saunders, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - REGENMD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Seaside Family Healthcare LLC, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hood River Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advent Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orlando Diagnostic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wickenburg Community Hospital and Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Kamlet, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Diabetes and Endocrine Care of Virg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - De Dan, Claudine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Stateline Heart and Vascular Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Iron County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - A Gentle Beginning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RENAL HYPERTENSION CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Joseph Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Chesapeake Anesthesiology \u0026 Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Brandon M. Lingenfelter, DO, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Mays Medical Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NAPLES ORTHOPEDICS INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Youth Crisis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Urogynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amberwell Hiawatha", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Wasatch Cardiovascular Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hiawassee Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EAST TENNESSEE RECOVERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heritage Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Levy, Brian", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HRC Behavioral Health \u0026 Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Hilton Head Internists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Zand Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PASKAL, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Central KY Urgent Care Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Coastal Georgia Wellness Center and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Foot \u0026 Ankle Institute of America,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Muse Primary Care and Obstetrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Community Transition Nurse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Stephens Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Interventional Spine and Pain LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Graham Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Midvale Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Vascular Specialists 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - John R Larson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pain Consultants Of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NORTHERN CALIFORNIA SURGICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Interfaith Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ABC Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AZ Choice Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - East Alabama Arthritis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WePellet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elevate Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spine Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Tonica Johnson MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Day Kimball Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DKMG-DIABETES EDUCATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DKMG-INFECTIOUS DISEASE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Day Kimball Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Women \u0026 Teen's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Shane Son MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Judith Son MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - TRANSITIONAL LIFE CARE CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Volusia Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Terilyn C Perry MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Sports Neurology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MADISON MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jay Iinuma MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Pain Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dunlop, Eric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Family Health Clinic Grenada", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Desoto Adult Medicine Associates Pl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Live Well Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Amazing Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hawaii Dermatology \u0026 Surgery, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Margaret Siman P L C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jonathan Lorenzana DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - The Family Doctor's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BC Health \u0026 Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Aly Naguib MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Michael K Dapaah MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lakeshore OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Restore Wellness and Pain Managemen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Lincoln", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CenterPlace Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Donald Plummer LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Spokane Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - StarMed Urgent \u0026 Family Care, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Block Island Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Primary Care Assocs New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Anesthesia \u0026 Pain Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Luciano, Anthony", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Margaret A Lorimor APRN CNP FNPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Barley \u0026 Scharruhn MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Guardian Angels Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite NP Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area Transition Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Practice PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kairos Health Center of Frisco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kairos Multispecialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakewood Med Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunnyvale Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinetic Wound Care Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Webster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Rouse Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Jennersville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Main Street Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bendito Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Woodstock Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Steven C Dickhaut MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Meir Malmazada, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Phoenix Foot Surgeon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Interventional Cardiology Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dual Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - TANNER MEDICAL CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Headland Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Barfield Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - FALKVILLE MEDICAL CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - The Foot And Ankle Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Stephen Lee Barbee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Sherer Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Eye Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - The Sheen Vein Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FamilyChoice Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Little Angels Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - My Doctor, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Family Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Falls Centre/Functional Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WATERTOWN PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WUSD HEALTH AND WELLNESS CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lopez Sepulveda Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Javier Moreno, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bel Air Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fauquier Free Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Valley Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Swain County Caring Corner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - First Choice Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Midlothian Free Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Innovative Sleep Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Manhan Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Donald C. Freitag MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mark L Bernstein MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pediatrics Associates of Paoli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Olash / Olash", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Berwick Clinic Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Litchfield Hills Ortho Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Farr Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Family Physicians LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Retro Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Milestones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Neurology Diagnostics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Free Medical Clinic of Oak Ridge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brian O'Carroll, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Five Cities Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Rural Health Care Innovations, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Foot And Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Family Health Care of Ellensburg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Thourya Haoues-Brown MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Francisco Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Farmer Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Williams Health Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Blizzard, Daniel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cove Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - New Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Daniel Brelian, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Boca General \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Theresa Enriquez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - North Shore Women's Health SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Plaza Medical Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Unity Family Health Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - PA Institute Of Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Goodland Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pregnancy Alternatives Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Adult and Children Allergy Asthma C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kalamazoo Foot Surgery, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Serge PierreCharles MD-athenaOne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Galisteo Advanced Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pain Therapy Associates Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Casa El Buen Samaritano", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - BEE HAPPY PEDIATRICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Wasilla Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - John Manubay MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - PEDIATRIC CLINIC OF N LITTLE ROCK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Candelaria Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BloomMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Horizon Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - We Care Family Wellness Center (DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Elite Sports Medicine and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ava Mina Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Truesdale Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cherokee Family Med Center- Start u", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Lowell Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolina Interventional Pain Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palmetto Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Choices Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hilton Head Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Horizons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Bee Well Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Bell Buckle Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Star Family Planning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMMON GROUND HEALTH CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Phillips Medical Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Cochise County Dialysis and Kidney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family Care Of Winston Salem", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - William K Averill MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Care Clinic of Highlands-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Healthy Shapes LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Total Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ORTHOPAEDIC CENTER OF NEW JERSEY, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - IFN Islamic Foundation North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - NYAME NTI NATURAL HEALTH SOLUTIONS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Optimal Performance Medicine, LLC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Carol N Abalihi MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - The Healing Sanctuary LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wellness Made Easy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Viplove Senadhi DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Family Medicine Partnership Pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Silverado Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Priscilla J Metcalf MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Montrose Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Richard W Byrd MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - People's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Miriam B Adam Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Viewpoint Endocrinology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Kernan Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Central Nebraska Neurology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jennifer L Johnson-Caldwell MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Gan-Lim, Leonardo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Crossroads Medical Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - FAMILY HEALTH ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AFFORDABLE PRIMARY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Lyle T Modlin D P M P A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Family Medicine of Baxley Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hopkins Cardiovascular Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoSC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Central Kentucky Surgical Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hernesman, Shane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Moab Free Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Elgin Eye Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Harney County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - STONE MOUNTAIN SKIN HEALTH CENTER,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Black Oak Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Plains Synergy Healthcare Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Sports Med Associates of Augusta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bradford Management Company, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Upstream Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brighton Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Prime Medical Healthcare PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Park Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EMCS Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Van Dyke Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Violetta Lyra MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - A Las Vegas Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - James S Ruppert MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Chesapeake Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Yalobusha Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ProTouch House Calls, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brazos County Health District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael Neret, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - SFE Advanced Medical Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pulmonary \u0026 Sleep Center of the Val", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - HESED MEDICAL ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Elite Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Preferred Primary Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Westside Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - InHouse Physicians - Sloan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Foley Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Federal Way Naturopathy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Grace Clinic of Yadkin Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Josephine V Jasper MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Robert L Thomas MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Donald DeHaven MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Saratoga Medical Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Liberty Mountain Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedHelp, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Los Alamitos Orthopedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Family ENT Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bayon Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clarity Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mary Angela Madden LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Volunteer Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Minnesota Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Informed Choices Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Blacklock, Curt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Elias Bahta - Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - William F Hays LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Lucas Jacomides", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orlando Center Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Adrian Tripp MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Southern California Spine and Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Laurel Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brown Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MIDLAND GASTROENTEROLOGY/HEPATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Luckino and Dr. Raabe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Muddy Creek Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Tri-Rivers Healthcare PLLC - Salem", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Lighthouse Healing LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Physical Medicine Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Preferred Care Community Health Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "REACH Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PIMENTEL, SEVERINO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Primary Care of Shelton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Front Range Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Peter R Goebel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Delaware Valley Wound Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Larrauri Delia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Salman Mehboob", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Clinica Amistad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Dillon / Kimmel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Abbeville Area Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Bagwell Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gary R Gibson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Douglas E Roberts MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Cesar Delaguila, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Delmarva Kidney \u0026 Hypertension Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integrative Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Theresa M Conyac MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - J. Edward DeBoard MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Roeza, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Trinity Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pacific Northwest Lactation, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Essential Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Dina S. Burke, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Shelter Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Best Start Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - George E Woodman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ER2You", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kayhan Amir Bangash, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Statera Integrated Health and Welln", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Highland Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orlando Medical Center Pl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Wayne Family Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Diamond Medical Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - M N Khan P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Midwest Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lisa Robertson LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Holtville Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bear Valley Urgent Care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEALTH ADVOCATES 360", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STUDENT HEALTH IMPACT PROJECT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - WILLIAM BARA-JIMENEZ, MD, LLC DBA B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Foothill Allergy Asthma and Immuno", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Ripley Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Old Fashion Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Henry H Dorn MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mansfield Pain Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Flip Flops and Lollipops Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Jon J Floriano M D LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Kuruchi Srinivasan MD.PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Horn Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PRINCETON FOOT AND ANKLE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - In Tune Healing Arts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Crowley Cares Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Select Surgical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Cedar Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Doctor of Living", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - E C TYREE HEALTH \u0026 DENTAL CLINIC, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Komal Koya DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lansdowne Eye Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Headache and Pain PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Reno Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Kanawha Valley Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Progressive Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Baginski Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newport Coast Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - New Age Foot \u0026 Ankle Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CENTRAL COAST PHYSICAL MEDICINE AND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Charles W Page, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mark A Johnson, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Central Mississippi Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mark T Fahlen MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Pain Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - HealthPoint Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Center for Adult Medicine \u0026 Hyperte", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Planet Health 360", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Keady Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Highlands Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JEFFERSON COUNTY DEPARTMENT OF HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tarzana Medical Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advantia Health Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Friendship Heights Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SMH Mental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Simmonds, Martin and Helmbrecht, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIOWA COUNTY HOSPITAL DISTRICT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Health Centers of the Central Coast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Starlight Pediatrics Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Precision Digestive Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Villa Therese Catholic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Paz Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Paz Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area PACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Welbe Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Employee Data", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA Coast PACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pacific PACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sequoia PACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stockton PACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Lighthouse Medical Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DAVID LEAVITT MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "David Beckstead MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FRANKLIN COUNTY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Franklin County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Auriga", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Banker Steel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "C\u0026F Bank Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareTeam @ Frederick County Public Schools", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareTeam Corporate Health Charlottesville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareTeam Corporate Health Danville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareTeam Corporate Health Mt Jackson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareTeam Universal Fiber", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "City of Winchester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Contour Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coveris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Davenport Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Evenflo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hampton City Schools", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Novanta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SEW Eurodrive", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stihl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Test Environment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tietex", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Optum Medical Care of N.J., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optum", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - OPEN M Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Bryant's Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Laurie McKillip, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vascular and Endovascular Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Skyline Urban Ministry, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GLORIA ORTIZ, MD, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Plante Endcrn Dbts Wllnss Cntr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Garfield County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holzer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pecos Valley Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foremost Family Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Khoury Cardiology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Yvette P Ans MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Pediatric Endocrinology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrated Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "My Health Story", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Teri L Hunter MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ADVANCED PAIN \u0026 WELLNESS INSTITUTE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Women's Wellness, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Nebraska Home Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Matagorda Episcopal Health Outreach Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Health Alliance for the Uninsured", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "241 Boston Post Road", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "257 Station Avenue", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southwest General Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Guru MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - MABEL WADSWORTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Nader Tavakoli-Jalili MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Nottingham, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wee Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Battle Born Bone \u0026 Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Thomas G. Salvi, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Charles B. Goldberg, MD, Family Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lone Star Geriatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rickard Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Brown, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Ober, Robin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jacksonville Kids Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Wexford Foot and Ankle Institute -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Triumph Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - St. Lucie County Health Access Netw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEURO SELECT, L.P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - VANOS PAIN MANAGEMENT SOLUTIONS PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - CNSA Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Adam C. Cohen Plastic Surgery, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hummingbird Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRMC Healthcare Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Taos Whole Health Integrative Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michigan Primary Care Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Helping Hands Outreach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North San Antonio Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - John D Marshall MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Trinity OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pikes Peak ENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Magass Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Digestive Health Clinic of El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Opal Court Pediatrics, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Wilmington Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAREFIRST FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PATHWAYS CLINICAL PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROGER ROQUE MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Region VII Area Agency on Aging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - VIP Health and Fitness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Morton Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_BOS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_COL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_DFW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_FLR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_HOU", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_SF", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_VBV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Pinnacle Foot and Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - James and Annette Franklin M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WEST BAY NEPHROLOGY ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dexterity Surgical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jason Pope MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Doctor's Diet Program of S. Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Osceola County Council On Aging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Door To Door Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Flourish Women's Wellness \u0026 Midwife", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Heartwise Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Piedmont Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - JULIE L. FOREMAN, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Albemarle Hospital Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sweeny Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Buffington Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Charleston Surgical Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Theresa Piotrowski M.D. DBA The Adu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Abbas Hasnain, MD, JD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Advanced Care Pediatric Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Open Door Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - James S. Dunn, Jr. MD Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Christy Coleman, ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jinah Sayed, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - St. Charles Family Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Gladwin Family Care,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Allcare Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Phoenix Allies for Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix Alles for Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Mire, Geoffrey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Aultman Medical Group, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SCCH Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RGV Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Midwest Spine Interventionalist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "P3 Health Partners Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Project West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Tennessee Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooklyn Urgent Care Of Marine Park", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - S LUKE BERTHELSEN DPM INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Fig Leaf, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Khadija Dugan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Vineeta (Lily) Baronos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Arrigg Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Neurology and Neurodiagnostic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Daniel Inouye, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lakeside Family Physicians PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Plantation Medical Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - mid-atlantic family medicine, llc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Lifetime Medical Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Commonwealth Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Claude E Younes MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - East Mountain Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Oahu Natural Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Treasure Valley Family YMCA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Platte Valley Medical Clinic WY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Friendship Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - All About Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Bennett Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Elevate Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Rockford Rescue Mission-Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Sandhills Pain Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Donald Mackenzie MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Southern Pain and Regenerative Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - TIP Palm Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Taylors Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - The Pearl Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Haywood County Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Westover Hills Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - St Joseph Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Southern Illinois Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - C. Eric Grey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bromley, James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Columbia County Volunteers in Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Palm Beach Wellness!", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - First State Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pediatrics Associates of Frisco Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Physicians CareConnection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Coker and Qualls, PA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr. Scott W. Blumer, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Paul Rogers MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Alma Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - David C Leech DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Harvey, Ralph", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lone Star Lung \u0026 Sleep Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - My Choices DBA Obria Medical PNW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - MICHAEL DUPRE', M.D., L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Charlottesville Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - FLATIRON FAMILY MEDICAL, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Clark Family Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Boise Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Northern Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Agape Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Ministries of Jesus Clinics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Good Shepherd Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Adams Compassionate Healthcare Netw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - OccuMed of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Byrd Family Medical Clinic- Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - PAISLEY FAMILY MEDICAL CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Medical Institute (HMI)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optimal Aqua Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optimal Performance Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Maduka Odogwu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Baptist Mission Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Nova Interventional Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TOMMIE SIMON MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Christian Healing Network, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clinic by the Bay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Crystal River Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Invicta Family Healthcare Clinic, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CLIFF M. GLASSER DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - New Health Pain Treatment Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ronald C Bacani Primary Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sean Kossari MD A Professional Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jellico Wellness \u0026 Convenient Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thomas Kurian, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Hope Clinic \u0026 Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bayview Gastroenterology Medical Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Borland Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Carmel Allergy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jonathan Waxman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - 2020 Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Daniel Rostein MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pilsen Medical Clinic \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROBERT C BYRD CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNITED HEALTH CENTERS OF THE SAN JOAQUIN VALLEY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FIKA MIDWIFERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE COIT HOUSE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nacogdoches GI Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - HealthyHER Center for Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - HopeCentral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vitae Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Woven Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ketchikan Indian Community - Tribal Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - UGM Center of Hope Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sudha N Purohit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Prairie Foot \u0026 Ankle PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - McCree, Kathi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Richard L Baker MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PRECISION PODIATRY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gonzalez Medical Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brannen, Adelia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Space Coast Volunteers In Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Robert O Westcot II MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Associated Nephrology of Northeast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rigel Geriatrics PLLC Dba Texas Ger", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Crosby and Chen PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - WICHITA DIABETES AND ENDOCRINOLOGY,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - South Texas Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Associated Pediatric Partners, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Carlson, Vera", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Center for Sports Orthopedic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Chattanooga Lung Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Southern Maine Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - GT Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Skylands Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Union County Infectious Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Premier Medical Consultants, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Weisman, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Williams, Teresa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Medical Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Hoover Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - D Joel Valentini DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Domingo E Galliano MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - WELLNESS SUITE 360, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Samuel C Lee DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Chosen 2 Care Medical Center, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Varkey Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Timothy S. Hart, M.D., P.S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MALCOLM P DULOCK MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Asheville Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Legacy Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - A\u0026M HEALTHCARE CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Augusta Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Ayer Dermatology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jennifer Bunch MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Avanta Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr Babu Pediatrics-Steward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - N.Y. Neurological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Salem Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Prime Care Medical Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Personal Concierge MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Star Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - FMCH Combined Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - The Neighborhood Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Therapy Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ebb Tide Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Valentine Edusa MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Saint Moscati Community Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Peoples Choice Urgent Care-start up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Advanced Wound Care Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Gerald E Vanwieren MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ashland Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - You and Your Health Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Miklos Foot And Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Huntington Beach Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nguyen, Joshua", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kerner/Lerner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - PTR Sports, A Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mental Health America of Roanoke Va", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Free Medical Clinic of Darlington C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - St Charles Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Universal Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - OMSS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kay Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michigan Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Haseeb Al-Mufti MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates of Augusta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Campaigns", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bluebonnet Foot and Ankle Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "El Paso Kidney Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ENT \u0026 Audiology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stonewall Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Appalachian Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sistasis Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Midway Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Haskell Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - TREASURE COAST MEDICAL PODIATRY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Work Care Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Family Medicine \u0026 Urgent Care of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Spafford, Andrew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OBGYN of Miramar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - James J Caserio MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Mid Del Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Billings Crisis Pregnancy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ehrhart Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Southern Crescent Sexual Assault an", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeshore ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rontal Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Breathing Association Lung Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - ZoeCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aviva Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Selma Family Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Debie Cherian NP Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Yonsei Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palm Beach Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CARES Senior Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Medeiros, Mark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chandra Pasamonte, DPM - startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY CARE PLUS CLINIC Ohio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY CARE PLUS CLINIC Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Int Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - RFMP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Robin's Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Bend Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Empire Family Ophthalmology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Johnson, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Church Hill Medical Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT Health RGV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southern Immediate Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - South DeKalb Primary Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Urgent Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Madewell Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shields", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Crockett Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Reeder Vein Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - P\u0026B Surgical Solutions PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Janti Chaaban MD- startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - E mediate Cure LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Samaritan Health and Wellness Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Engleman Clinical Staffing, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parrish Medical Group - Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Space Coast Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - OnSite Medical House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Monica J Thomson DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Justin Connor MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dominion Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Byrd Regional Hospital Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - United Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Thomas D Bianchi MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Memory \u0026 Movement Charlotte", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Pine Level Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Maui A.I.D.S. Foundation Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Jeha, Zeina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Foot \u0026 Ankle Care Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Silver Hill Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Dream Centers of Colorado Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tryon Endoscopy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tryon Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Third City Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Advanced Care Connections, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Spine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - The Arc of Loudoun D.B.A Aurora Beh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Climb Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Aesthetic Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Compass Medical Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Cardiology Care-Independen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Telehealth365", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Foundation for Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Get Up Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Neshi Bakshi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Arthroscopy Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Life Choices Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - A. Lee Dellon, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Free Clinic of Medina County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Primary and Immediate Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Spencer Zimmerman NP Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Trinity Medical Associates Pa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Satnam Bhondi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arleen G Nieva MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Angelic Clinical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Default", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Great Commission Outreach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Franklin-Williamson Bi-County Healt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Affinity Wellness Consultants, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Vecinos Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kocharian, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dutchess Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NE Texas Interventional Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - IM Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elite Foot and Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ferguson Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Edgar A Gamboa MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Podiatry Clinic Of Jackson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sea Oats Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Lifesprk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Coraggio LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - LOUISVILLE PHYSICAL MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Back Bay Allergy Associates, LLC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - L \u0026 L Wholestic Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Evergreen Neurology and Sleep Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vascular Center of Naples", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Good News Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - JEFFREY D. WESSLER, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - The Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 1. Sandra K Hutchison MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blue River Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amite Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Deanna P Ricker MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Frank F. Rand, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CRABAPPLE FAMILY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sanjum Samagh MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southern Orthopedic Spine Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anthony Medical and Chiropractic Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Family Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CSUSM Student Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Physicals Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NOVAMED Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - 901 Health \u0026 Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Healing Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - John F Mulqueen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Allen M. Hoffman, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premium Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Aulander Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Torhorst Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Houston Regional Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Clifton-Centreville Medical Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS DERMATOLOGY ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Premier Family Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Panamericana Family Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bradenton Womens Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neuro And Epilepsy care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Julia's Center for Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Bianca Chin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Deschutes Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Peak Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Millbrook Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Medicas Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Oakland Propel Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Music City Prep Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Shalom Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pembroke Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pedro L. Cajator, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Paul Locus MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Apollo Mens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Agrarian Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Worcester Pain Management, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cody's Center of Hope Dedicated Ped", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Heartland Neurology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Fisher, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Nichols, Keith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Advanced Practice Nursing Specialis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Advanced Knee Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greene County General Hospital - Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Thrive NW Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ZA - Legendary Family Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Charm City Care Connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Southside Area Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Axis HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASAP Medical Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CityHealth Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Express Care \u0026 Platinum Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Medical PC \u0026 UC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW ALTERNATIVES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - The Urgent Care Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRECISION SPORTS PHYSICAL THERAPY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pri-Care Express", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RJ Medical and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care Now", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Raffi Chalian MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Central District Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Helen Rhodes MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Simple Access Healthcare MSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Watermark Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IWS Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 1.North Texas Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Crescent Neurology and Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - GAIA MED PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alabama Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Huron Valley Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Kentuckiana Surgical Specialists, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Care Medical Clinic of Canton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Perspectives Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Loudoun Rheumatology Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neurological Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Olusesan Oluseun Olotu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Plymouth Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - BENJAMIN GUIDRY, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Christian Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Mercy Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael A. Mcfarland MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Bickle, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Summit Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Y Hassane MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Kohles Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Preventive Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jonathan W. Chin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - St Clair Community Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hands of Hope Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Walker Concierge Health and Wellnes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Payam Mehranpour Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Victoria Mills, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lisa Barrett MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Farwell Internal Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Family \u0026 Womens Healthcare of Cinci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anna Clinic Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anna RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Munroe Falls Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Surgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hands Of Hope Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Center City Podiatry Associates, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Relieve Allergy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Himalaya Family Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DOCTORS EMERGENCY ROOM CORP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McKenzie Heart Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ALBANA MEDICAL ASSOCIATE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Anwan Wellness Medical Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EXTEND CARE FAMILY HEALTH, N.P., PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - David Perna MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Bladder Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Darwish Darwish MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - HealthFirst Medical Park", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Heart Rhythm Specialists PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - JSK Nelson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAROLD M SCHNEIDMAN M D PROFESSIONAL CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAN FRANCISCO DERMATOLOGY INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Naturopathic Family Medicine and Nu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - LAKE ERIE PODIATRY. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Janice Bickerstaff DBA Balance Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Degnan, Alyssa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Home Plus of Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SaVida Agency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SaVida Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIRGINIA BRAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Walter M Fingerer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Lighthouse of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Santos Primary Care \u0026 Walk In Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Mission Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Marietta Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - REVOLUTION PAIN MANAGEMENT, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Premier Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - River Bend Medical Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tug River Health Association, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bright Star Pediatric and Adolescen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Laurianne Scott, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEPHROLOGY CENTER OF EXCELLENCE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Interim Healthcare Supportive Servi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Care of Land O Lakes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Christian Free Clinic In Botetourt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Your Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - West Texas Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Catholic Charities of Central FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Soham Patel, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Team Excellence LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Blair S Lewis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Hope Clinic for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Celeste Adrian, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Premier Cardiovascular Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Blue Orchid Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Loukanova Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Francis Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Georgina R Mijares MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Paul A. Chang, MD, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Total Foot Care/Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Randall J Faulk MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Americare Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kabo Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain View Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ROLY BORGES, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Phillips Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Abideen Yekinni MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cai, Jane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Tampa Bay Neurology Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Union Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Chima Ohaegbulam MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Midwest Aortic \u0026 Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Orthopaedic Specialists Hawaii, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Inner City Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Inna Riva", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Biologics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dwayne O. Williams, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Fields Center for Womens Health \u0026 R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RotaCare - El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Republic Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Compass Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - FOUAD N. AOUDE, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Benson Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Mark Casillas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Samuel D Van Kirk MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Cornerstone Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - IAA Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Orange County Free Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Reddix Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WILLAMETTE VALLEY CLINICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - John Deitrick MD Consulting LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Manhattan Medical Arts PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - McGowan, Blake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Gratiot Advanced Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Project Access Foundation, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Primary Care Clinic Boston, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - JUAN B. PENA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GRACE Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Adullum Community Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Steven Coleman D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EPIC Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CovenantCare Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Urgent Care \u0026 Family Health Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - UCSF", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Med-Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Saint Paul Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Benjamin Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Berry, Richard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - B \u0026 D Medical PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - A Woman's Time", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Innovative Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr Uriel Mirzakandov MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - St. Gabriel Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - ALL KIDS R US MEDICAL CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wilson Community Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Osprey Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Oregon Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Charina Yango-Cadavos MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Utah Arthritis Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patton Park Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IndyCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Simon Desjardins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Regional Health and Testing Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Good Shepherd Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pak American Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Georgia Pain and Spine Solutions St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - South Atlanta Vascular Institute, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - South Alamo Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hendrick, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - GRAND LAKE HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COOKEVILLE MEDICAL CLINIC RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AAA Family Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Thrive Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hallmark House Calls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Infectious Disease Associates of Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Pain Solutions of Northern NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Navarro, Julio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MY VITA WOMENS WELLNESS CENTER PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Lavallee Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Women First, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunrise Health Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Stark County Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Elite Therapy Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Boling Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwestern Surgical Affiliates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Valade/Axonovitz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Empire Health Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kalamazoo Valley Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiology Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - LENA FAMILY MEDICAL, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Raynon A. Andrews, M.D., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Adams Endocrinology Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 1 CP Place PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Leslie Cooper MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Ifeoma Egbuonu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - North Hinsdale Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alta Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hudson Headwaters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Downtown STL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Sina J Sabet MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Bowling Green Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Haideh Sabet MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Oasis Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - GRAY W. BARROW, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Salud LatinX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Diabetes\u0026 Geriatric Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Premier Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gencare Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - David Khalil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Mena Pediatric Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Women's Wellness Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delta Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - National Low T Clinic - National Ph", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Barnard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pangarkar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prager", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Direct2Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Armstrong Urgent Care - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Advanced Mobile Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Small World Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - South Island Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Summit Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MOHAMMED ISMAIL, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gessner-Peterson Alpine Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cumberland Kidney Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Texas Ob Gyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Kevin Horvath MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SANATIVE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steele Family Clinic RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - M.L.S MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Saurabh A. Pande, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ivy Spine and Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Crison Foot Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chicago Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Javed Nazir MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Walls Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Well One Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rosanna Estrada, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Michelle Scannapieco MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beach Cities Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fort Worth Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Garza Medical Group @ South Alamo,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Bradley Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Winfield Family Medicine,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Prevost Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Nephrology \u0026 Hypertension of VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Rockwell Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Spine \u0026 Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Northeast Pediatric Assoc of Humble", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Anti Aging Clinic of Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Nordyke Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - KJELL A. YOUNGREN, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gadsden Regional Physician Group Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Partners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHS Family Health Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Samantha Vidrine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - ALLEGIANT HEALTH SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Evergreen Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Janey Leachman Hammons ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - University Primary Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Braselton Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Woessner, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAN ANTONIO FOOT AND ANKLE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Good Samaritan Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE VILLAGES HEALTH SYSTEM, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Signe Spine and Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nihal U Siddiqui MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - PEMBERLY PLACE MEDICAL CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - H.E.L.P. Pregnancy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Arubah Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lauren Hinojosa, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Syed A Ali MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lani City Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Triangle Pain Consultants, PLLC - S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Connections For The Homeless", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CARRIE L. CARDENAS, M.D., A MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Familiar Medical Services LLC - ath", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Community Medical Clinic of Aiken C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney and Hypertension Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Daryl Wever DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Urban Clinic of Atlanta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Private Health Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Battle Mountain General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pine Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chatham Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Chatham Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Free Clinic of Meridian, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Place of Hope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Healing Hands Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Valley Behavioral Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Foot and Ankle Institute of Geo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ray, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Evansville Christian Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Open Bible Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - RealOptions Medical Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - CHI ARTHRITIS \u0026 RHEUMATOLOGY ASSOCI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Allan J Bogdan MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Blue House Holistic Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Associates In Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - BLUETAIL ARKANSAS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Bolingbrook Christian Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alteon Health Telemedicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Alteon Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Kim, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Susan L. Boullioun, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DGD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Minimally Invasive Surgical Special", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Future Hope Health Group, LLC (DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Urban Ministries Of Wake County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Family Practice WestCare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Rose Internal Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Internal Medicine of Palm Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney \u0026 Hypertension of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MOHR MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VEN Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Capote Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NEUROSPINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DG MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Craniospinal Center of Los Angeles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Mayeda Rehab,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ADVANCED OBGYN OF CENTRAL FLORIDA L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Sheryl Haber Kuo MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FORT WORTH FOOT AND ANKLE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rebecca Fishman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - MOTIVATED HEALTH CHOICES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Riverside Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Newport Center OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Laurel Oaks Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bozeman Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ozark Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advantia Health-Susquehanna OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Kentucky Medical Specialists, PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cranor, J. David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MDsleep, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Women's Intuition and Self Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pediatric Gastroenterology Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Midsouth Transitions Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cumberland Home Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Health Care Resources Plus, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Rhonda Guy MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - We Care of Central Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ABC Health Connection, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Superior Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Urology Of Memphis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Albert V. Jellen, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Charlotte Sports Medicine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Brain and Spine Institu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ethne Health Clarkston GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Gursewak S Sandhu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Skin Bar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vibrant Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - David Meduna, M.D., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Cabrini Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Stepping Stone CAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Helix Pain Solutions- athenaOne +St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - ST LUKES MEDICAL MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Montano Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MARTINDALE FAMILY MEDICINE CLINIC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - MAINE COMPREHENSIVE PAIN MANAGEMENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Leon Matsuo MD Inc. dba Kukui Lifes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - University System of Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - QUALITY CARE ASSOCIATES URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Brian Kwon MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Solstice Health Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Judeo Christian Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Open Arms Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Hoosier Crescent Foundation Corpora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Right-Turn.Biz, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Foot \u0026 Ankle Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - OLD TOWN FAMILY PRACTICE, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lancaster Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Medical Center Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BANGER - HILL \u0026 ASSOCIATES, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Christian Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Port Isabel Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Storrs Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - D'Arbonne Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chad Wu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Mary L Lussier MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - QUICKMED AFTER HOURS WALK IN CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ithaca Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MERCER MEDICAL \u0026 WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Curtis F Robinson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Grace Womens Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Islamic Association of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Naturopathic Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SIGNATURE KIDNEY CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAURIE S. EVANS, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lourdes Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RCCH Trios Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Maria Shelkovich", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "A CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RHEUM CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - BLACK DIAMOND MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Prevention Clinics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Abbass UHMP ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Moden Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moden Medical MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHERRY BARNETT MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - CHILDREN'S HEALTH CENTER OF COLUMBU", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Park Hill Medicine PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - M-Power Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Stony Brook Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Riverside Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ROYALE FOOT AND ANKLE SURGEONS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MoZaic Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Meridian Surgical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - VIP 2U, LTD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Pain Relief Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Harrisonburg Rockingham Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Associates in Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stockton Vitality \u0026 Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Galooshian, Liya", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ultra Health Providers of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WE CARE JACKSONVILLE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Neurological Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Northeast Orthopaedic \u0026 Sports Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SHAFA MEDICAL CLINIC, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Leonard M Horowitz, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - AJB Orthopedics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Care Health System Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Claudia Fernandez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elevate Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Faulkner Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - OrthoNow PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Kauai Community Health Alliance dba", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MTSI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY Allergy and Sinus Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Richard H Aronoff DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Lifetime Internal Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SAN ANTONIO WOMEN'S HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heritage Neurology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LRW Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - James Hazel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Highland Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - RIVERS EDGE BEHAVIORAL HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ELITE PRIMARY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Cardiovascular Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - St Lukes Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JILL GRAMER D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Emily Harrison Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Liza Rodriguez MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - ACRMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Decatur Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAKEFRONT MEDICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RESILIENCE HEALTHCARE LAKEFRONT MEDICAL ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weiss Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Faith Family Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Magnolia Springs Skin \u0026 Wellness Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Neurology Specialists of Greater Pi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rene I Luna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Targan, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Kulka, Matthew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Luke, DeeDee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Children's Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Active Pain Management Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BROTHER BILL'S HELPING HAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Hamid R Sami MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lacey Zack, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Maximum Wellness MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Precision Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Right Path Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Capital City Rescue Mission Free Cl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Center For Healing and Hope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lighthouse Christian Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hope/Burpeau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Will Bynum MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tommie Harris DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Urban Peaks Rehab LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Foothills OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ortho-Gen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Crossen Family Practice, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AYESHA AHMAR M.D. AND ASSOCIATES, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Manaswi's Orthopedic and Joint Repl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PRIME ENDOCRINOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - CHICAGO MOVEMENT SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - A Brighter Day Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kidney Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - eInfectionMD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Maya E Kunofsky NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Gray, Torin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Arthrex Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Head Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pittsfield Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Walk-In Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - CENTRO DE SALUD CRUZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ForeFront Radiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ORTHO PLUS HOLDINGS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TRINITY FAMILY PRACTICE \u0026 URGENT CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Aid to Women Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ARIZONA FOOT HEALTH, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - COMPLETE FAMILY EYECARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Better nights sleep center inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Stone Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wellfleet Family Medical Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CONSENSUS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Real Life Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Midwest Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - TriMed Advance Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ankle and Foot Centers Of Ohio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kimberly Mezera, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Trinity Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Angelica Martinez Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rosa Perez Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Harry Chen, M.D. A Professional Cor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - DGN Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Stephen Tamang MD Consulting Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Kansas Diabetes and Endocrinology C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AKASH MAKKAR PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MICHAEL S LENERTZ DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Women's Specialty Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ANGELICA MARTINEZ FAMILY PRACTICE P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kevin J Kessler MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Bryant Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Blissful Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - MS Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Gabriela M. Yurkanin, DPM, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MD One Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - BETHANY MEDICAL CLINIC, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Myo Cardiovascular Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - WARGO \u0026 ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southern Breeze Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Elebiary, Ahmed, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - New Albany Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Psychiatry of the Woodlands", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEUROLOGY AND MOVEMENT DISORDERS CE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JORGE A. BARBOZA-SOSA, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Total Care Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mother of Mercy Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Consultants In Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Independent Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NiaMedic USA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Greenbrier Obstetrics And Gynecolog", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mireya F. Nadal-Vicens, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MedMoco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - M.D. Housecalls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Robert DeMartin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Buxmont Pulmonary and Sleep Medicin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Core Physical Therapy \u0026 Training", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ADAMS BONE AND JOINT, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - University Diabetes/Endocrinology C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Halifax Endocrinology and Osteoporo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Primary Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Omega Medical and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Center for Interventional Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Larisa Vorobyeva MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Aliona Rudys MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Star Pediatric Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pavilion Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Andra Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Linwood Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Blossom Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Neighborhood Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hollister Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Arrhythmia Consultants, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rachel B Head, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Neighborhood Resilience Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GLOBAL FAMILY PRACTICE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatrics of Queen Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Naturopathic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Ness County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CORAL GABLES CARDIOLOGY ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DR. DIAGNE PREMIER OB GYN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Center for Advanced Spine Care of S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Morgan Medical Associates, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - City Rescue Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Partners in Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - 441 Urgent Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MB Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bicycle Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ovation Hand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PULMONARY ASSOCIATES OF SOUTHSIDE V", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - 931 Healthy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gilead Primary Care North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY UROLOGY ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Generations Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Comprehensive Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - gordon, flash", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joshua Prager, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MY VISITING PROVIDER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Care Transitions, LLP Clinicals", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Corpo Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - St. Francis Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Revitalize Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pulmonary \u0026 Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Brain \u0026 Stroke Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinica Maria Luisa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Allen Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Citrine Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Customized Health Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medicine \u0026 Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foot Factor Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Full Circle Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Haksha Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hummel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IAI Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IPW - St. Camillus Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrative Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Itable Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Julie Waisbren, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lee Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maqbool Arshad, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mauricio Tovar, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medpoint Family Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midwest Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Milwaukee Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Milwaukee Heart \u0026 Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Milwaukee Radiology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care of Milwaukee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thiensville Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Bend Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Davy's Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roosevelt Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ProCare Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hope Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Borders / Hood", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pediatric Pulmonary and Sleep Speci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PREMIER PODIATRY, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sebring NP Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Vu Thanh Nguyen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Total Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Jerrold Snow D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrook TMS NeuroHealth Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Greenbrook TMS NeuroHealth Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Integrated House Calls LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Sternberg Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Deck, Lawrence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - NANI Internal Med, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Frontier Neurosciences, Dr. Gee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Incare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Joseph S Chirillo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Robert M. Smith, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Center Of East Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiology – Clarksville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiothoracic – Clarksville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Digestive Care – Clarksville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Family Medicine – Dover", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Family Medicine – Peachers Mill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Family Medicine – Tiny Town", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthcare – Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Medical Group Family Medicine and Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Surgery – Clarksville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JORGE A. ARZAC, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - ALBERT BEHAVIORAL HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Open Door Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - KYLE D. PARISH, M.D., PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fairfax Neonatal Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Joyful Heart House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ZENITH HEALTH INSTITUTE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Surgical Institute of Tucson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - James L. Autin, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Tuluca Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Grand Valley Oncology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - One Tent Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "All Florida Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brandon Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Orthopaedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Sports Orthopaedic and Spine Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates of West Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Specialties of Tampa Bay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tampa Bay Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Southern California Brain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Camp Interventional Pain Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DUNNAHOE MANAGEMENT \u0026 HOLDINGS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Clinic 221 Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - BABY STEPS PEDIATRICS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Jones Center for Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Marupuru, A Professional Corpor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Grace Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - L.O.T. Health Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Precision Spine \u0026 Orthopedics Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - JEFFREY L. RINEY, M.D. \u0026 ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Legacy Nurse Practitioners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rapha Integrative Family Clinic PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ICNA Relief Medical Clinic- Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ICNA Relief-GA- Shifa Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ICNA Relief- PA-Shams Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Bethesda Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Battle Ground Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CARLOS HERNANDEZ, M.D., P.A. DBA SO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - West End Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WithHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RAJANI RAO, M.D., P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kielhorn, Gene", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - First Refuge Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - SOUTHERN GASTROENTEROLOGY ASSOCIATE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Orange Cut Rate Drugs, Incorporated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mauri G Lunderman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Beach Family Medical \u0026 Wellness Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Innovative Primary Care Plc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Hand Institute, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Critical Care Lung \u0026 Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Platte Valley Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ortho OIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lanny Rudner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Kaushal M. Kulkarni, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Lakhvinder Wadhwa MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Neelam Gupta MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Physician Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dr Richard F Clark (h e l p Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Im, Marvin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Lenz, Jeffrey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Wayfinder Wellness \u0026 Physical Thera", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Vitality Medical Partners P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Healing Duo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Arun Gupta MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Bao Dinh, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - William Van Bingham, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Access HealthCare Multi-Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anchor Point", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Night Owl Pediatric Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - EDMOND L. BAKER JR MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Elaheh Farhadian, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - WK ARTHRITIS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Living Waters Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GALILEA MEDICAL GROUP, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GALILEO MEDICAL GROUP SC PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Galileo Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rehoboth Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Burton A Waisbren MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Kleinhen, Ian D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - EV Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - New Albany Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Beersheba Springs Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Amy Bruner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - THE BACK PAIN CENTER, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - North Island Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Mckenzie River Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lynn O'Connor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ellenton Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alca Medical Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Bridge Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - New Life Medical Esthetics \u0026 Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sarasota Foot And Ankle Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Umbrella Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Best Choice Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dave Weitzman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MARIO A. ECHAVARRIA, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for Urogynecology and Female", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Vanessa Falwell NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elliott Thomas Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Full Circle Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Orthopedic Surgery Consultant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - GSG Pride Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ent surgical and speciality care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Northwest ENT Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - INR MEDICAL SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Caffey Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Daniel J. Muppidi, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Children's Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Internal Medicine PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Saint Paul's Medical Group, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MEDICAL GOLDEN CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Panira Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - PYRAMID HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Allegheny Reproductive Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Wings of Hope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Hillcrest Pain \u0026 Spine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ICNA Relief Shifa Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Mitchell Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Michael J. Rogan MD DBA Rogan Famil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Viera Family Medicine and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sanjay Godhwani MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Longview Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brazos Valley Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cancer Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Park Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Texas Cardiovascular Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Chronic Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CompCare of Navarro County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroads Family Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroads Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroads Oncology and Hematology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Behavioral Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Brain and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Internal Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar Pediatric Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DeTar on Demand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Clinic of Corsicana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Center Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Center Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gastroenterology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo CareClinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Hematology \u0026 Oncology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Interventional Radiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Physician Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Spine \u0026 Neurosurgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Laredo Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Associates of Corsicana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Navarro Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Navarro Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Navarro Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Navarro Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Navarro Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "One Source Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "One Source Health Center – Santa Anna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pineywoods Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Care Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates of Laredo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Victoria Orthopedic Surgery Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women’s Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Cardiothoracic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Family Practice at Gaslight", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Primary Care at Dibol", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Primary Care at Livingston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodland Heights Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Knoxville Shifa Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jennifer Brooks PA,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Davis-Seagle / Thompson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - EULANO FOOT \u0026 ANKLE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Real Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Your Optimal Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Heart Rhythm Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Deliverance Free Clinic Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Montgomery Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Wallace R Hodges MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Santiam Mobile Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mano Shanaa MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOLY CROSS MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steward Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Scenic Mountain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steward Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Canyon Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gustavo A Mondragon MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Spy Pond Pediatrics P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paloma Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY HEALTH CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Citrus Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MAR Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VLADIMIR VLCKO DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Med First Primary \u0026 Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Unified of AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_CAMELBACK WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC014_WOMEN'S MEDICAL CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC015_CENTRAL PHOENIX WOMEN'S HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENESIS OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Urbana Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - VIMDOS Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Healthy Lifestyle Medicine, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Good Shepherd Clinic of Dawsonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - APG MSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Culmore Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shisler Gynecology And Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RESULTS MEDICAL AESTHETICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Psychiatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Great Gait Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - JP Prime Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PsychNP Wellness Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PsychNP Wellness Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marc Cabanne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Louis A. Carrera, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Stuart L. Jablon, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Caroline Cobb Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Robert Louis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Achieve Brain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Best Care Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Natalia Keyser MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Scott Integrated Pain Management LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Comprehensive Pain Solutions of Tex", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Advanced Practice Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Puget Sound Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David Taftian, DO INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Core Physical Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Progressive Neurology and Sleep PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Western KY Family Health Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Accident and Injury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Clinic Main Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ORTHOPEDIC SPINE ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ProHealth Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Vanitha Yadalla MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BNA MEDICAL GROUP INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LIVINGSTON MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - NM Spirit of Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nipride Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Linda L Casteel, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mark J. Geller M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Mercy Heart Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Brandon Coffey DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - American Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Southern Illinois Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parker Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Selkirk Neurology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina HealthFirst, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Aniz Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Greer Healthcare \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGEANNA J HUANG MD PROFESSIONAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAWRENCE L LIN MD PROFESSIONAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Patricia Murphy Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - COMPREHENSIVE PAIN AND SPINE SERVIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ALTITUDE PULMONARY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Thoracic and Vascular Consultants,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Wildwood Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Rose M. Fuchs DBA Cornerstone Famil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Lifespan Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Sea Pines Circle Immediate Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Orbit Orthopedics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - A-P Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - SUNNY MEADOW MEDICAL CLINIC, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ohana Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Richard R. Rosenthal, M.D., Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New Braunfels OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Healthy Living Family Medical Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulfside Behavioral Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mirelle Medical Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Aktive Motion Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MD Webber PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Multicultural Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Acute Care Emergence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Transitional Healthcare of America", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Usha Sivakumar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KAMILIA TAGI SMITH, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Craft Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Craft Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Transformative Growth Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dr. Helena Kirkpatrick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "POTTSTOWN CLINIC COMPANY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "POTTSTOWN MEDICIAL PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Pedz Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Nightingail Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Brockbank Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - P.E.G.S.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ruh, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - A Better Birth Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rommel G Childress MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MICHAEL P LAWLER MD S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Medic Primary Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Comprehensive Coordinated Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Kidney Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Karim Bakhtiar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Martin Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WAY OUT WEST SPINE AND MOBILITY, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Instinctive Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roland D. Reinhart, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "S.T.A.R Orthopaedics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Health Now Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - HALIFAX INTERNAL MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Northwest Center Optimal Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pure Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wiregrass Podiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Inas H Al-Attar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Linworth Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - CarePoint Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Heywood Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Quabbin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - General Vascular Surgery Medical Gr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Immediate Care Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - The Heart Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Blair Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Kitsap Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mary George MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ORTHOPEDIC SOLUTIONS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Paband Medical Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mallory Community Health Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Valley Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Stat MD Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest CARE Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Aloha Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NAUMIT S. BHANDARI, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Platte River Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - La Clinica Latina Spanish Free Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Columbus Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Endless Vitality", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Emily Burd, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - LPNT - Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HRMC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sierra Vista Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VALLEY VIEW PHYSICIAN PRACTICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ABC Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Carolyn Langford Urologic Solut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rockford Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Mitchell County Surgery Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Penobscot Valley Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Railcare Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tennessee Family Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Occupy Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Minimally Invasive Spine Institute,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Gomelb Vascular LLC Stl Fibroid and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Servolution Health Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Family Health Partnership Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KVAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Mercy Medical Ministry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "River Park Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Devoted Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Optimum Cardiology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Robison Advanced Gyn Solutions Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PERMIAN BASIN WOMEN'S RESOURCE CENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kenneth W. Carr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Kanawha County Emergency Ambulance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LUCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatricenter of Greater Cleveland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sandusky Pediatricians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Cleveland Shoulder Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UH Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UHMP ENT Drs. Hassan and Fadi Abbass", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Signature Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VOLUSIA NEUROSURGICAL ASSOCIATES, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patient's Choice Primary Care Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Careteam+ Family Health \u0026 Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Healing Word Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FSU College of Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - A Healthy You Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ferncare Free Clinic Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mid Atlantic Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Multicultural Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Foundation Health Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - John W. Middleton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - MERCI Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Bridger Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain View Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - My Doctor Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mobile Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physician Housecalls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RESHAPED PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Houston Kidney Specialists Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIDNEY SPECIALISTS OF NORTH HOUSTON, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidney Specialists of South Texas, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Permian Basin Kidney Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Renal Specialists of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHWEST NEPHROLOGY ASSOCIATES LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Kidney Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - DEBORAH BRUNSON, M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lung and Critical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midlands Pulmonary and Critical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lake City Area Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - INVOLVED FOR LIFE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sarah Lowenthal, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cleveland Ibn Sina Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Susan J Henley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - His Hands Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Global OBGYN Centers Of FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Denton Community Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Williamsburg OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - TABITHA MEDICAL CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiovascular Clinic of Hattiesburg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wesley Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Ortho and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mirage Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Woman's Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Aspen Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Premier Choice Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Esper Concierge and Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Quick Care Clinic Family Pract", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Barnes / Hammer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Giving Hope LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - ELIZABETH HARDY APRN-NP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Better Health Greater Life Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - 2me Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiovascular Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - The Pediatric Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Newey Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mahsa A. Sohrab, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southeast Texas Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Hankenhof, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Brick Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NAVEEN MEHROTRA, MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Gaia Midwifery \u0026 Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - The Garden of Eden Health Center, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Health Box", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Memorial Hermann", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Robert J. Fanning Jr, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Flagstaff Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Touchstone Neurodevelopmental", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - ANGELS OF MERCY, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric Ellis M.D. + Lincoln Urgent Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LISIK-ROBERTI CLINICAL MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Pittman, Beau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Putnam County Medical Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michael N Henein MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MBS Trinity Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Reverent Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Naturally Simple LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Laughlin, Brent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Doyle, Natalie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rainilda P. Valencia, MD., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Golden Rule Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Unity Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cary Foot and Ankle Specialists, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Choice Health Loretto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Livingston Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Riverview Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern TN Lawrenceburg Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern TN Pulaski Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern TN Winchester Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Starr Regional Physicians Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sumner Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trousdale Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Andalusia Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vaughan Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Neurocognitive Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ocala Infectious Disease and Wound", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Family Convenience Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lorena Tinoco Md, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - WNC Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHEILA SHUNG, M.D., PLLC Internal M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alpha \u0026 Omega Health Care Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Nierenberg, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Elm Tree Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SOUTH CENTRAL WELLNESS L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Dr. Asser Youssef", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - VNC REALHEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Albrecht Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arch Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Linda Bratkiewicz Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MOMPREMIER EYE INSTITUTE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - HEALING HANDS OF NEBRASKA, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Edward Obazee MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. David Guerra, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ubi Caritas Health Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - CLINIC WITH A HEART, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family Centered Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - East End Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mari Benitez, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WOMEN'S CENTER FOR PELVIC WELLNESS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Cardiovascular Interventional Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Aceso Urgent Care and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - California Vascular \u0026 Interventiona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Sama Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FHCOB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - PriMer Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kleese, Matthew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Coast Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Silver, Jeffrey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Northwest Foot and Ankle Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Plaquemines Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kazi Ophthalmology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - RESILIENT HEALTH, NFP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - HEALTH AND INTEGRATIVE WELLNESS CEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PHOENIX MEDICAL CENTERS CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - MANCHESTER MEDICAL CENTER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Midtown Surgical Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - KB CARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - VITAUS MEDICAL CENTER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Advanced Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rocky Mountain Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Snowy Range Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Utah Kidney Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Full Spectrum Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Zubair Ashraf MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MARSHALL OPHTHALMOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - DR. JAMES T. LAWLER M.D. S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MIHAELA PERIJOC, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - PINON EMERGENCY AND FAMILY SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - iCare Health and Wellness Medical C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hands of Grace Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SHE CARES WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Rexburg Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Lovell, Cecil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ARKANGEL ENDOCRINOLOGY \u0026 DIABETES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - CHAPMAN INTEGRATIVE HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SHALINI MAHAJAN MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Marshirl Locklear - FNP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Infinite Medical Express", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KINGMAN HEALTHCARE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Gaca, Phillip", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Pittsfield Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sandhill Professional Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Peninsula Allergy \u0026 Asthma Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Open Hands Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - PREMIER PAIN MANAGEMENT, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Michael Straker, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North of Atlanta Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Glastonbury Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Propeak Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thais Aliabadi, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Caring Hands Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Edward Anim-Addo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bourbon Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clark Regional Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgetown Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Purchase Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - LPNT - Kentucky \u0026 Indiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Memorial Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Meadowview Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Norton Scott Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paris Therapeutics Interventions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - GRAND ISLAND PAIN RELIEF CENTER, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RGV KIDNEY CARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Crossroads Center Medical \u0026 Dental", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Equality Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Food City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Glen Rose Healthcare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Express Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UROLOGY NEVADA LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rios Healthcare Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Pulmonary Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Deacon Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr Ahmed Heshmat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Cullen/Wiseman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Twin County Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - XiXi Wong, M.D., P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KADIA MEDICAL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - COMPASSION PEDIATRICS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Compassion Pediatric Urgent Care LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Center for Pulmonary \u0026 Sleep Medici", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - IBERIA SLEEP CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Intervalmed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OBGYN HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Scott T Maurer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Strayhorn Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Raymond T Narh MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Victory Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LOVETTE PEDIATRIC ACUTE MOBILE CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Super Shot, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - True Care Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Locust Grove Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nile Womens HC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hudson Heights Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Southern Cal Orofacial Pain Mgmt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cutting Edge Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Sand Mountain Family Practice Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Got Your Back Total Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Agerson, Kirk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Kosco, George", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr. Mathur", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lakeland Allergy, Asthma \u0026 Immunoth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kristin Miller Obstetrics \u0026 Gynecol", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pratt Medical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dr Ritchelle Broadnax LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Dermatology Health Specialists, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Propel Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TrustCare DPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TrustCare Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TrustCare Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TrustCare Kids", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TrustCare Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Three Rivers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Michael B Albert MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BEE WELL EL PASO PEDIATRICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Sleep Medicine Associates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Partners for Healing, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - HEALTHY WOMAN WOMENS CLINICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Redd Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Thrive Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Rodney C Brunson DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Sardis Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Munchkins Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Baylon Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Lubbos Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Orientallers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Jain Society of Metropolitan Chicag", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gynecology \u0026 Obstetrics Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Vineyard Primary Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Chelsea Deselms, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Carmen White, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJCRI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Simply Vein", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SotoMaddix Psychiatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ICNA Relief Shifa Clinic (Duluth)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Med-Ped Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Westminster Canterbury on Chesapeak", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - North Andover Women's Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - 1ST CALL URGENT CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Canyon County Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pennsylvania Western University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - My Doctors Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Andrew J Randolph MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sound Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Truwell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Viers Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Baileyton Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Endocrinology Associates Of Ohio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ahmad H Ahmad MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - East Houston Medicine and Pediatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Springfield Pulmonary Medicine and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Westside Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SPINEMD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Signet Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - OneStop Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Kansas Pediatric Neurology Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kids Clinic of Paris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ALIUM HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Gerald Valme MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - The Breast Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lok Acupuncture Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lok Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Quintessential Care Health \u0026 Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vascular \u0026 Interventional Specialis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Vanguard Reporting Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Baker Allergy Asthma \u0026 Dermat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Ludlow Pediatrics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Perlow Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - iHealth Clinic, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Norman Lamberty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pueblo West Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - ZACHARY INTERNAL MEDICINE CLINIC, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ALLERGY, ASTHMA AND IMMUNOLOGY SPEC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - KOOROSH JOSHUA ELIHU, A PROFESSIONA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Legacy Internal Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Integrative Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - S.F. FOOT SPECIALIST PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Farmington Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Legacy Eye Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiology – Siloam Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Eye Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siloam Springs Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siloam Springs ENT \u0026 Facial Cosmetic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siloam Springs Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siloam Springs Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siloam Springs Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Associates of Siloam Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thomasville Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pure Autism Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Jose Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Latino Behavioral Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - A Better Way Outreach, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cornerstone Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroads Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossroads RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - QHC Crossroads Community Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tuscaloosa Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Peter Johnson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wilson H Park", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RICHMOND HEALTH NETWORK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RUMC BEHAVIORAL HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPITAL ORTHOPAEDICS \u0026 SPORTS MEDICINE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - First Pediatric Care Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AC Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - A Plus Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Legacy Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoCare Pain and Rehabilitation Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Accessible Integrative Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Vanguard Surgical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PREMIER URGENT CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADOBE ENT \u0026 ALLERGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ravi Yalamanchili MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Panola Medical Center Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Country Home Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - John A Evans MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TULSA CARDIOVASCULAR CENTER OF EXCELLENCE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TULSA CARDIOVASCULAR DIRECT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tulsa Cardiovascular Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Betsy Lantner, MD, OBGYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - GOLD STAR LONGEVITY \u0026 WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - UHLING CONSULTING LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - STAPP MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - General and Laparoscopic Surgical A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Atlas OB-GYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sharmila Roy Chowdhury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - FAMILY HEALTHCARE OF BEDICO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Norris V. Crump, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Genesis Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Genesis Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOUSTON SCOLIOSIS \u0026 SPINE INSTITUTE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "REGENERATIVE SURGICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unite Here Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Anil Chenthitta M.D., P.L.C. D.B.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - COFPS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Central Ohio Nephrology and Hyperte", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wayne Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Salvatore DiMercurio MD Hagerstwn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TROPICAL HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Columbiana Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bagherpour Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - CENTRAL ARKANSAS SCREENING AND MEDI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Spine and Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hola Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Helping Hand Behavioral Services, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hill Country Mission For Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Vu, Kenny / Vu, Andrea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Mercy Health Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Harper, Byron", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Sleep Clinics of America, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hill Country Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - David J Borchers MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - My Family Doc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Halim Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Free Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Nurses Global Outreach, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Kennesaw Mountain Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vernon \u0026 Waldrep Ob/Gyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Nouriche Wellness and Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - David M McKalip M.D. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pajaro Valley Community Health Trus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Wellness for Women- Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Jersey Eye Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New York Eye Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ronald L Devore, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Healing Hands Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PREMIER ENDOCRINOLOGY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The office of Dr. Popper and Dr. Loiselle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Princeton Lakes Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vision is Priceless", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bromley Neurology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Total Health Walk-in Clinic,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pulmonology, Sleep, Asthma \u0026 Allerg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - North Star Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Allstar Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MediPro Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - RICHMOND INTERVENTIONAL PAIN MGMT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pediatric Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Moon and Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - M. HOSPITAL INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Just In Time Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Rural Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Vittorio Guerriero M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NOVACARE PARTNERS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Someone Cares Atlanta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sabine Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Capital Medical Extended Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Surgical Alliance of Middle Tenness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Park current (since Oct 1, 2019)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Josier M. Nisnisan, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Covenant Community Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Quick Med Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southern Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Aberdeen Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Heights Family Medicine Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kidanu Birhanu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - NE Cardiology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MIDTOWN MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - JERSEY PEDIATRIC CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MAMI Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Larew Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - ZUP Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Care Beyond the Boulevard, inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Central Jersey Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Musculo-Skeletal Institute of America", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DOCTOR MOM PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Butterfly Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Essential Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Coastal Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - CENTER FOR SLEEP AND NASAL SINUS DI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Restore PDX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Dr Gwenn Rosenberg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UTHealth Neurosciences", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thomas Anker, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Detroit Wayne Cty Hlth Authrty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Imperial Health Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Align Senior Clinic - Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CALIFORNIA PHS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHIGAN HEALTH PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MISSOURI GATEWAY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUNSHINE HEALTH PARTNERS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TENNESSEE HEALTH PARTNERS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ANDREW M. LIPTON, D.O., P.C. DBA NA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - OBGYN Express Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Breytenbach, Hendrik", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MAGNOLIA ALLERGY AND ASTHMA GROUP,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Camden Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Leighton Ortho and Sports Med, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Scenic City Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SOUTH MOUNTAIN MEDICAL CONSULTANTS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - CURA FOR THE WORLD FOUNDATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AppHealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLINCH PROFESSIONAL PHYSICIAN SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clinch Valley Physicians Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DANVILLE PHYSICIAN PRACTICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DANVILLE PHYSICIAN PRACTICES LLC BEHAVIOR HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARTINSVILLE PHYSICIAN PRACTICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TWO RIVERS PHYSICIAN PRACTICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WYTHE COUNTY PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ashley Valley Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Castleview Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Castleview Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Las Cruces Physician Practices LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Los Alamos Physician Practices LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PHC Las Cruces - Behavior Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "River Valley Family Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Springboard Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Kentuckiana Cardiovascular Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Colusa Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Krisell D. Fedrizzi, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Open Door Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ponce MediClub, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEPHROLOGY ASSOCIATES MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Advanced Gynecology Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Douglas Klim, \u0026 Carlos Torrellas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Lakes Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Family First Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Dr. Reynaud-Harris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Natural Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - ANOVA FAMILY HEALTH CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - The Alfa Doc LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - A Woman's Answer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Healing Bridge Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Krista Fuqua", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Centennial OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Sunnyside Medical Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PRIMWAY MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Midtown Surgical and Skin Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Robert P Kaplan DO Incorporated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Cardiology Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - General Practice PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kids 1st Pediatrics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Maleh, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - SAFE-NOW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Brain \u0026 Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neuro OnCall, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Medical Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Barrick, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bret Scher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HRMC Employee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HRMC Forensic Nurse Examiner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hutchinson Regional Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - APT Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CANON PROFESSIONAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Canon Professional Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Marble City Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Swetech Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ACT Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Shannon Smith-Stephens, DNP, APRN-B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West End OB GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Eye Specialists of Dayton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - CONVENIENT MEDICAL CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Central, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Guiding Star Cedar Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Fellowship Senior Living", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - University of Hawai'i Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vein Center Of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RELIANT FOOT \u0026 ANKLE SPECIALIST PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Travis Loidolt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Haley Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Silver Sage Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIBRANT FAMILY CHIROPRACTIC \u0026 WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Verve Collaborative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Poturalski, Angelique", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bangston, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Coastal Access Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lydia Appiah-Dwamena Md Pa Dba Palo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS PANHANDLE ORTHOPEDICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bayside Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrative Rehab Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Four O SIX Family Practice, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Linda Jo Yawn, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mission Arlington Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeffrey Nordella MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - V Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Moscow Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Nurse Practitioners Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Upstate Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Marshall County Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mid Valley Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - MOBILE PEDIATRICS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - In Kwon Park MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Capella Hartselle Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HARTSELLE VALLEY FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hartselle Behavioral Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hartselle Hospitalist Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ADVANCE PREVENTIVE MEDICINE URGENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MyClinic of Jupiter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GRMC General Surgery Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Allergy \u0026 Asthma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Babylon Healthcare Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Babylon Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - 98point6", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Vikas Jain MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Advanced Care for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - REACH-LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - McCurtain Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SHERRY F. MENG, M.D. INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Vancouver Vein And Surgical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Robert Taylor MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Northwest Florida Lung Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - ABC Medical / ABC Health Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Ohana Pacific Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - PREMIER PAIN CARE \u0026 WELLNESS INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Courage Medicine Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Coye, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - O'Brien, Matthew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Fox Valley Foot Specialists LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Donte Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - COOK FAMILY PRACTICE, INC. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Sanatio Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MCBROOM CLINIC, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cochran Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Payal Patel MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Highland Physicians Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Picayune Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Riser Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Kamelhar Pulmonary Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Glacier Bay Medical and Diabetes Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Equality Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arroyo Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LAMIA KADIR M.D., PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CROSSROADS WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SHAMROCK HEALTH AND WELLNESS CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Edmonds and Lee Healthcare Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primecare Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heron Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advent Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bella Vida Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Mobile Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Essential Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PROVIDERS HEALTH ALLIANCE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Healthy Living Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ideal Family Pratice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medimore Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Melrose Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Milo Med MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Obsidian Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PROVIDERSHEALTHALLIANCE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Palm Beach Internal Medicine \u0026 Longevity Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patients Choice Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pinnacle Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Medical Center of Boynton Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Revamed Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shenandoah Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sommer Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Still Waters Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Headache \u0026 Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Klingler Management Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rejuvchip Womens Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Thrive Family Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Palouse Care Network, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Ronald L Anderson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Grand River Rehabilitation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vantage Foot And Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Adult Acute Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sarasota Interventional Radiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHAW PAIN CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - IHEOMA NWAOGU, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - A'o Aku A'o Mai LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - HANAFY, RASHA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Raven Corporation of New Orleans", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Brian S Kressin DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Security Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Door to Door Health Nevada", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pollard Concierge Health \u0026 Wellness Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Chilton Shelby Surgery, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Henry J Miller DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Our Kids MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Gastroenterology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Christ United Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Clinica Mi Salud", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Yellian Ruiz Irizarry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bazile Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ProActive Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - NY NEUROCARE MEDICAL SERVICES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ILLINOIS INTERNAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Harvard Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Jeffrey D Gaber \u0026 Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Massoud Saberinia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Patuxent Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NU-MD Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Kids Choice Pediatrics, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - James R Boyed MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Family First Health Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - ARKANSAS PAIN CARE CLINICS, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sleep and Headache Solutions of Hou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WHOLELIFE AUTHENTIC CARE PROVIDER N", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Georgia Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Optimal Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - LIFELINE MEDICAL CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - A Woman's Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Rocky Mountain Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Ryan D Martin ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COMPREHENSIVE KIDNEY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Healthtopia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Friends For Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Lonestar Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spectrum Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SAY Detroit Family Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WALMART HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - REVELATION HEALTH \u0026 WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heart of Kansas Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Pulmonary Associates of the Southea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - VeneSalud Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optum Medical Care of New Jersey, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Amelia Heart and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ROSETTA HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - GloFusion LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Gallatin Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA MOUNTAINS HEALTH SERVICES, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Healthcare Group of Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ANKLE AND FOOT SPORTS MEDICINE INST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - St. Louis Center For Cognitive Heal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Genesis Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Grimm, William MDVIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mcintyre Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Cox Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Southern Idaho Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BEACON CHRISTIAN COMMUNITY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Abccm Medical Ministry Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Leap Integrated Health, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PERKIS FAMILY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - LA PAIN AND PERFORMANCE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Worcester Evening Free Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ARCH COMPLETE HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Stanislav, Charles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dinesh K Jain MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Selah Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JMA MEDICAL GROUP LTD., LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Hopewell Medical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - M. Hani Soliman MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FULL CARE PEDIATRICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elite Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tomball Gastroenterology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Blue Bonnet Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kammana Nirmala MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lighthouse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Spine Institute PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - New Story Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Baton Rouge Black Alcoholism Counci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - ASSOCIATES IN PRIMARY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joe Ventimiglia, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Edge Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Silver Health CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vieve, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Beagin, Erinn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - LINDA LOVIG, N.P. MIDWIFE, OB-GYN,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Mindful Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Central States Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Family Medical Care of Bay Shore, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE PAIN MANAGEMENT SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Neurological Consulting, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEWARD MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Forest Hill Family Health Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Rocky Mountain Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Faith Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BREVARD HEALTH GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wilson Dam Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Jarvis Family Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Feminist Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 316 Enterprises LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Artisan Foot and Ankle Podiatric Specialists INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BAFC Pain and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brian A. McDowell Podiatry Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Craig Wilkes, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cupertino Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hector L Cervantes DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marin Advanced Wound Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OC Sports \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PACIFIC WOUND CENTER MEDICAL GROUP, INC- Do Not Use", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PNC Podiatry of Southern California PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sacramento Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Socal Foot Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Foot Doctors of Santa Cruz County, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNIVERSITY FOOT AND ANKLE INSTITUTE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vallejo Foot \u0026 Ankle Clinic Professional Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AVEO MEDICAL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Community Clinic of SW Missouri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PATEL ANESTHESIA AND PAIN SPECIALIS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Open Arms Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Vascular Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Manassas Addiction Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - VILLAGE HEALTH, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Comprehensive Vein Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Jack R Milligan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Stephanus Tjan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Trinity Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VIE Medical Center Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Whatley Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hogan G Yi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "1st Choice Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FIRST CHOICE PHYSICAL THERAPY SERVICES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Choice Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rihab Kheir MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Elawar Neurology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Ephphatha Medical Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Advanced Spine \u0026 Pain Interventions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mexia Principal Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Specialty Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Specialty Physicians Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Raleigh General Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WOMEN'S WELLNESS \u0026 HEALTHCARE CLINI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLUEFIELD CLINIC COMPANY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - UA SPINE \u0026 JOINT CARE, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sabiha M Mohiuddin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Valley Perinatal Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Genus Heart Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Perinatal Hospitalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Perinatal Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - The Nutrition Professionals", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JAMES J. WU MEDICAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Morandi, Joseph", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Haywood Pediatric and Adolescent Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Denver Oculoplastics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Abigail Bisson ND Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHSU Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Antone Internal Medicine \u0026 Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Melvin S. Stern, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - The Care Clinic (LA)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Addiction Center of Nashville LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - GUTH, KENNETH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeastern Nevada Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Promise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Dennis C Westin MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Uniontown Medical Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Gwinnett Nephrology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DLP PERSON PHYSICIAN PRACTICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maria Parham Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LPNT - North Carolina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "United Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Memphis Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - A. Roland Spedale Jr., MD, FACP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Hoa Nguyen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Indiana Ear", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHESTER L. SMITH JR., M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - ALLIANCE FOR COMMUNITY WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - PROMISE MEDICAL, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Premier Care Medical Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Source", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Jackson Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Eye Consultants LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - GOOD SAMARITAN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Blue Ridge Family Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Advanced Practice Headache and Prim", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FRISCO CARDIAC AND VASCULAR CARE PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Kalo Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CHARLES J KOLLER MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - S \u0026 D Of Virginia, Inc. D.B.A. Pros", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Montgomery Health Facility", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Grand Rapids OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - WHITE'S FAMILY CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Monica Brownfield Care Now", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Vancouver Sleep Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Foot \u0026 Ankle Reconstruction Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - James Reppert, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TRINITY PAIN MEDICINE ASSOCIATES, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Surgeons Of Northern Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Kidney Specialists of Georgia P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - MELIOREM SLEEP CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Sleep Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Millennium Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Springridge Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - LindaCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Caro Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - OC Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Herzing University CARE Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Torpey Family Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health One", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "old SWP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Texas Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alliance Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Vein and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Thomaston Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - COGENT MEDICINE PNW, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vein Specialists of the South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Roxene Riles NP Pediatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - EXCEPTIONAL PRIMARY AND PREVENTIVE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sole Solutions Podiatry Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - May Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lakeside ENT \u0026 Allergy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH ISLAND ORTHOPEDICS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Across The Tracks Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - TAMPA PULMONARY AND SLEEP INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SYNERGY PHYSICIANS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Rocco Tutela Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ISLAMIC CENTER OF MORRIS COUNTY INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alliance Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Care For Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Anupam Mohanty MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - The Palmetto Palace", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Samantha Meeks Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Linda F Bach MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - J W FAMILY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Women's Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Keven Tagdiri, MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Medical Office of Dr. Tefera", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KEZENGENE HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Thomas, Diane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Keri Livingstone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - RED RIVER VALLEY HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NSU Free Student Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hands of Hope Medical Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Charis Health And Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Saginaw Valley Walk In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - CCS Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Suzuki Medical Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Azam, Syed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Heidi Ogden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Asclepius Clinic Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Doerfler, Maurice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Wellness Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - James S Chesley Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Spasoje M Neskovic MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ESSENTIAL MED CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Lyons \u0026 Associates Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kenilworth Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MISSION INTERNAL MEDICINE CLINICS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio State Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Friends In Need Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Edelmann, Karl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BAIRD PEDIATRICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Family Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Auxiatry Health Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Missoula Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - John R Gilmore MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Southwest Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center of Excellence in Family and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ashish Patel, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BONNE TERRE HEALTHCARE CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GLOWWORM PEDIATRICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Watchman's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Balance Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Glendale Community Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Heather Bacala, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MyCardiologist Heart Specialists of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASPIRA ESTHETICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Star Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DECATUR LITTLE EAGLE PEDIATRICS, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Truesdale Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tony S. McClung, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Vida Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Vineyard Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lane Family Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Global Healthcare Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - River Health \u0026 Wellness, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ideal Physical Therapy And Fitness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Hormone Restoration Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pasadena Urological Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - KAVANAH MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lori Stafford, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Partners of the Permian Basin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - GARDEN STATE ELITE MEDI CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sensenbrenner, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ieremia, Nicusor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - New Hope Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Jackson Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MOUNTAINSIDE MEDICAL CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Daytona Beach Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - UMSS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ALICJA IGNATOWICZ DO, LLC - Start U", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Davis, Eileen / Davis, Dustin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Silver Family Care Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Columbus Neuroscience LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Heart Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Harvey Bowles MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Spartan Podiatry P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Loren Isakson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - THE ARTHUR NAGEL COMMUNITY CLINIC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - PREFERRED FOOT AND ANKLE CENTER PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - E.D. MILLS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dele-Michael Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - CONTEMPORARY OBSTETRICS \u0026 GYNECOLOG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Valley OB/GYN Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DR. MANDY COTTEN FNP-C, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kid Friendly Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Community and LongTerm Care Psychia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Siloam Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gastroenterology Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Lifestream Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Covington Orthopaedic \u0026 Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Providence Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolinas Center for Advanced Management of Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Ottumwa Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Allergy \u0026 Asthma Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Vermont Natural Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Treat Now Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Nephrology Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Steven D Hinshaw DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Orthopaedic Trauma Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aspen Grove Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Dr. Jeffrey Wilde", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Leidy Sanchez, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Previty Surgical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Aria Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Palmetto Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Oregon Sleep Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Care Excellence LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sibte A Kazmi MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - D\u0026F Medical Consulting LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PINNACLE PAIN MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - DR. RAO VELAGA, P.S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lisa J Trigg PhD ARNP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care Clinic of North Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SOUTHERN CALIFORNIA WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - City Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gastrointestinal Medicine Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Coastal Plains Surgical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - HealthStop", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Birth \u0026 Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A Ruben Caride", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Care Access Adult Hlt NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - On Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakewood Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jovive Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jovive Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "On Duty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saddleback Family and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "San Rafael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hawaii Island HIV/AIDS Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mendocino Care Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VI - ProHealth Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - NORTH LINDEN HEALTH \u0026 WELLNESS SERV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Burkhart Pediatric \u0026 Adolescent Der", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Southern Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Health Think", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Cook \u0026 Siu PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gary Ott, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Coastal Regenerative Orthopedics \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Freedom Medical Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Granite Wellness Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Comprehensive Pain Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - GYNKNOW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Friend Psychatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Commerce Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Charis Medical Center Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Integrated Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Community Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Williams Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Quickcare NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mass Counseling Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeremy La Motte, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspire Indiana Health FQHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Del Puerto Health Care District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - FAITH FAMILY HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Richard J Gilbert MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ronda Garrigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - COMPREHENSIVE FAMILY MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Daniel Rosen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Continuum Health Medical Services,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lincoln Park Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Ghandour and Dr. Soape", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - St. Mary's Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Heartland Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - North Polk Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Gary Lawrence Quartello dba Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SEVERNA PARK MEDICAL FITNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Nebraska AIDS Project Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Reeder Plastic Surgery, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Integrative Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PEDIATRIC HEALTH CARE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ICNA RELIEF USA PROGRAMS - AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Grogan Family Medicine Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Hodes \u0026 Nauser, M.D.'s, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Compassion Care Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Minnesota Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arizona Heart and Vascular Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - HealthCore Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Valencia Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Roots Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Roanoke Foot and Ankle Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - SOLIDARITY MENTAL HEALTH SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fearless Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Blackwell's Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Smith, Kimberly", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Integrated Psychiatric Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Miller, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CHA Behavioral Healthcare, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Balanced Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - James S Parsons MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Center For Advanced Vein Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - North Scottsdale Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NORTH STAR CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Hoffmann, Stephen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - 3W Medical for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Tamayo, Raul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Aging Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pediatric Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JOSEPH DANIELS D.O. PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Yakima Valley Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - A Woman's Perspective Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ALLIANCE BEHAVIORAL HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DIGESTIVE \u0026 LIVER SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Helping Hands Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Partners 4 Health Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ganju Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - HOWARD LISS, M.D. REHABILITATION IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Philip T LaBarbera MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Champions Community Health Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Copper Valley Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Central Florida Cancer Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Smithville Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Morell, Ross", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Heart Mountain Volunteer Medical Cl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bay Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jon I. Heller, INC dba North Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - WeCare Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BLASICK ORTHOPEDICS, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ORANGE COUNTY JOEUN MEDICAL GROUP,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Fosnight Center for Sexual Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Open Door Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Muskogee Medical And Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Capella Muskogee Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Coastal Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Colonial Beach Health \u0026 Wellness In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - SARAH LAIOSA, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Thibin Santha MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WHOLE LIFE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Whole Heart Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Northwest Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Ortego Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sandra Leni MD LLC STARTUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - K.Q Clarke, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prestige Physicians, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Melissa Drake OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - DerVan Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Family Medicine Associates East AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Patient Centered Care of Kentucky,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Women's Integrative Medicine OBGYN,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Strong Children Wellness Medical Gr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Free Clinic of Florida Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - RMP Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Women's Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HCA - Ortho San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Surgery on Sunday Louisville Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MILLER \u0026 TURNER OBGYN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Women's Health Collective", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - OB/GYN Associates of Idaho Falls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ear Nose \u0026 Throat Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ARDavis \u0026 Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Otolaryngology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians \u0026 Surgeons Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Southwest District Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Waukegan Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MARK JOHNSON, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Greer Richardson MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Elle OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - OPTIMAL MEN'S CENTER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbus Vascular Vein \u0026 Wound Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Five Clinics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tri City Neurology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marwan Ali MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fredericksburg Area Health and Supp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LEGACY EYELIDS \u0026 COSMETIC SURGERY P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - York County Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HEART RHYTHM SPECIALISTS, PLLC - St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Spine And Pain Care Institut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Swanson Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - SCOLES, LYNDELL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - OB/GYN Associates Marquette", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Moreno Valley Community Medical Gro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Minor Medical Squad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gregory A. Hamon, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PT Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - North Suffolk Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Community Initiatives Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hofmann Naturopathic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAMAI COMMUNITY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rubin, Keith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Grace Center for Family \u0026 Community", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - TeleWebMD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Jill Cohen FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHWELL AMBULATORY, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Metrolina Medical Associates-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Specialty Orthopedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Gianna Center of Syracuse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ANNA-MARIA TOKER, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Unity Maternal Fetal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SACO RIVER MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Marble City Family Care/OB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - OPERATION CARE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Arcara Personalized Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - PSYCH UNLIMITED, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TARPON INTERVENTIONAL PAIN and SPINE CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Berkeley Foot And Ankle Podiatry Gr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Primary Care Partners of South Bend", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Trinity Free Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Georgia Pain and Spine Institute PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Steven R Maynard, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cain Clinic of Europa Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OUCH URGENT CARE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OUCH! URGENT CARE OF HAMILTON LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PRINCETON ENT AND SLEEP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Southern Indiana Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lisa Makrides MD, PC. FKA Makrides", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Well-Being Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LoneStar Family Medical Clinic - St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Grassroots Healthcare Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Good Samaritan Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Wellman Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - KONI APRN FAMILY PRACTICE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CHINO HILLS FOOT AND ANKLE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - VALLEY NEUROLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Sheryl Facey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Champaign County Christian Health C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Under Over Fellowship", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Endovascular Therapeutics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DLKPAC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUMMIT MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foodsmart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Senior Resources of West MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Journey Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Allentown Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Milford Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Wilson 550, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - La Clinica Health \u0026 Birth Center fo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "mmMedical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Oasis Family Medicine Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - West Side Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - SATELLITE MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - UMEZ PODIATRY, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - CEDAR GROVE FOOT AND ANKLE SPECIALI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ANNA GASPARYAN MD INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Via Christi Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Via Christi Regional", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Via Christi Wichita", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Ascension - Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wamego", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Koga, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CHAMP VASCULAR LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - South Coast Dermatology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Livingston Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Harbor Pediatrics, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MedNow, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "6060 Spine And Joint PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOJ Anesthesia PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hunter Physical Therapy PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEXTGEN WELLNESS GROUP INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NGWG Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Dallas Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Extended Family Care Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - AllCare Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MARYVILLE WOMEN'S CENTER, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Precise Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Vascular Cardiac \u0026 Veins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bonita Springs Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affinity Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Leslie Diodato, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Springfield Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - CENTRO CLINICO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Advanced Women's Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jason Yu M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Warshauer, Leo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affordacare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MIDESSA NEUROSURGERY AND COMPLEX SP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ABILENE FAMILY MEDICAL ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Akachi Primary and Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Choptank Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Karl Dauphinais, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - CHUCKANUT FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ISLAMIC CENTER OF IRVING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OMEGA OB-GYN ASSOCIATES OF SOUTH ARLINGTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - East Coast Neuro Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Worry Free Community", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Black Sheep Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Pharmacist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Strive Integrated Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Southern Ohio Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marcos Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Rose Osteopathic Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CommunityCare Free Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neurology PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dignified Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Doug Maxey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PEMCARE, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Chevy Chase Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lucas Research", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Dr. Scott Carroll", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Swiftcare Family Clinic \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - TENNY INTERNAL MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MICHIGAN CENTER FOR HEMATOLOGY AND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Heritage Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_OAKDALE OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_METROPARTNERS OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_SOUTHDALE OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_WEST OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MINNESOTA TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shenandoah Pain and Palliative Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Amelia Ng, MD, PA and Tam V Ho, MD,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Community Transition Nurse Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sharpe Medical Services \u0026 Dean Glassman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - NOMAD MEDICAL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Louisiana Heart and Vascular institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - American Institute Of Balance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Praana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Manbir Takhar PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TRU URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tru Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TruHealthNow", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Northshore Premier Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pointe Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ameri Immunization \u0026 Wellness Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Foreman's Imperial Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Liberty Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Phoenix Integrative Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - C\u0026C Medical Consultants, P.C. DBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Prompt Care And Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jerome S Tannenbaum MD PHD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Benthal Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BREATHE360 Integrative Medicine Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Cynthia J Moorman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DR. ERNEST OSEI-TUTU MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Ruffin Associates Healthy Housecall", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS LONE STAR PHYSICIAN SERVICES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fair Oaks Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fair Oaks Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Glacier Peak Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Della Porta Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Urgent Care of Soldotna, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOLDOTNA FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "URGENT CARE OF SOLDOTNA, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - C-ASSIST INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - EAST WOOD CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Syed W Haque MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - New Britain Pediatrics Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Palmetto OB/GYN LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PEDIATRIC NEUROLOGY ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sbat, Kennedy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Endocrine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Byrd Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EAST SIDE PRIMARY MEDICAL CARE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Islamic Society of Baltimore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Charlottesville Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Chris Trujillo, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Watertown Family Practice Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - GOLDEN HEALTH INITIATIVE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arthritis and Rheumatic Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fleschler/Phillips", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - My Med Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Atma Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Woodridge Medical Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - GUIDING RIGHT, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Vitalize Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bridgeway Health Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Street Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Beaver Brook Pediatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Progressive Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wellspring Pain Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Paul H. Wand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - AVALON PLASTIC SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Valley Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - HOPE CLINIC INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Cedar Rapids OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - TOSEG MEDICAL CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Faith Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Three Village Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Paul Aaronson MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Peaceful Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Clinica De Salud Woodstock", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Centerpoint Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COLLIN COUNTY PULMONARY ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Childrens Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Northern Arizona Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Impact NW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EASTSIDE OB/GYN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MI Express Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Digestive Liver Disease Center of S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - BROCKPORT VINE MEDICAL P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Norton Shore Int Med and Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Triad Health Systems LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Volunteers In Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Children's Medical Group of Austin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pregnancy Care Centers Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Free Clinic of Southwest Washington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Flavio Cordano DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - FamilyDoc Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Thomas A. Morris MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tri-Cities Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neighborhood Health Centers of the Lehigh Valley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HyperHeal Wound Care \u0026 Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Green Mountain Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Performance Orthopaedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PETERSON HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PETERSON MEDICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Artius Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CareLink of Northwest Georgia Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Origin Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Denton Foot and Ankle Surgical Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pine Park Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Healing Grove Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Marion Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Dr. John C Leatherman, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Coal River Primary Care And Wellnes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - PROGRESSIVE MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integrative Medical Clinic NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Good Samaritan Health Clinic of Pas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cure Allergy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SAEED ESHRAGHI, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHIGAN EAR INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Douglas Medical \u0026 Surgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Great Plains Mental Health Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Bush MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Dagan Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Potomac on Call LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - PINE POINT MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ESMPT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Elman, Igor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Hansbrough,Peters,Traxler \u0026 Scallan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Anew Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern California Kidney Consultants, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Guiding Star Memphis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Loma Linda Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sulzbacher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dependable Healthcare Providers LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Robert F Mc Evoy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Eastern OB/GYN PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Women's Health OB GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Cavery Health Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - La Familia Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Shivani Beri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - AMC Medical Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - SIDDALL MEDICAL SERVICES, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Integrated Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Women's OBGYN Center P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mason County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Panhandle Rural Health \u0026 Primary Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Developmental Pediatrics Health Wel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - RAYIOM HEALTH AND WELLNESS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Kirkland Family Medical Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jesse Woo, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Be-Well Health and Dr. Gulish", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Smith \u0026 Gayle Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - SCOTTS HILL CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Palliative Medicine of Southern Mar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Oncology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Meade Medical Clinic SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Probity Healthcare Services \u0026 Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Central Texas Diabetes \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Mountain View Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MedPro Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC009_NORTHWEST ASSOCIATES FOR WOMENS HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_THE ASSOCIATION FOR WOMEN'S HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC011_THE WOMEN'S GROUP OF NORTHWESTERN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDWEST CENTER FOR WOMEN'S HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KOPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Romano, Andrew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NEUROSURGICAL SERVICES OF OAKLAND P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WHITE-WILSON MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - JourneyLite Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Healthcare 360 Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Healthy Kids Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Prime Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Healing Connection Behavioral Healt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Naficy Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WeCare of Lee County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - JAMEE BALTZELL, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mary Spencer, FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Beth C Burghardt MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - VALE FOOT AND ANKLE SURGERY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Yager Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MD HOMECARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Baal Perazim Wellness Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Pira Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lake City Primary Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ASSOCIATES IN INTERNAL MEDICINE HEA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Access To Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Shawky, Mona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - AAA Family Foot Care Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rainier Family \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Manohar M. Reddy MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KindlyMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Brighter Path Addiction Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MEDICAL SURGICAL SPECIALISTS OF KER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AC Medical Associates I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Medical and Surgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Monarch Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Accommodating Healthcare Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - DURAN HEALTHCARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JASON SNYDER PODIATRY P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Primary Care Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Stepkovitch, Khatuna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Elite OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Cody Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hendricks Family Practice, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - WeCare Psychiatry Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Birmingham Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Account David M. McKalip M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Manderson Orthopaedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Northern Cascades Foot \u0026 Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Eustasis Psychiatric \u0026 Addiction He", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tracy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARDIOVASCULAR CLINICAL ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Haven Total Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHRUJA PATEL, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arthur Medical and Sports Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Garden State Specialty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orozco Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cruz, Rene", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sapphire Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LWR Family Practice Walk-In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Fertility and Midwifery Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Boram Park, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Halo Health, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Lisa Cheek FNP-BC Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Quality Care Health Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Collaborative Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Heart to Heart Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thacher School", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care on Main", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Harmony Park Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pearlman Endocrinology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ISINC HEALTHCARE SERVICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Williamson And Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HAPPY FEET PODIATRY P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Alkesh Patel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - THE PEDIATRIC CARE CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Pine Ridge Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Biocare Orthopedics \u0026 Spine Institu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Temecula Valley Ob/Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Apple Pediatrics, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELIZABETH B. PIERCE, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEATHER A. SHARKEY, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - 2020-Princeton \u0026 Rutgers Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Darkhorse Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATLANTIC COASTAL SURGICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Salartash Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newbury Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Jonathan Altman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - TRIGG COUNTY ORTHOPEDIC FAMILY MEDI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Women's Specialists of Bucks County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Rye Ambulatory Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Westmed Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gary J Smith MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MI Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Endo and Diabetes Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Anywhere Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Livesay Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - AMSTERDAM MEDICAL PRACTICE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Cumberland Cardiology Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Cumberland Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Cumberland Physician Practices LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Cumberland Regional Hospital LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Patricia A Dietzgen DO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lafayette Pediatrics/Internal Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - W Cunningham \u0026 S Howard, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Leland Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - WELL LIFE FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Introspection Beverly Hills", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alabama Nasal \u0026 Sinus Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "National Mental Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Brookhaven Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MYCARE EXPRESS CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Urgent Care of Fairfield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Urgent Care Hamilton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Colerain Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Dr. Sujit R Varma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - THE PAIN INSTITUTE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Caritas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Triangle Womens Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lorna Bennett Md", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Sleep Lab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MARK S OBRIEN, MD, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Care House Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - INTERSTATE CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Island Medical Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Fountain Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - FUNctional Therapy and Tai Chi, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Spartanburg \u0026 Pelham OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Benjamin A. Stahl, MD, PA dba Boern", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMITA Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pomarri LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Silver Creek Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - LENOX OBGYN L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ON DEMAND URGENT CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Colorado Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Bear River Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Homestead Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Medical Cares Associates - Prattvil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - 5 Star Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Transitional Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Makarios Group 3, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cardiology \u0026 Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole System's Healthcare Cincinnati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Health Austin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Baltimore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Boulder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Hilo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Lake Oswego", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Portland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whole Systems Healthcare Seattle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Valley Medical Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Rehabon Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - SquareOne Compassion, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - The Vein Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ImagineMIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brian Novick MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PrimeCare Venice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Akwaaba Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Paul E Pritchett MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Dr. Wagner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Best Physicians At Home, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - All In One Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - CONCORD INTERNAL MEDICINE ASSOCIATE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southern Specialty Physicians - Sta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NORTH SHORE NEUROLOGY \u0026 EMG LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - River Hills Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Faebris Medical \u0026 Community", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - CrystalCare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Metro Orthopedic and Sports Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pareto Population Health Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Continuum Healthcare Providers West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - RADAR EMS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Lamar Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Freya Health, LLC DBA Estero Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedWise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - KENTUCKY DIABETES ENDOCRINOLOGY CEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Trayam Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rapid City Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A Fresh Approach Psychiatric Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - ADVANCED TELEMEDICINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Briggs Family Medicine, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Aakaish Healthcare Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Myl Group Services Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Relief Anesthesia Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mechery Davis MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holon Inclusive Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Together Wellness llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - PMC Long Term Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Triad of Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Tran Urgent Care and Wellness Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Coastal Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Modern Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FAMILY FIRST MEDICAL CENTER, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Perimeter Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Appalachian Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bayou Urgent Care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Woodlake Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cohen Laser \u0026 Vision Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lawrence Han DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - EVAN LEVINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Esterlyn's House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Spark Health at Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - NayaCare Newborn Speciality Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - New York Eye and Face", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Demean Healthcare Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Rebecca A Davis FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Kelly Hooton, FNP-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Precision Spine Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Owensboro Surgical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PCMH PROVIDER CLINICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Practicare Home Care Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite Heart, Lung, and Vein Surgeon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kentwood Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Institute of Bariatrcs and L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mary Kamai, MSN APRN AGNPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Women's Health Group Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Artemis Inspired Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Ozark Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Gasper Neurology, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - HealthFinders Collaborative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Vernick and Gopal LLC-BIDCO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robert A. Breiner, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Neuropsychology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alizadeh, Ramin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Alliance Primary Care Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Health Connexion", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peachtree Psychiatric Professionals", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Greensburg Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - JUST KIDS DIAGNOSTIC AND TREATMENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Edison Foot and Ankle Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gotham City Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Healthspine and Anesthesia Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JVG Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercer Bucks Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Associates of West Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedics Unlimited", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Redefine Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spine and Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sports, Pain, and Regenerative Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Mountain Lakes Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AUBURN LASIK \u0026 EYE INSTITUTE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH COLUMBUS EYE CENTER, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ophthalmic Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - GILBRETH FAMILY MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Wyoming Medical Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wind River Heart Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kimberly Kleine FNP Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Yves J. Lafond, M.D. Internal Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - BiCity Medical Ministries, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Teledoc4kids PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MUC FB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Modern Internal Medicine Urgent Car", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - First Step House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Denver Hip \u0026 Knee Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - C. CHOW, MD \u0026 M. AZIZAD, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Grand Rounds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WOMEN'S CENTER FOR UROGYNECOLOGY \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Acute Care House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BONE AND JOINT INSTITUTE OF TENNESSEE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ITAV-NURSE PRACTITIONER FAMILY HEAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Ribera Healthcare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - INTEGRATIVE PEDIATRICS INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Line Street Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pioneer Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BTT Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Abrams Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Randolph Diabetes And Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PRIORITY HOUSE CALLS, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - NeoSleep, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MARSHALL PEDIATRICS INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Clinical Specialist, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Urgent Today", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - IL-Brilliant Women Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WOMEN'S HEALTH PARTNERS OF THE PER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health MA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health OH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eleanor Health WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Bayou Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - CURRY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MARION CHRONIC CARE, LTD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Cornerstone Professional Orthopaedi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Fleur De Lis Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Complete Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sprouting Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Na Pu`uwai", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Panchali Khanna, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wilmington Maternal Fetal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Online Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Be Well Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MVP MEDICAL CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - DILANGANI B RATNAYAKE MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ANTOINE J. ELHAJJAR, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trilogy Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiac Center of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Laflan Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lincoln Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Leestma Medical Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - TL Family Nurse Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Rogue Mental Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mystical Rose OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - True Rejuvenation Peptide and Hormo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WELL BALANCED HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Springfield Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SENSIBLE FAMILY HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Chauncey Crandall MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - HOME PAIN SOLUTIONS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - MOBILE CARE PARTNERS OF CONNECTICUT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Willow Park Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DURA MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascend Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bella Jace Center for Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALOHA INTEGRATIVE HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Axis Integrated Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alleviant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Central Arkansas Vein Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cherry Creek Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Gig Harbor Foot and Ankle Clinic LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Urological Physicians of San Diego,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - COLUMBIA FAMILY MEDICINE CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ADVANCED PRACTICE INTEGRATED HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Hot Springs Heart and Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - VF Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Midtown Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - BASTION HEALTH HOLDINGS INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pacific Northwest Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Wyatt Woodard Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CLEBURNE FAMILY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lewis Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Total Care Peds - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Grenada Adult Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mansilla Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MD Eye \u0026 Face, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - West Orange Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - DeClaire LaMacchia Ortho Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Andrea Kirk Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Morrison Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - James D. Patterson, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - La Plata Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Triad Ocular And Facial Plastic Sur", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PEDIATRIC CENTER AT RENAISSANCE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Primary Medical Care at the Crossro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Physicians at Your Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holly Ridge Healthcare, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lifetime Medical Weightloss, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Holly Ridge Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Whiteville Urgent Care \u0026 Family Practice, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southside Medical Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whiteville Family Practice, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wolinsky Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Christopher Kolobow, NP-C LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - KAREN JILL CICCARELLI, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JG NUTREND PROVIDERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - TOUCHMARK LIVING CENTERS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Hills Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fairfax OBGYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heartland Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LIV ADVANTIA DC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pacify Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Reiter and Hill PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Womens Health \u0026 Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Richard Mooney, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Portland Pain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - James W. Gough MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Isaac, Jay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CustomCare MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Lori A Thomas DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - EAST TENNESSEE MEDICAL AND SURGICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Quilted Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - THE RIGHT SPINAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hawkins Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - RAO Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Balancing Act Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elektrik Performance \u0026 Mobility", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbus Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Francis Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gabriel Pediatrics L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lebanon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMMT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - URGENT CARE XPRESS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Renew Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CLE Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - The Healing House of New Mexico", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - TENTHOUSE HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gladeview Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - All Spine Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Complete Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Barbara Hoefener, FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ERS MEDICAL ASSOCIATES OF DENTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - AKHENA HEALTH \u0026 WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Simply Well Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Ready Responders", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TLC House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Nolasco Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - James Justofin CRNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Terra Rosa Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Robert E Jackson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ronald Goldin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROSH MATERNAL \u0026 FETAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Wayne County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Life Line Community Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Daniel D. Schrader, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Juan Carlos Zubieta MD MPH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH HOUSTON DIABETES INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Plata Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Plata Urological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Interior", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Gooseberry PT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Garnet Transport Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - South Coast Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lakes Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southeast Neuro \u0026 Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - PREMIER HEALTHCARE, APRN-CNP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DIANA ESCOBEDO, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Omega Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LIVING SPRINGS WOMEN'S CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Arpai Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AROGYA FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Michael A. Quinones MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PMC - Multi-Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Andrew Goldstein, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - FAMILY MEDICINE OF MT. PLEASANT, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Georgia Endocrinology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Neurology Epilepsy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Complete Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - LAS VEGAS MOBILE CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Jeffrey T Najor MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CONGRESSIONAL AMBULATORY SURGERY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SOUTH MOUNTAIN FAMILY PSYCHIATRY, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - JOINT EFFORT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Spotlyte Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SpotLyte Behavioral Health of PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spotlyte Behavioral Health of NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Zachary Hillman DO, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Theraspeech Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - RS Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Acute Care \u0026 Wellness Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Plastic Surgery of Asheville, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fora Fertility", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Virtu30 TeleHealth Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Good Shepherd Community Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pulmonary Diagnostics and Therapeut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Assured Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - CHRYSTYNE OLIVIERI NP FAMILY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - His Beloved Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - 417 Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - UltraMed Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr En Su Casa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Institute of Surgical Arts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Sayah Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Collingswood Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Third Coast Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rainbow Pediatrics of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Grace Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ramirez \u0026 Downing MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TMSA - RHEUMATOLOGY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SALEH MEDICAL RADIOLOGY AND ENDOVAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Gutierrez Holistic Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Castle Pines Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Faith Hope and Love Midwifery Servi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ilana Brownstein, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Urgent Care TeleHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ARTIN NAZARIAN M.D., A PROFESSIONAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Logan Mingo Area Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Jimmerson Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sarasota Healthcare 168, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Highland Advanced Rheumatology and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Alchemy Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Magnolia Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Allergy Asthma \u0026 Immunology Institu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Susan Haley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - SAJ Family Practice Health and Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gupta, Brij", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - American Hand Surgery Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Health Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Health Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Health Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Great Valley Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Waymart Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - AG Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Associates in Medicine, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HILL COUNTRY LIFESTYLE MEDICINE CEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Milestones Pediatric Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - M Chavez MD SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Prime Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Samraj Med Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Vascular Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hope Health Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - CSPS 2019, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - UC MANAGEMENT GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cincinnati Allergy Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tyneza Mitchell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIRKS PHARMACY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIRKS PHARMACY AND COMPOUNDING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIRKS PHARMACY AT SUNRISE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hendrick Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hendrick Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - BREEN FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Westlake Medical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Better Life Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Stockrahm, Jon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay West Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARTNERMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - West Village OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Avail Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Health Interventions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - D. CONRAD HARPER M.D. LLC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Floyd J Barker DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Physicians' Choice Infusion Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Rajani Kollikara NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mobile Urgent Specialized Treatment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MAASHA TRUST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miguel Gutierrez-Diaz DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - DKT PHYSICIAN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Cardiac Associates of North Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - NYC Glaucoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPE COD AESTHETICS \u0026 MEDISPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DALTON MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Ashland Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - INFINITY MEDICAL PROVIDERS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hieu T. Ball, MD, MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Evexia Adult and Geriatrics Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "A NEW LIFE OB/GYN OF BROWARD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "A PLACE FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "A WOMAN'S WELLNESS AND WEIGHT LOSS PLACE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "A WOMANS PLACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ABRAMS CENTER FOR WOMEN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED GYNECOLOGY AND OBSTETRICS LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED OBGYN OF LAKE COUNTY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED REPRODUCTIVE SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED UROGYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED WOMANS HEALTHCARE SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED WOMENS CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALAN B PATTERSON MD PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALL ABOUT WOMEN, OB-GYN, PANAMA CITY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALL ABOUT WOMEN, OBSTETRICS AND GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALL FEMCARE PROFESSIONALS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ANA TAMAYO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ANSUYA KALRA MD VIP OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASSOCIATES IN GYNECOLOGY \u0026 OBSTETRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AVENTURA OB/GYN ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AVENTURA WOMENS CENTER, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BAY AREA WOMEN'S CARE OF CLEARWATER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOCA BABES OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOCA RATON PERINATAL ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BOYNTON BEACH PERINATOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRUCE S BEVITZ MD LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARLA CHAPMAN MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_WOMENS CENTER OF ORLANDO PERINATAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC194_DR DAVID S GUERRA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC195_FULL CIRCLE OF JAX OF FLORIDA WOMAN CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC198_CHRISTOPHER K QUINSEY MD OBSTETRICS AND GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC199_OSCEOLA GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC200_GRACE AND HEART OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC201_FRANK JAMES ANDRES, MD II, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC203_MELBOURNE GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC204_PHYSICIANS TO WOMEN II LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC205_FLORIDA MAMMOGRAPHY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC207_TRACY S FANSLER MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC208_MEDICAL CARE FOR WOMEN II", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC209_WOMEN'S HEALTH SPECIALISTS II, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC210_ELITE WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC211_WINTER GARDEN OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC212_FOR WOMEN II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC213_OSCEOLA OBGYN II LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC216_GENTLE HANDS OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC218_ HIBISCUS WOMENS CENTER II PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC219_WOMENS GROUP OF NORTH FLORIDA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC220_SUNSHINE PERINATOLOGY II LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC221_PREMIER WOMENS CARE OF SOUTHWEST FLORIDA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC222_OBGYN SPECIALISTS OF BREVARD II LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC223_SCHWARTZBARD, SALAZAR, FELDMAN OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC224_MIAMI WOMEN'S HEALTH ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC901_WOMENS HEALTH SERVICES OF BRADENTON LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC903_Women's Health Services of Wellington, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC999_FLORIDA WOMAN CARE LABORATORY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CITRUS PARK GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COASTAL OBGYN SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPLETE HEALTHCARE FOR WOMEN OF WELLINGTON,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CROFOOT OB/GYN CONSULTING, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CUALS MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DADELAND OB/GYN ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DELRAY OB/GYN ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR D LEBOW MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR HYLER OB/GYN AND ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR JOSE NODARSE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR STEVEN MARK SILVERS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR VICTORIA GARCIA, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR. BRADFORD WOLK, HIBISCUS WOMEN'S CARE, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR. PATRICK HERON FACOG LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR.WILLIAM G. RINCON, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Jonathan Ralph \u0026 Dr. Anila Wahid", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Robert Strathman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EFW,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELIAS J. MUALIN MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELITE GYN CARE OF THE PALM BEACHES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELITE OBSTETRICS AND GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EMERALD COAST OBGYN OF THE PANHANDLE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EMERALD COAST WOMAN CARE, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EMILIO J GOMEZ-MADRAZO MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "F R SILFEN MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FABEN OBSTETRICS AND GYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FEMALE PELVIC HEALTH CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FEMCHOICE OB GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FEMHEALTH (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Woman Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FLEMING ISLAND OBSTETRICS \u0026 GYNECOLOGY, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FLORIDA UROGYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FLORIDA WOMAN CARE OF INDIAN RIVER COUNTY,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOSTER WOMAN CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FWC OF JACKSONVILLE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GANESH WOMENS HEALTH LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENTLE GYNECOLOGY OF GAINESVILLE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENTLEGYN, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEOFFREY ZANN MD LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GRACE WOMENS HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GULF COAST OBGYN OF SARASOTA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GULF COAST WOMENS CARE OF FLORIDA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GULFCOAST INSTITUTE OF OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GULFSHORE OBSTETRICS AND GYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GUSTAVE IGEL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYN ONCOLOGY AND UROGYNECOLOGY ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYN WOMENS CENTRE OF LAKEWOOD RANCH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYNECOLOGIC SPECIALISTS OF BREVARD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYNECOLOGICAL SPECIALTY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYNECOLOGY SOLUTIONS, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GYNETOPIA,LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HALIFAX OBGYN (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEALTH SOLUTIONS FOR WOMEN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEALTHY CHOICE OB-GYN LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HERCARE OF BREVARD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HERLYNCO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HIBISCUS WOMEN'S CARE OF BREVARD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HIBISCUS WOMENS CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HIGHLANDS OBGYN, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOLLYWOOD OB/GYN ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INDIAN RIVER GYNECOLOGY, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INNOVATIVE WOMEN'S HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IVFMD USA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JACKSONVILLE CTR FOR REPRODUCTIVE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JACKSONVILLE OB/GYN, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES GALLAGHER, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JUST LADIES HEALTHCARE OF THE TREASURE COAST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KHADRA OSMAN, MD OF FT. LAUDERDALE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LADIES \u0026 BABIES OB-GYN ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LORI LAMBERT M.D., LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOUIS PAOLILLO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LUCINA WOMENS HEALTH AND MIDWIFERY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LYRA OB/GYN CARE, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "M. DELCHARCO JR. MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MADHAV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MAETOZO TOTAL WOMANS CARE LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MANATEE GYNECOLOGY ASSOCIATES LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARK SARGENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARTIN CASTANEDA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEADOWS ROAD OB/GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIAMI BEACH OB/GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHAEL TORTORELLA M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDWIFERY WOMENS CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MINDA NEIMARK MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NAPLES OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW BEGINNINGS HEALTHCARE FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW DAY WOMEN'S CARE \u0026 WELLNESS, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW HORIZONS OB/GYN OF TRINITY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW LIFE OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NIGEL A SPIER MD FACOG LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH FLA WOMEN'S PHYSICIANS OF GAINESVILLE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH FLORIDA WOMAN CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH NAPLES OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHWEST FLORIDA WOMAN CARE, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBGMIAMI, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBGYN ASSOCIATES OF ST. AUGUSTINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBGYN SPECIALISTS OF THE TREASURE COAST,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBSTETRICS \u0026 GYN ASSOCIATES OF CENTRAL FLA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBSTETRICS \u0026 GYNECOLOGY ASSOCIATES OF N MIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OCALA GYNECOLOGY ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OPTIMAL WOMENS CARE OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ORLANDO OB-GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ORLANDO UROGYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ORREGO CENTER FOR WOMEN'S HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PALM COAST WOMENS CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PAVILION FOR WOMENS HEALTH AND WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PEMBROKE PINES WOMAN'S CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PERINATAL CENTERS OF FLORIDA, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PHYSICIAN ADVISORY GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER OBSTETRICS \u0026 GYNECOLOGY OF MAITLAND,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER WOMENS CARE, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIERE OBSTETRICS \u0026 GYNECOLOGY OF BROWARD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRIME OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PROGRESSIVE WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RASNER AND BROCK, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RICHARD CONLEN MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RICHARD G HANDAL MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SARAH B KLINE MD WOMENS HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SARASOTA OB/GYN ASSOCIATES LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SEASON WOMENS CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SIMPLY WOMEN PERSONALIZED GYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH FL OB GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH FLORIDA GYNECOLOGY \u0026 WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH FLORIDA OBGYN SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STEVEN PILLOW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STUART GROSS MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUNCOAST WOMEN'S CARE OF TRINITY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUNSET OBGYN ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SW FLORIDA OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SW FLORIDA WOMENS GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SWOR WOMEN'S CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE DIEZ CENTER FOR WOMEN CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE ORLANDO CENTER FOR WOMANS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE WOMEN'S CENTER FOR TOTAL HEALTH LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE WOMEN'S CENTER OF ORLANDO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE WOMENS GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THOMAS GIBBS MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THOMAS S.WALTER, MD, OB/GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TRANSFORM WOMAN'S CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Casella Center for Advanced Gynecology,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Women's Health Institute (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNIVERSITY PARK OBSTETRICS AND GYNECOLOGY (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNIVERSITY PERINATAL ASSOCIATES, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UROGYNECOLOGY AND ADVANCED PELVIC SURGERY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unified Systems Operations \u0026 Integrations Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urogynecology Specialists of Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VAN DYKE OB/GYN LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIOLETA B CHIONG MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VISIONARY WOMEN CARE LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WELLINGTON WOMEN CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WEST COAST WOMENS SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WEST KENDALL OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WESTCOAST OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WINTER HAVEN OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN TO WOMEN OB GYN CARE,LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S \u0026 MATERNITY CARE SPECIALISTS OF ORLANDO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S BEST CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S CARE OF BOYNTON BEACH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S CONTINENCE \u0026 ROBOTIC SURGERY SPECIALISTS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH OF SOUTH MIAMI LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH OF ST. PETERSBURG, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH SERVICES OF BOCA RATON, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMENCARE OF BALDWIN PARK, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMENS CHOICE ONCOLOGY OF MANATEE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMENS HEALTH SPECIALISTS OF ORLANDO, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMENS HEALTHCARE PHYSICIANS OF NAPLES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMENS PELVIC HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "XIAO-MEI ZENG MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "YVETTE P. ANS MD, LLC (TERMED)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ZIPPER UROGYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - David E. Perloff MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ENS Medical P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Greenhouse Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Opal health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Honor Mobile Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MADHAVI PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mesa View Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - TELEMED AT HOME, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Sierra Medical Partnership", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - At Home Visit, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lincoln Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Santa Barbara Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Leah Cordovez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Parker Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Henderson Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lux Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blue Star Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brooklyn Urgent Care of Marine Park PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crescent Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care and Walk-in Medical Suite", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Coastal Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mian OBGYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Snoqualmie Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Luis G. Taylor, M.D. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - BloomHealthOnline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Priority Health and wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - CardinaLight Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Neurology Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Clear Horizons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dr. Jamila Battle, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Organ Peak Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PEDIATRIC CARE OF LANSING, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Blue Ridge Community Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Health Convenient Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Starfish Pediatric ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fyzical Therapy \u0026 Balance Center Ro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Jemericus Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ocala Hand Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ted Kovacev MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - ROSE CREEK PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - South Shore Foot and Ankle PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - OMEGAHEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - ADVANCED PODIATRY ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pulmonary Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - RAINBOW PEDIATRIC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Glenoaks Medical Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Country Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MedSurg Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NAB Life Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - A PLUS PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Premium Wellness and Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - James R. Meyer, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Danish Ali, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MAT MEDICAL ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dr. Vijay Rupanagudi - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Atlantic Adult/Pediatric Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - OFF THE GRID MIDWIFERY AND WOMEN'S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JORDAN FAMILY CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Heavens Medical, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Carolyn Yang MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CARETINUUM HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TRUHEALTH FAMILY CLINIC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Leonard J Polinski MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - St. Louis Foot and Ankle Institute,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - T\u0026T Health and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PODIATRIC MANAGEMENT ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Now INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Frank Fichtel MD, FACS Neurological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Martin, Renata MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Forget me Not Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Complete Care OB/GYN \u0026 Family Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bright Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Contemporary OB/GYN Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Rainier Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Hillside Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Interventional and Alternative Spin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mobile Medical Corporation-Employer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SERENITY CENTER FOR WELL BEING, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - LIBERTY FAMILY CARE.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cartwheel Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Fenix Holistic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CLEMENT CLINIC P.A. - Anant Vinjamo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Preventive Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Podiatry Associates of Cincinnati,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - AUSTIN MEDICAL ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Integrated Pain \u0026 Neuroscience Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mid-Atlantic Quickcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - KRONOS HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Abdul H. Abbass, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - APOLLO N. PALOMARES MD P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - RAINBOW MEDICAL ASSOCIATION, MD. P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kiddyatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Walker Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Leon J Brown Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ira K Levine MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mark A Spears MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Amanda Levey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Conservative Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Integra Clinical Services, LLC - Ga", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elite Imaging Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ortho Now", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The McGinley Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - ALPHA CARE FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Lifeview Glaucoma Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Alan Tony Amberg LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - QUALITY FAMILY PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 360 PAIN AND SPINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Rural Surgical Associates of Las Ve", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - The Foot and Ankle Clinic of Albuqu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Tele-Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - East Mark Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MY WAY BIRTH AND WOMEN'S SERVICES L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pankaj K Shah MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Housecall MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hope Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Biel Foot \u0026 Ankle Specialists, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - VINEYARD DERMATOLOGY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ACHIEVE Psychiatric Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - All About Kids Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Zeus Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Family Health and Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Autumn Road Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Talha Memon, MD Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Clear Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - David Kieff MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - CompCare Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Livi Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DORMMD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Blue Ridge Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ghaly Sleep Management Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sleep Insights", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Young Hearts of Yuma, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - PEDIATRIC ASSOC.OF SW MISSOURI LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Anne Arundel Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - John F Cary MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Complete Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - RONNIE PARKER, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Emedicine.Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Behavioral Clinicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pargol Samani Md Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - CEDAR RIDGE FAMILY MEDICINE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - David J Zoeller MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MI Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PREMIER OB/GYN GROUP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Barbato \u0026 Zbiegien MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - AMM Consulting Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Upright Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Whitney Young Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grace at Home a Member of Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Peninsula Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nilesh Chaudhari MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sanibel Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Louisville Hip \u0026 Knee Institute PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - 316 Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ASSOCIATED EYE PHYSICIANS AND SURGE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASSOCIATES IN NEPHROLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nephrology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elevation Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ADVANCED HEART \u0026 VASCULAR MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cummings, Timothy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Griffin, B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEUROCARE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DTC Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Enterprise Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GJB Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MARYLAND SPINE \u0026 BRAIN SPECIALISTS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Primary Total Care Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Gregory Neaville, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wright Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Beargrass Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Care Medical Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - GAGAN DEEP SINGH, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RUBIN SHARIEF BASHIR, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALEXANDER BREAST IMAGING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BREAST DIAGNOSTIC SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRA HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRA MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRA MEDICAL GROUP LLC-PSYCHIATRIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRA MEDICAL GROUP SOUTHSIDE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRA OBSERVATION SPECIALISTS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRAL VIRGINIA HOSPITAL FOR RESTORATIVE \u0026 REHABILITATIVE CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMG BEDFORD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMG NEUROSCIENCES CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMMUNITY ACCESS NETWORK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE BREAST IMAGING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FREE CLINIC OF CENTRAL VIRGINIA INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENERAL BUSINESS CONCERNS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Centrahealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Children Express Care Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Holy Family Catholic Clinic, P.S.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - DONNA CIVARDI, RNFA, APRN, FNP-BC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Unite Here Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Monadnock Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Robert Soucy DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - PUZZLE PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Healing Spirit Psychiatry \u0026 Counsel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - DelCare Health Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amite County Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MyHome Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Deerfoot Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TULSA DAY CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - .Mountain View Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - O\u0026W SURGICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KIDS CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ANAYA WOMEN'S OB/GYN GROUP INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Curative Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Always There Health Care P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Delaware Brain and Spine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NORTH FLORIDA PRIMARY CARE, P.L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MD Infusions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dr. Jacynia Women's Care Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - PHOENIX MEDICAL HEALTHCARE CENTER,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diagnostic Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Joel M. Davis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - SEABRIGHT HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Stayton Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gearity Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McKenzie Family Medicine \u0026 Medspa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRIME MD OF NAPLES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Spivey Medical, PLLC dba The Ready", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Northlake OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lisa A. Perryman MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cherokee Mountain Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Glow Midwifery PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Access Medical Clinic-Tennessee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASPEN CLINIC INTERNAL MEDICINE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - TENN VAX Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Radical Recovery Treatment Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Waterside Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Restore Sleep Now", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - CLARK CONCIERGE CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Primary Care Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - ORTHOPAEDIC INST OF HENDERSON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - POSITIVELY PEDIATRICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Generations Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Neurology Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPREHENSIVE PAIN CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOUNTAINS SURGICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BANAFSHEH BAYATI, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLISS OB/GYN, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Integral Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dr. Jouliana J Eager", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Concussion Clinic of South Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ear, Nose and Throat Associates of South Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedics of South Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Adult Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Family Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Pulmonology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Catalyst Neuromedical Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kids and Teens Endocrinology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Bovrick Integrated Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Obria Medical Clinic of Ames --STAR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Gibson Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Fx Spine \u0026 Performance Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pohala Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Hope Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CLAYDON MEDICAL GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Nazarian Endocrinology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - SCARLETT CUSTER, DO, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Lifestyle Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sarasota Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Tinsley Surgical, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - DOX Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Impact Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Chautauqua Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Saint Vincent's Catholic Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Bux Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - RHM Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - S.T.A.R. Orthopaedics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Hobble Creek Medical Clinic- SW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - First Step Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Better Care Clinic - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - All-N-Clusive Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jodi Brannen, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Jefferson Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Community Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jovive Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "On Duty Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Rivera Geriatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Access Medical Clinic-GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wendover Primary care, pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ASDJ LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Southern Family Practice, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Premier Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Republic Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NA MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Novatio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shazah Khawaja MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wood Cardiothoracic \u0026 Vascular Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - ECLAT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - STEVEN J. ZUCKERMAN, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - HONOR PHYSICIANS, LLC dba Advanced", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Janice G. Sadaya-Conda M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "True Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - WISE WEIGHT MANAGEMENT PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Wilson Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TALL CITY HEALTHCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Continuum Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Internists, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Reddy Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Four Corners OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Broken To Better Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Zona Physical Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fatih Ozkaragoz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pineapple Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Serenity Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Better on Call", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Mesina Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - TRIA HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Susan D Wiley, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Primary Care \u0026 Occupational", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FLATLAND ANESTHESIA AND PAIN SERVIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Best Practices HealthCare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - W. WALLACE WEBSTER, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Heartland Pulmonary and Sleep Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Aether Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - HOPE SURGICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Claro Asprec Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - G\u0026H HEALTHCARE INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - PEAK MEDICAL AND WELLNESS CENTER PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Concierge Clinicians Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Embrace FMO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Best Start Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CareExpress", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maternal-Fetal Medicine Center of Northwest Arkansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiac Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiac Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiology – Bella Vista", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiology – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Cardiology – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Center for Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Convenient Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine and Obstetrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Centerton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Eureka Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Lowell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Midtown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Southside", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Family Medicine – Tuscany Square", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Gastroenterology – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Gastroenterology – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Bridge Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Health Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Heart and Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Hospitalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Internal Medicine – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza at Pinnacle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza at Sugar Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza – Eastside", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza – Fayetteville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Plaza – Wedington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Neonatal Graduate Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Neonatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Neurology – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Neurology – Fayetteville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Orthopedics – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Pediatric Hospitalist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Centerton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Har Ber Meadows", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Jones Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Primary Care – Willow Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Pulmonology \u0026 Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Pulmonology – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Quick Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Rehab and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Rehab and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Senior Health Health at Bella Vista", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Senior Health at Schmieding", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Senior Health at Sugar Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Senior Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Sports, Spine and Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Surgical Associates – Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Women’s Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Associates of Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Children’s Clinic at Bentonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Children’s Clinic at HarBer Meadows", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Children’s Clinic at Springdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Family Clinic – A Part of Northwest Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Martinez Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neurosurgery Center at Northwest Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neurosurgery Center at Northwest Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Orthopedic Center at Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Women’s Center on the Parkway", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vein Care Center at Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Willow Creek Women’s Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women’s Health and Diagnostic Center of Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - West Alabama Womens Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ALLIANCE HAND AND WRIST SURGERY PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Equipoise Physical Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GREGORY E. STEMPKY, D.O., PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - LITTLE HOLLAND LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Flippo, Greg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - INSPIRE INTEGRATIVE WELLNESS AND CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ZAID ALJAHMI MEDICAL PRACTICE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - NORTH SHORE MEDICAL GROUP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - St. Clair Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neches Clinic, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Integrated Digestive Partners, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SleepCare Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COMPLETE HEALTH AT GREEN OAKS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Seaside Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - KEY VITALITY SOLUTIONS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MUSICK'S MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Bell Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Polin Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - SIERRA WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Don Nicholas Jr MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric I Feit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dr. Jeannie Senior Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Legacy Womens Health.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Advance Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Los Lunas Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kern Island Pain Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Triibe Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - MILWAUKEE CARDIAC CARE, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - My Nurse Now, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - BE WELL FAMILY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Fademos Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Irwin Abraham MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LOVE FAMILY HEALTHCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Salma Mazhar, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CoPilotIQ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CopilotIQ www.CopilotIQ.com", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY HEALTH CENTERS OF BALTIMORE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - K. KYLE BALLEW, D.P.M., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Bone \u0026 Joint Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jennifer Kessmann MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hometown Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WELLNESS FIRST, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Health Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Atlas Infectious Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Crew Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wellsprings Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - PRIMARY CARE AT HOME, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Grace Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Glow Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Aurora Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Alternative Integrative Medicine, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EVERYTHING SPEECH LLC DBA Ndoscopy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ROSE BOWL AQUATICS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Folx Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - FIRSTLINE TJS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Richard R Ondrizek MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Mothers and Daughters Womens Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - USMAN AHMED MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Resolute Medical Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Simon Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pienkowski MD Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Ottawa Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mainspring Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Sandra L Whisler MD, MS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DELTA GASTROENTEROLOGY, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENDO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "InFocus Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - InFocus Urgent Care - Cavi Cool Spa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Flourish Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - INFINITY HEALTH AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New Era Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ELITE CONCIERGE MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Inspire Pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Canyon Creek Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - mynurse.ai", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Hurstbourne Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Horsham Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PISCATAWAY HEALTHCARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Andreli Professional Advising and R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Associates in Health \u0026 Wellness Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hamid Mir M.D., Inc..", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - La Salud Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pediatric House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Matter Health of Tennessee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Matter Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Abidi Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - FAMILY \u0026 INTERNAL MEDICINE ASSOCIAT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lee Med Health center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIWI VIRTUAL HEALTH CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pelikan Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capital Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atracare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atracare Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Rehab Ready, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bridge Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wholistic Pediatricians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - RULA AL-AOUAR, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Aziz Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Andrew J. Hutchinson, DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Dagoberto Balderas D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - DR DAYHIM, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elder Care First, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Village Health Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Online Spine Doc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Beautiful Beginnings \u0026 Beyond", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Roxane Bremen DO, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ASK ALLIANCE HEALTHCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jan D Tepper MD DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Ozone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Miracle Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Lex Kidney Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Haven Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Health Care Center of Edina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Regional Heart Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Regional MedicalCenter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast Regional Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - UNITED URGENT CARE GROUP PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joel S Rhoton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pioneer Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Robert Hustrulid MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS MINOR EMERGENCY CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - 417 Sports Medicine And Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ability Plus Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Snowy Range Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - True U Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Trinity Psychiatric Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Gentle Care Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - BASIN CLINIC, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Diabetes Self care Management Insti", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Foyet Global Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLUESKY TELEPSYCH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ORANGE MEDICAL ASSOCIATES, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ProMed Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - CONNECTION MEDICAL CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - EJ Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - OPARA, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Wellness Connect Go Beyond Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr. Kimberly Kraus, LLC -Start Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - KANWAR IQBAL SINGH GILL, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NPMD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Community Urgent Care Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Milestones Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Inspired Spine SurgCenter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jeffrey Smith, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Mobile Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Christina Kern, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Harvey Kohn MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Redbird Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DiFranco Family Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - SURVIVAL TELEPSYCHIATRY SERVICES PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Central Arkansas Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tennessee Telederm", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - RESILIENCE \u0026 HOPE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Adriana C. Barcelo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Zoe Ann Weinstein", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rapha Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Functional Physical Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Melville Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Eclipse Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Restorative Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Breakthrough Regenerative Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Akins mobile health \u0026 Clinical cons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dunedin Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Landis Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Village of Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Care Solution, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Pediatric Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ALTA HEALTHCARE SERVICES, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Imperial Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Peds First Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Tiero LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - NEW BEGINNINGS RECOVERY \u0026 FAMILY PR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - LJ Gottschalk, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Sonia Takacs-NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Elite Healthcare Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Nicholas Becker ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Broadview Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - WELL-NATURED PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - UNITED PHYSICIANS GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - PEDIATRIC ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Dr. Katie Ostrom, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Vista Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - QUEST MOBILE VISION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Coastal Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Metrolina Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - LA Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AMG Medical Tucson LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neuro Synchrony", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sisu Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Moya Martin, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Breast Care \u0026 Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Pain Institute of Clarksville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Wind River Heart Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sleep Health MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ESSENTIALMD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Steddy Healthcare NP in Adult Healt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Dany Vexler/Medical Concierge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DR4ALL MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ross \u0026 Associates Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Rapid Care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rapid Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Advanced Surgical Associates of Nor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Delta Med Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Seasons Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - STONY POINT MEDICAL, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Beaches Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nicolas Manriquez DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jeffrey D Larson LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PJG Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "YourPath", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joint Pain and Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - INTERNAL MEDICINE ASSOCIATES OF ROC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cross River Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Space City Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LIVINGSPRING FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Midwest Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Julia Gross", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Amazing Grace Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SOS MOBILE MEDICAL CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pathfinder Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthier Way IV Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Medical Procedures of Wisconsin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - ShallOrtho, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Regional (FPC/OPC)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MIND OVER MATTER MENTAL HEALTH, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - The Insomnia And Sleep Institute of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Pain Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Women's Wellness of Southern Delawa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Berger, Jonathan B MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - FORWARD CARE FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pearl Women's Center - Main Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Uncharted Territory Mental Health S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PRIME TELECARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Alliance Senior Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS DIABETES AND THYROID CLINIC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - 4 Your Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Keays Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ENDOCRINOLOGY AND DIABETES OF GEORG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Generations Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CY Pain and Rehab PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - UNITED FAMILY MEDICAL CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Innovative Neurology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Instaclinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Bluerock Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Malibu Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Charles E. Baldwin, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Astra Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Synergy Integrative Headache Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Danielle Hohm FNP Family Wellness C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Purcell, Kulnarin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HomeTown Family Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER PEDIATRICS OF INDIANA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Prairie Winds Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southside Pain Specialists, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Winning Health Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COMPLEX HEALTHCARE OF DES PERES, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Olympic Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Kaufman Allergy Asthma and Immunolo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Atlas Pain and Spine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Family Medicine for Health Equity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ReclaimAbility Pain Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Minot Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - TREE OF LIFE INTEGRATIVE FAMILY MED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Geaux Fight Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Vital Care Endocrinology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - FISHERS DIRECT FAMILY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - World Spine and orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ali M Alsaadi, M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - COLLABORATIVE PAIN MANAGEMENT, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Neurology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Infectious Diseases Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Urosouth PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kidz Planet Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Caring Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wells Collaborative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Solid Rock Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CIRCLES HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Practice of Litchfield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LITCHFIELD LASER SKIN CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Reside Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Atlantic Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - NORTH COUNTRY PHYSICAL THERAPY \u0026 WE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - CANDYCE WILLIAMS, M.D., P.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Mizell Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Pooja Amy Shah MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - LAWTON GENERAL SURGERY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Cannabis Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Katherine Kemp dba Legacy Behaviora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Valence Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Life Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BEVERLYMEDICAL SLEEP CENTER \u0026 NEURODIAGNOSTIC, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Island Time Medical and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Holistic Whole Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cederquist Medical Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - SPECIALTY EYECARE OF SOUTH ARKANSAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Princeton Ear, Nose \u0026 Throat, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FIX ME MD P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Willow Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - DR. NICOLE KEARNEY L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CAROL PAPPAS MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - VERTRAE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Quality Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Down Home Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Wells Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Destiny Total Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAMPBELL UNIVERSITY HEALTH CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHILDREN'S NATIONAL CARDIOLOGY RICHMOND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marshfield Medical Center-Dickinson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SIA-Specialty Infusion LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mindful Behavioral Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Joy Rich Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Pivotal Care Partnership", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - INTEGRATED HEALTH \u0026 WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wadatika Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - CANTON OB-GYN GROUP P.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Thomas P Melancon, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Athens Surgery Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JASPER SURGERY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEWNAN SURGERY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHEAST GEORGIA SURGERY CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHERN PAIN AND SPINE ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Injury Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bulverde Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CORE - NAO - ANSS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Bone and Joint Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic \u0026 Spine Centers of Wisconsin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Center of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Ortho \u0026 Philadelphia Hand to Shoulder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Swift Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The CORE Institute MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MICHIGAN PEDIATRIC ENDOCRINE AND DI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - K \u0026 L Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Arise Behavioral Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Southern Family WalkIn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Cody Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Thrive Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - REVIVEMD305", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - BLUE WATER CHILDREN'S HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jose Castaneda MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Nurse Midwife", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Bear Creek Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jesse C. Delee MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Personalized and Restorative Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Jennifer Steel - start up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Richard Michal,M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Sound Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Strong Mental Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Pines ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Highland Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - CKZ Direct Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - COMMUNITY CARE RESOURCES INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - THE WHOLE-ISTIC YOU, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GVMC Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Colorectal Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier E.N.T.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Hematology Oncology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Internal Medicine and Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Physical Medicine \u0026 Rehabilitation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Primary Car", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Sleep Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Thyroid \u0026 Endocrine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ronceverte Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Goodman, Samantha", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Allen Massihi Podiatric Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Xiao-Mei Zeng, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Health And Glow Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Chapmanville Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AJRC_Arthritis \u0026 Joint Replacement Cntr of Reading", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AOOR_Advanced Orthopaedics of Reading", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COA_Commonwealth Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KSP_Keystone Spine and Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Keystone Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anderson Hills Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - New Image Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - RIVER OAKS PRIMARY CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Tidewater Lung and Sleep Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Sedgwick County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EAST BAY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mint Mobile Nursing Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Global Psychiatric Services, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Womens Pavilion of South Mississip", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cornerstone Centers for Wellbeing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cornerstone Palliative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Dynamic Rehabilitative O \u0026 P Svcs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MasonDixon Mobile Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - NOWAK ORTHOPEDIC ASSOCIATES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - DiabesityMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Center For Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Magnolia Gynecology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - A to Z Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MAIN STREET PODIATRY, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A\u0026M Wellness Internal Medicine Prac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hispanic American Pediatrics \u0026 Fami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kinetic Comfort, Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Premier Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Ryan Weight", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - New England Hospitalists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Central Ohio Ophthalmology Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HECTOR R. TREVINO, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Rohini Ramamoorthy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Michiana Adult Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - FRANKFORT FAMILY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Chivic Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Creative Care Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - DAISY FAMILY HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Bateman Horne Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC001_CENTER FOR WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_CHESAPEAKE WOMENS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_COMPLETE WOMENS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_GYNECOLOGY SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_OBGYN SPECIALISTS FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_OBSTETRICS AND GYNECOLOGY ASSOCIATES OF HAMPTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC007_PENINSULA WOMEN'S CARE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC009_THE GROUP FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_TIDEWATER PHYSICIANS FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC011_TOTALCARE FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC012_VIRGINIA BEACH OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC013_VIRGINIA CENTER FOR WOMEN, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC014_WOMANCARE CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC015_WOMENS EXECUTIVE HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC017_MIDATLANTIC WOMENS CARE IMAGING CENTERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC019_PHYSICIANS TO WOMEN, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC020_HARRISONBURG OB GYN ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC021_WEST END OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC022_WILLIAMSBURG OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Unified Mid-Atlantic Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Spring Tide Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - The KindCare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Surgical Consultants of Northern VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Griffin, Marcus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE FLOATING HOSPITAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - NC Comprehensive Headache Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Anshu Gupta MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Valor Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hernando Family Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - RVA Allergy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Unitedhands Health \u0026 Wellness Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Next Level Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Humberto Barrios", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VIVE Med Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Perfect Lifestyle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Cham Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NUNEZ MEDICAL SERVICES PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Riverside Family and Lifestyle Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - North Laurel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - LOWER MANHATTAN MEDICAL CARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - A.R.K. of Mahogany LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Concierge Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JennMobileMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HOMETOWN HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Monogram Kidney Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Beachside Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kenkora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Cloudberry Care Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Next Level Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Kingdom Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Western Kentucky In Home Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Wonderful Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - CN Internal Medicine MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - WILD HEART MEDICINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Peninsula Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GOMED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GOMED CHARLESTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Medihealth Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENESIS CENTER FOR WOMENS HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SkyHeart Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Dialysis Associates of Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - THE VILLAGE PEDIATRIC AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dominion Health Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PATHWAY TO WELLNESS HEALTHCARE CENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - BRANDYWINE RHEUMATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Medical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - ASPEN FAMILY MEDICINE, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PERFECT FORM CENTER FOR WELLNESS \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Lotus Recovery Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Moon Valley Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - INTEGRATIVE WELLNESS CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Joy Midwifery and Women's Health LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - INTEGRATED MEDICAL HEALTHCARE SERVI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Aoun Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Origin Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Quillin Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bonte Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lexington Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midtown East Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Psychiatry Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texpress Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Germane \u0026 Wise Mental Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NEUROSPINE PLUS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CLARKE LEW MEDICAL CORP.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEXTGENDOC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Steven H Suchman MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - MOBILE PHYSICAL THERAPY SERVICES IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Eucalyptus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nurse Practitioner of Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - A RICHARD MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Mansoor Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - THE BELOVED MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CONSULTANTS IN CARDIOVASCULAR MEDIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Amit Sharma MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Town Country Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - BRUCE L. FELDMAN M.D. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Downing Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Andrea VanEstenberg - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ASMA RASHID MEDICAL P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - UPTOWN CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Gazenko Surgical Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Matt Kinghorn NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - ASPIRE HEALTH AND RECOVERY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Melanie Marin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TaraMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - OXFORD VALLEY MEDICAL PRACTICE, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ronan, Arthur", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Healing Housecalls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ARNP Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Women's Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - A. Stivers AGNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JEROME P. LISK, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Pediatrics at Rock Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - All Heart Pediatric Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kelly Reynolds, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Alliance OBGYN (Dr. Raju Start-up)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE DOCS HERE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENDOCRINOLOGY, DIABETES AND BONE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sonia Ponce MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - VITALITY WELLNESS AND MEDSPA, P.L.L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Premier Internal Medicine Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Mississippi Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CARE PLUS FAMILY CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Chu Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Area Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Southern Kentucky Surgical PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Tight Lines Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Associates Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Pain Management Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Choice Medical Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Coreil / Smith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cornerstone Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Integrated Health \u0026 Wellness Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CONNIE PHAM, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Premiere Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAPPI Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Generations Ahead", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ankle And Foot Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Virginia OrthoNeuro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Trocki Plastic Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - PAMELA A. KURTH MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAMILY MEDICINE AND SKIN CARE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MEDICAL EXPENSE DIVISION, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Jamii Birth and Wellness Services,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Health-e Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pediatric Associates of Denham Spri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Northland Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Meridian Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Light Year Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MK SPINE AND JOINT REHAB, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER SURGICAL AND PREMIER VEIN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cortez Foot and Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cortez Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Hartvigsen, Erik", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sommers, Andrea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Enso Behavioral Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Enso Behavioral Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Monarch Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Spring Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Spring Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Podiatry House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Montana Affinity Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - OnCall Health of NJ, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Louis A. DiToppa DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - IDENTITY, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Preston Family Medicine Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Angela Mittal MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Star Bright Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Starlight Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mashanda's Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dennis Nwachukwu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TAMMY WAGSTAFF, DNP, APRN-CNP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Mauck Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LIVE URGENT CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Michelle Sanderson, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EXORDIUM MEDICAL GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NG HEALTH SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Infinity Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - ISLAND MEDICAL AND BEAUTY CLINIC, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Asara PT \u0026 Balance Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Washington Hills Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - ML Pulmonology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - HOOS PEDIATRIC \u0026 ADOLESCENT CARE PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Cathy Polk ANP Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MAGNOLIA RHEUMATOLOGY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ElderHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Joseph H. Neal Health Collaborative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - TELEPERINATAL INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Caring Hands Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Morris Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ENT SPECIALISTS, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LEENA BENOY MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - F. Michael Gloth MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - K MEDICAL ASSOCIATES PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Julie K Riley DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Boaz and Albertville Family Care LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Shape Shifters Weight Loss and Join", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Altruistic Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Patrick Digenova MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ORTHOPEDIC ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clintonville Foot \u0026 Ankle Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Desta Anthony MobileNP Adult Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Chandra Ake APRN-CNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Glomar Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Christie Carr FNP - SOLE PROP.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - 24/7 Doctor LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - MAIN STREET FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Choices Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Tru-Integrity Wellness and Counseli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Total Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Missouri River Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Wound Care Consultants, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - HAYNER INTERNAL MEDICINE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Children's Brain Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NOVA Access Surgery, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - FLEUR-DE-LIS WHOLE HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ANTELOPE VALLEY IMPOTENCE AND INCON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dee L Hubbard MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Revitalist Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Freedmen's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RE3 HEALING AESTHETICS AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RE3 INNOVATIVE NEUROSCIENCE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Universal Neurological Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - NP Family Care of Rochester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sandra S Kwak MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DR. MAJEED'S HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SOUTHERN TEXAS NEPHROLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Central Bucks Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Destiny Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - HOUSECALL PROVIDERS OF OKLAHOMA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Complete Care Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - 3P4Care LLC Avondale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HEALTHY GENERATIONS COMPREHENSIVE C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Parth Bharill, M.D., L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Foot and Ankle Institute of San", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Doctor USA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AAA Family Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Headache Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Todd W Ulmer MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspire Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRANDON NGUYEN, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orange County Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Baytown ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Peavine Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - STRAUN HEALTH AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JOY ACKLIN, D.O., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Tasha Walker FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - SMCCS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Archer Pediatric and Medical Consul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ob/Gyn Specialists Central Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DFW Sports Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mary Free Bed Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Circle of America", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Pure Life NM, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Betty's Co.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Preeminent Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gentle Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Soledad Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Essie MB Smith Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - New Dermatology Group, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Federal Comp \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Practice Psych Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Advent Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENDOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - OB/GYN Care Of Bay Ridge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Immediate Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neighborhood Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PATRICIA TAN, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gonzalo Gonzalez Martinez MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mederapy Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southeastern Cardiology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cookeville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diana Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diana Health Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diana Health Smyrna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Diana Health Springfield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LEGS Therapy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PRIMARY CARE CENTER PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Sozo Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Women's Health Of The Emerald Coast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Gatehouse Psychiatric Solutions - S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gelvin, Christopher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ali M Carine, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Weight Management Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Indus Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - GeaCom Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Your Optimum Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - LGM HEALTHCARE SERVICES \u0026 AESTHETIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - See Baby, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Buttercup Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vital Pediatrics for Complex Kids,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Center for Integrative Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Practice of Health of Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dina Casparro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Verdigris Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MCCAMMOND FAMILY MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Marco R Corallo, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Viva Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Mother Nurture Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - North Star Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Olga L. Saavedra MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Chambers \u0026 Blohm Psychological Serv", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Compassionate Family Health Care, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - David J Corallo, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anywhere Mobile Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Stuart Lerner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hurdle Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - With Open Arms Reproductive Healthc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Heights Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDWM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PHMG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mind Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Craig G Haber MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - FAMILY HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alonso and Barroso MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orange Care Group MSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Susan Lurie MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Solanki Cardiology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kidney Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Springs Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NEUROLOGY PARTNERS PROFESSIONAL COR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Meraki Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - FRONTIER WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WINTON HILLS MEDICAL AND HEALTH CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Project Vision Hawaii", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Utah Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - New Age Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kidney Solutions Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PROACTIVE MD OCCUPATIONAL HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Proactive MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NorthShore Weight and Metabolism", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - FIRST PRIORITY MEDICAL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Infections Limited East PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Universal Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mission Gastroenterology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Charter Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Range Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - MMS Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BCI AM HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Mobile \u0026 Virtual Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Community First Therapy and Consult", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brave Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rosenbaum, Shari", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - DEEP WELL HEALTH CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Health Advisors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Desert Sky Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Fretz, Jennifer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - SOUTHERN WV MEDICAL AND SURGICAL SP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ronald Laracuente MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Quality Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wilson Psychology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Integrative Pain Institute In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Whitfield Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Pristine Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arkansas Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ACCESS2HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hospital Authority of Candler County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Aileen Siliado NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ABRA Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Faith Solutions to Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Shoal's Family Practice Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Licensed to Solve", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MATHIS HEALTH CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Margaret I Dauphin-Van Dyk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Nee / Yamane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Coastal Primary Care \u0026 Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Two Rivers Urgent Care And Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - HORIZON HEALTH MANAGEMENT \u0026 CONSULT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Evangeline Butler NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hooked on Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jasper County Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ORTHOREHAB LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Woman's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastside Gynecology \u0026 Obstetrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Obstetrics \u0026 Gynecology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paint Creek OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Angela Wyatt Dermatology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Telehealthkare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Visium Health Link", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MOBILE DOC FL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - NOVASTAR FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Vitality Med PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NT CONCIERGE THERAPY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - McWha, Kenneth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Regional AHEC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MNS3", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vernon Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sprouts Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - PHILLIPS HEALTHCARE A NURSE PRACTIT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Borum Family Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Unicoi County Medical Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - INGENIOUS HEALTH SOLUTIONS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florence Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Renaissance Physician Partners with Florence Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Tara Gynecology OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - VASCULAR CENTER OF THE MIDWEST (VCM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Primary Convenient Care Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brain Initiative, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Hampshire Neurology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Eastside Family Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Leo Express Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - KBA PHYSIO REHAB, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Charles Haddad MD PC dba Clifton OB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lexington Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Revolution Medicine Health and Fitn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Symphony Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Ocoee Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Luxe Life Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Petals Behavioral, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - The Womens Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Medical Group -Porter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Anointed Nephrology \u0026 HTN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rightway Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Spring River Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - LibertyMed Health Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - DIVERSITY HEALTH CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - MAGNOLIA BARK WOUND CARE SOLUTIONS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Womens Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Triple C Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Orcas Island Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Laurel J Mehler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Marion Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Scott Incorporated DBA Valley Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Tamarack Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Painted Rock Family Medicine, LLC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - INFINITE NEW DAY COUNSELING AND CON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Womens Integrative OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ONCALL MEDICAL MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - RBS Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Lyman Orthopedics, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - KIWI VIRTUAL HEALTH CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Global Family Medicine and Urgent C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Serendipity Associates Mental Healt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - SPS Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Saving Lives, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - John D Sutton MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - BERNARDO A ROJAS II, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mark Endicott, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Radiant Path Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - COVINGTON EXPRESS MEDICAL SERVICES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Bluegrass Wound Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - DANIEL NORMAN, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sunstone Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Desirable Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - REGIONAL INFECTIOUS DISEASES AND IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - DPDNP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Prevention Point Pittsburgh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Freedom Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Dr Karen Swarts MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Next Generation Family Practice- WV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Amy Gerhardt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - GOOD SAMARITAN FREE CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Abundant Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - SALUTI SPORTS MEDICINE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALI ALSAADI MD \u0026 ASSOCIATES, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Niese Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Embrace Womens Health and Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Dr. Jerry Greenberg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - STOP Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SOUTH ORANGE AVE MEDICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Fiddlehead Pediatric Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Stop Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Trinity Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wood Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MyHealth LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Fakhouri / Gandhi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ENDOMETRIOSIS TREATMENT CENTER OF A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CASANOVA PHYSICAL THERAPY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Advanced Neurology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ali Mahmood MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Yengeh Urology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Breast Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Coastal Naturopathic \u0026 Acupuncture", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Christopher A Trojanovich", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - GMD Nurse Practitioner Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NorthStar Health Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pinnacle Behavioral Health \u0026 Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Joel S Leifheit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Direct Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Leela Integrative Medicine Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Rosalind Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steve Sikorevich, MD and Iryna Polyakova, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - RHEUMATOLOGY MEDICAL CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Prit E Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Surgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Craniomaxillofacial Surgery Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Duncan Garcia, Stephanie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Shenandoah Medical Care Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - DR. NESBIT, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sunnyvale Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Comprehensive Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - David Vargas Lowy MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lakeshore Concierge Medicine, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gastro Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lifetime Medical Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Panama Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - FOOT \u0026 ANKLE SPECIALISTS OF INDIANA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Christopher J Wenner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Focused Life Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Matthew Roller, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Heale Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hillside Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Hillside Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MEDICAL CARE ACCESS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - In Town Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Contemporary Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OneMed Lake Nona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Midwest Spinal Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Drews Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Roger J Hucek MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Progressive Child \u0026 Adolescent Gast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Inanna Care LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EP Health and Wellness, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Camille Fleming", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DCOL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vinod K. Valiveti MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Tigris Nephrology, PLLC- Shahid Cha", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Karma Internists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Elkhorn Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - FAMILY MEDICINE OF NORTH HAMPTON, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dr. Alkhafaji Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Obur Health PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Megan McCarthy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Family Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Jireh Health Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Chanda-Kim, Mousumi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wimberley Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Thrive Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Goddard Medical, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - FLORIDA CARING CARDIOLOGISTS, PALM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - UniHealth Counseling and Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Melissa Gutierrez MD, Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Caring Hands Children's Clinic II", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Family Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - PINNACLE HEALTHCARE SERVICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Erin Craig, PNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - ASH FAMILY MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Elevate Physical Medicine and Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - AMG East Dundee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Old Fort Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Rapid Results Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Lambert Medical Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Zuwa Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Apex Family and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Surprise Family Medicine, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rotacare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Plastic Surgery, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - WellTech Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bayen Medical Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JC Lewis Primary Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ARUNDEL GREEN HEALTHCARE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - COLLEEN D. BROWNE, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Southern Arizona Allergy Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Grace Family Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Holistic Life Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Camrock Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Black Mental Health Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Solutions Family Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Grace Home Based Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sun City Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Caledonia Community Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kaze Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Pain Relief Group of Hartsville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kids First Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HEALTHY OPTION CLINIC, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kelly Fordyce MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Restorative Biotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - NIKHIL VERMA MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Seattle Street Outreach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinic of Hope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - New Day Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALPINE CARDIOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Gordon Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Diversified Concepts in Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - John B Clemmons Jr MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Rivka Ann Sanders MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Practice Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Awilda Marrero LaBonne PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hattwick, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - KURT KESSLER, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Kenneth D Watkins MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana Cardiovascular and Thorac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - True Health NW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Grabel Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Level2 Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neurology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ROBERT A FRISENDA MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Diabetes and Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Torreya Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Troy Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SUPREME ALL CARE HEALTH AND WELLNES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - LIFE LONG CARE OF NEW LONDON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Duggar Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - HomeSight Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Helping Hand Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Parkview Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - FOCUS PARTNERS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kidney and Dialysis Specialists of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - BREASTFEEDING SUPPORT \u0026 WELLNESS, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - MOORE ORTHOPEDICS AND SPORTS MEDICI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Abyssinia Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Recovery Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Haven Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Transitional Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Vitality Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mercie Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Zia Infused Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EDWARD D. CLARK, M.D. II, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bay Street Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - STEPPING STONES PEDIATRICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Pediatric Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - M.Y.K. PSYCHIATRY LIMITED LIABILITY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SYNERGY NEUROPSYCHIATRY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wiregrass Direct Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Allergy \u0026 Asthma Of Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - InTouch Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Shared Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Providence Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Wheat Ridge Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Community Health Ministry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - EXCELL FOR LIFE FAMILY CARE AND PED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Fontainebleau Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Alchemy Apothecary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - First Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - DISCOVER U HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Maverick County Family Med Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HOWARD COUNTY FOOT \u0026 ANKLE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Beyond Measures Rehabilitation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Spencer Convenient Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Maverick Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Miguel A Rodriguez DPM Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Specialists of Northern New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pulmonary and Critical Care of NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - PORTLAND PAIN SOLUTIONS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Advanced Medicine Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Cardiovascular Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Berkshire Center for Whole Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Youper.ai", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Rapha Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Ob/Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MAEZ Integrative Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - LAROUGE HEALTHCARE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - McComb Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lubbock Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Essential Home Providers LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Beyond Well Woman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ravindranath Shahane MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TEAM CLINICS AH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Elysian Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hutzel Women's Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - DAVID B. WOLF M.D.P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Creighton University School of Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Jonathan Barrus Do Pc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Alpine Integrated Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Riverside Gyn, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - COVID Response Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Natalie Roman - Start up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Mind And Body Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - THERAPEUTIC HEALTH AND WELLNESS, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Shady Cove Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - MOUNTAIN VIEW NATURAL MEDICINE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mobil Lab For All, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Kenward \u0026 Dr. Kalstone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Debra G Kenward, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Kim Adamson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Carmical Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - South Denver Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Advanced Community Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Semaj Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Winchester Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Caton Family Physician Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Minute Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Sandia Foot \u0026 Ankle of Albuquerque", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lehigh Valley Osteopathy for Everyb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - THE COVINGTON CLINIC, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - First Behavioral Health Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BETHESDA INTERNAL MEDICINE PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Neurological Associates Augusta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - TUCKER MEDICAL CENTER, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Charles A Lively MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Memorial Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ivy League Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ARLINGTON DEPRESSION TREATMENT CENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Mountain View Mental Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - SEE Alternatives Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Care and Cure Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - A Mindful Path to Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Theodora Kulesza-Galvez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PREMIER MD PLUS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nelson R Kalaf MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - DARYL J. CALLAHAN, D.O., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pediatrics At Murphy Road", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Psychiatry Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pineridge Obstetrix \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Daniel Rowady", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - TD MD Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - EZ TeleMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Peace of Mind Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Tulio Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Diego Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - The Center for Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - New Beginnings Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MindDemand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Agni Clinics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Rophe Free Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Schroer Medical- Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ruths Place Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Care for the Homeless", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pinnacle Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Lung Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central City Integrated Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Neighbors Along the Line", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Orthopedics Northwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Janneth M Jaramillo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joan L Bergstrom MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Swan Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Awaken Wellness NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bluewater Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GLFHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Next Step", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Karis Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Primary Health Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Gamble Family Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Carriage Town Ministries Health Scr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Spartan Street Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - JOEL P. MASCARO, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optimal Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Seasons Midwifery and Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Women's Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Imaging Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - FIG HEALTH PEDIATRICS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS PAIN INTERVENTION CLINIC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CTR FOR MFM AND HIGH RISK PREG PRIVATE PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sakura Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Syeda H Zahedi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Good Habits Nutrition", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pearl Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Goldberg Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Miami Children's Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Trinity Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Costner Care Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Augusta-Aiken Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Augusta Orthopedic Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Foot \u0026 Ankle Specialists Of NY \u0026 NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Hamaker, Allen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - SIOUXLAND ADULT MEDICINE, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Waller Pregnancy Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prestige Clinicians LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Big Sky Orthopaedics and Spine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Memorial Medical Group of South Flo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - ELITE WALK-IN CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Plan A Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - PAUL J PAWLOSKY OB-GYN, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ROOT ORIGINS HOLISTIC MEDICINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DPC HEALTH CLINIC SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Whole Health Integrative Medicine o", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Empowering Eve Midwifery LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Volusia Volunteers in Medicine-athe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Magnolia Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Johnsen, Samuel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - N2U Nutrition and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - CareTeam Health SC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pivotal Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIDNEY AND HYPERTENSION ASSOCIATES OF DALLAS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH TEXAS KIDNEY DISEASE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VILLAGE PEDIATRICS OF ST. AUGUSTINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - OLIVE TREE INTEGRATIVE HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ener Drip IV Infusion \u0026 Med Spa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Primary Care For Musculoskeletal In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Health Care Solutions, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - ROOTED IN WELLNESS FAMILY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - UNITED MEDICAL CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Southwellness Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - PERSONAL CARE ASSOCIATES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Freudenthal Primary Care at Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Excelsis Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Paragon Medpsychiatry Services, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Rescue Mission Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "STL PLASTIC \u0026 HAND SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TIMOTHY W TOLLESTRUP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Annette Kleinhenz NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Complete Feet Care LLC- Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Natalia Caraballo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - APPLEGATE MEDICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regional Brain and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Hope Family Therapy and Consultatio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Kona NP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Sleep Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NEWU WELLNESS L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Molokai Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NORTHERN MICHIGAN PSYCHIATRIC SERVI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - XR Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Conroe Ambulatory Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Lakes Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gift of Health Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sheena Spielberg - Start Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cahaba Concierge Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Geri Young LLC - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Impact Primary and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Parker University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Align Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Peak Telemedicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - For the Love of Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MANSFIELD MISSION CENTER, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brianne Gober MD - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wellness and Preventive Care of Sou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Concierge Cardiology and Int", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hunter, Bradley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Finch, John", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Mount Washington Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Kids Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OLYMPIA INTEGRATIVE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Health/Capital Mens Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Victory Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Harkness Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Delavan Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - RACHAEL C. TERRITO, NURSE PRACTITIO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Discovery Mental Health Services PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Boyer Medical Solution", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Unaiza Hayat, M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - ALLHEALTHMEDICALGROUP.COM PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GLOBAL PSYCHIATRY AND PSYCHOTHERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "REJUVENATE MEDSPA/DR. Z GREEN THERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Union County Pediatrics Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Elevated Medspa Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Melissa Hurd Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Best Life Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Village Health Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Heart and Soul Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Clifford Mevs MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pearl Girl Clinics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pearl OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Telescope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspire Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Georgia Bone \u0026 Joint Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Riverbend Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Millsaps Athlete Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Salus Homecare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RADIANT SURGICAL SPECIALISTS OF NOR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Physicians Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Regenerative Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Best Practice Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - THE JOY OF NURSING LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dawson Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - WILLIAMSBURG FAMILY MEDICINE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - dantplace, LTD. CO.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MONTEGA FAMILY MEDICINE PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Dubois County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Commonwell Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Associated Orthopedists of Detroit,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Psych Pointe LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - VITA HEALTH SERVICES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ALAN G. POCINKI, M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Milford Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - William N Pelton, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Optima Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Regeneration Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Shoulder, Hip, and Knee In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountcastle Medical \u0026 Med Spa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bucks County Women's Wellness- Star", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Telehealth 1st", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Trident Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Sharon City Health and Wellness, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KRYSTAL FAMILY CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Roanoke Partners in Health, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Thrive Mind Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - New Diagnosis LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Marin Advanced Wound Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rheumatology Clinic of DFW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cultivate Mental Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Diego Concierge Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Internal Medicine of Ventura", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Westar Obstetrics \u0026 Gynecology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Main", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Integrated Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - On-Site Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Cape Supportive Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - HEC Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - cAARe Health Enterprise LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - The Alabi Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - DOCTORY360, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Advanced Practice Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ASHLEY CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PULMONARY, SLEEP \u0026 INTERNAL MED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - ROOTED HEALTH AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Daniela J. Schupp MD PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS INTEGRATIVE WELLNESS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pura Vida Health Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Harmony HRT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Doctors House Calls of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - REDWOOD FAMILY HEALTH CENTER PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Schirmer Psychiatric-Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - eDoctorly PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Premier Mountain Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pediatric Pulmonology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced EyeCare Medical Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Extraordinary Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BECKERMAN WOMEN'S HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Apple Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neshati MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Life Pediatric Endocrinology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Aaron Patterson, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cristian Guare NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Practice \u0026 Screening Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clover Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clover Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Arete Family Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - THE MANA CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Harmony MediCall Spine Sports\u0026Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Joseph Condon MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Trusted Medical Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Mayeda Gynecology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HEMAL PATEL INTERNAL MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Douglas R. Schumacher M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kidney Clinic of North FL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Nick Davis MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Susan Phipps LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - My Pediaheart Care Partner Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Susquehanna Family Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ORANGE COAST CARDIOLOGY MEDICAL COR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - KD MEDICINE \u0026 WELLNESS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Oculofacial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Compassion Medical Group PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wellcare Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AOC Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - NWCARE INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pinnacle Wound Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Sleep wellness clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HB Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Nurse Practitioner Services of Mich", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tallahassee Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tallahassee Memorial Family Medicine Perry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Transition Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MEDICINE REIMAGINED DPC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Vascular Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - United Surgical Associates of Kansa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Colorectal Experts, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Appalachian Mental Health and Addiction Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Royal Treatment Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BAYSIDE GYNECOLOGY OF MARYLAND LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Health Center - Miami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Health Center - Orlando", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - CHARLES H. WILKENS, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Alpha Omega OB GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Avenue Medical Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Comprehensive Primary Care Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Armadillo Medical Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr Thomas Hong", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MENDING MINDS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrated Health Care of South Flo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. James Guzzo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Free World Medical P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Legend Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "United Care Team", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sports Medicine and Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NP House Calls of Massachusetts LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tempus Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Garden State Rheumatology Consultan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Star Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Treat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "XpresCheck", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prime Medical of Manatee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - METHODIST HEALTH SYSTEM FOUNDATION,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Foot \u0026 Ankle Center of Tex", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St Albert Family Clinic and Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Homeville Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Indi Heart and Mind Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Bone and Joint of Texas, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Suzanne Lowe CNM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AccessMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Beyond the Scope Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Joel Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Redmond Medical and Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Memory Health MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - THR Pediatrics \u0026 Wellness Center, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Square Knot Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Strong Roots Health Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Starling Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Mountaineer Wellness and Recovery C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - URGENT CARE EXPRESS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Capital Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DMM Medical Consulting Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Livewell Health and Hormones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - LSR Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nayyara Dawood MD Pediatrics Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Live Oak Family Practice - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Foot \u0026 Ankle Specialists of Car", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kidney Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Stanford Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Bradley Bibb Md Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Saratoga Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ISABELLA URGENT CARE, P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Everybody's Health Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PEDIATRICS FOR ALL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Family Health Psychiatric \u0026 Counsel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fort Worth Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Seaside Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Lafayette Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Simply Renew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Channan, Gitanjli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Patrick J O'Malley MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sulcata Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sunti Srivathanakul MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VIZAVEE URGENT \u0026 PRIMARY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Atria Physician Practice New York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Hillsdale Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthcare at The Grove", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Guardian Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Primary Care at Home of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Roufaida Al-Misky - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Medicine at Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Enhance Center for Interventional S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - TURNER HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wellsource Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Crazy About Kids Pulmonary Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ogeechee OB/GYN PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - KK NP IN ADULT HEALTH, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Array Behavioral Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Array AtHome", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COUNTY LINE HEALTH CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Forefront Telecare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - North Hills Health and Wellness, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wondermed LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Frederick Internal Medicine and End", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Heart \u0026 Soul Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Rutgers Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - FAMILY SERVICE OF GREATER BATON ROU", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Edna Munoz NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ANTONIADES SPINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Acosta Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - BWELL MEDICAL AND WELLNESS CENTER L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Doctors Bailey \u0026 Kleeman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Doctors Bailey \u0026 Kleeman LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MEDCARE CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - PALLIATIVE SUPPORT CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Wolff Orthopedics and Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Womens Health and Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dominion Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Coastal Empire Orthopedics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gilvydis Vein Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Illinois Vein Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - EULA DOERING, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - DAIGNEAULT FAMILY CARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texarkana Senior Care Clininc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - New U Women's Clinic \u0026 Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FAMILY PRACTICE ASSOCIATES AT HAMIL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Wolpoe Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CRAIG RANCH ORTHOPAEDICS AND SPORTS MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Leila H. Zackrison, MD., P.C. DBA O", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Richard J Lavoie MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nishikawa \u0026 Lowe Surgical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Tamar Counseling Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Johnson Health Solutions, PLLC (Nei", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - North Baldwin Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Russellville Holdings, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Mary's Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Mary's Primary Care Network, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MISSION FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Rheumatology Care of Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - DRAGONFLY PRIMARY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Montes Weight Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Maureen C Persin DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - PAIN \u0026 ADDICTION MEDICINE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Centerstone Health Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIDA HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pediatricans of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Janet T Guisinger MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - NEURO-VISION THERAPY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Select Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FAMILY HEALTH CARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Georgia Mountain Endocrinology Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Transitions Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - AlphaCare Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Springview Counseling Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHAEL D. MELLO, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "W David Mello MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kidney and Hypertension Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MAJEED PADUVANA, MD, FACP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Eastside Total Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Landmark Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Golden, Flavia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Fortis Orthopaedic and Sarcoma Grou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chavez Complete Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - FRONTIER FOOT \u0026 ANKLE SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Metro Podiatrists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Clinica Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Care Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HealthyU Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Maria Truss, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALLIED INTERNISTS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - L. Michael Sterenberg, D.O. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Amanda Winston MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stay Healthy! LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - TruMediq", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Patricia Trnka-Stone FNP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - LifeCycle WomanCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Selah Comprehensive Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Beach Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Vascular Care Connecticut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrative Direct Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pediatric Orthopedic and Scoliosis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Monmouth ENT Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Paul Perryman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mobile Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Manchester Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Surgical Assistants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Wayne P Franco MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - FGM Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Carl J Mattia DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Helios Telemedicine for Men", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midland Medicine PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Ashland Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - VANISH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Big Country AIDS Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Nixxi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - V Sutton Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Optimize You LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BHWC-REJUVENATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Babcock Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Do Well Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - RIA Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Noorda College Of Osteopathic Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Virtual Wellness Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Hometown Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Brandi Moore PA - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sharpe Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Wayspring Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Reclaim Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - TATUM HIGHLANDS MEDICAL ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Cambria Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PeerWell Health PC CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - NEWSTART FAMILY \u0026 OBSTETRICAL CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - GREAT PROVIDER HEALTH SERVICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - BRADFORD PSYCHIATRIC ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Enterprise Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hartford Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - A Pattern Health, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VASCULAR INSTITUTE OF ARIZONA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - REZOLV HEALTH MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ICU DYNAMICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Amy Roberts, MD \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Pulse Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Magnolia Place Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Restorative Spine and Pain, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Jess NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Rainbow City Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "R \u0026 R Psychiatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - The Workers Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Charan Donkor, MD Start-Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Dr. David Mellman, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Apex Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Skylight Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optimal Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rocky Mountain Urgent Care \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Skylight Health Group - Colorado Springs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Just Medical Care P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXOMA RHEUMATOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Georgia MNT - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - WEST FORSYTH INTERNAL MEDICINE P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr Randy Folker ENT and Allergy, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NextGen Foot", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Phillip Mendoza MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dry Eye Center of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Milford Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Evolving Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Bird", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NEBI PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - University Healthcare Associates, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BROWARD HEALTH MEDICAL GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Infinity Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ACES PHASE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - COLORECTAL HEALTH NORTHWEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - American Sleep \u0026 Pulmonary Med (Axi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Northwest Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - The Wellness Connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Foot Healers Holdings- St Louis LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - NWI HEALTH \u0026 WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Dolphin Hills Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Synergy Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Island Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - LINWOOD INTERNAL MEDICINE CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - R.R.I.H.S.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Matthew Jacobs D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rapha Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dermatology Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Lee Family Care, P.L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ayodele Olowookere MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DFW Radiology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sound Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Carlton Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Neurotest of New York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Easy Online Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Yes 2 Life Health and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Modern Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hampton Roads Kidney \u0026 Internal Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Florida Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Westmoreland Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Kidney Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Brownstein, Adam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AdvocateMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Moshe H Wilker, MD, A Prof Med Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Robel T Dabandan NP Healthcare Serv", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - PETERSON WELLNESS PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Daros, A / Daros, E", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HEAL Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ALPHARETTA WELLNESS CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Tel-A-Med, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Zanjabee Integrative Med\u0026 Prim Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RIVER WOLF GYNECOLOGY \u0026 FAMILY HEAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pioneer Community Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Jamie Blakeman, MA, LCPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Shoreline Health, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Connected Health Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeffrey B. Glaser, MD, A Medical Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Contours, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - BAVIHealth, dba Range Community Cli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Be Well Medical- Start Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Adv Laparoscopic Surg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Waters Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - CBC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Clearstone Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Pediatric Rehabilitation Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Renaissance Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Underground Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Wilmer Valentin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ALL CHOICE MEDICAL CARE INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Deleon's Womans Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Advanced Podiatry Specialists, P.S.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boston Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Strahan Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Urgent Care of Fairhope, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - INTEGRATIVE FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Canton Family Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Thomas Raulerson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Atlantic Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dacona Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MISHEL FARASATPOUR MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Magnolia Behavioral Health, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Transformations Pediatric Health \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Gonzales Medical Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Premier Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UMC BORDER PEDIATRICS WEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UMC El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UMC Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - PETERSON ORTHOPEDICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NASA HEALTHCARE SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Undeniable Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR KASPER CONCIERGE MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOODLANDS CANNABIS CLINIC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FALL PREVENTION AND STROKE REHAB PH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MY NP HEALTHCARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Madsen Family Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Complete Care Family Medicine Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comtrea Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Midwest Interventional Rad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - BALANCE REGENERATIVE, SPORTS AND RE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - TRUST FAMILY CARE CENTER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Penn Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Vernon Integrated Medical Group, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - K \u0026 S Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - CPO, P.S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mountain View Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Robert A Savala MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cynthia A. Garcia, M. D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - GraceWay Direct Primary Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - COMMUNITY CARE OF DOWAGIAC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Pulse Healthcare Solutions PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - TALAMO FAMILY PRACTICE GROUP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ALL ABOUT KIDS PEDIATRICS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Pauline E. Miller, M.D., Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Northern Kentucky Pediatric Grp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Medical Arts Center Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Centra Health - Addiction Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - TELEMINDFUL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - COASTAL CARDIOVASCULAR CONSULTANTS,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - ROWLEY PRIMARY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - ABQ Integrative Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vital Urgent Care- WPB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Capital Health \u0026 Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - GLICK MEDICAL GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Aspenglow Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MCDAVID M. MAHAFFEY MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Altais Clinical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Ardmore Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Optimal Heart Center and Body Lab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - East Florida Premium Medical Care L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Minuteman Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AMA Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Free Clinic Of Franklin County Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mente Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - VINCENT PEPE, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Antonio Alexis Pena MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Methuen Pediatric Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Adaptive Counseling and Coaching Se", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Aditus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Newcomb Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Russell E Rider MD Long Lake Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - JOHN DAVID MULLINS, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - LISAS ADVANCED PRACTICE PRIMARY CAR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cheaha Adult and Pediatric Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Biofourmis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vanderheiden, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Health Partners Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Metrowest Free Medical Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - St. Augustine Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Venaflux", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CONSANO HEALTH INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neuron Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Magnolia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Cramer Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Pacific West Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Willow Women's Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Inspire Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Collaborative Care Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Metro Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dev Mishra M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Appel Foot \u0026 Ankle Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bergen Volunteer Medical Initiative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Edwin L. DeLange, DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Allied Digestive Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW YORK w Clinical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - LAKE-COOK HEALTHCARE SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Foot and Ankle Specialists of Ames", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - RIVERSIDE MEDICAL ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - North Little Rock Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BB's Allcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Omnis Salus, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - JXE VENTURES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - St Mary's Legacy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VOHRA HEALTH SERVICES PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOHRA HEALTH SERVICES PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOHRA WOUND PHYSICIANS OF CA, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOHRA WOUND PHYSICIANS OF FL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOHRA WOUND PHYSICIANS OF IL, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALLY ENDOCRINOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - New Mexico Spine and Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rio Hondo/Los Fresnos Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Allure Health Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restor Metabolix Asheville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restor Metabolix Athens", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Tallgrass Primary Care \u0026 House Call", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COVENANT PRIMARY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Syed, Fathima MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metro Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Dulces Suenos Anesthesia LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - RISE PEDIATRICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arce Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MultiMed Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Amzwellcloud LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - BE WELL BALANCED HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - VVPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FAVOR FOOT AND ANKLE PODIATRY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Laurie Birkholz MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMFAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Allen Foot Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Apple Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Casteel Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dallas Podiatry Works", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FA_Medical_Nelson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fibroid Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Louetta Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michael S Lenertz DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NTX_POD_Brill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Texas Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Texas Foot and Ankle Holcombe", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parrett Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Permian Basin Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Precision Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rafiq Wound Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stonebriar Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stride Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "StrideCare Footwear", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "StrideCare Wound Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "StrideWoundCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stride Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX_Reg_FA_Radack", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas_FA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texoma Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Woodly Foot and Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lorna Fedelem MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - LECMED PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MARSHA K. HOWERTON, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Asheh \u0026 Daughety Medical Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Evolve Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - TOTAL CARE PSYCHIATRY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SUNSHINE ALLERGY AND ASTHMA PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lyn Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHANNON M JUNO MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - FemiCare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Inspire Mental Heatlh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - SHELBY K. SAMUEL M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Health and Hope Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dequincy Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Chrysallis Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Omolara Abitoye, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - EVOLVING TREATMENT MEDICAL SERVICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Ritchie Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FNP CONCIERGE HOME MEDICAL SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SaVida Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Kirk E Smith, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Axis Spine Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lake Forest Academy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - BEP MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Sandman Center For Veins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunburst Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - BLAKE FENKELL P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Mashburn Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Howard County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Beth Abate NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - WellSpring Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - One Stop Medical Shop", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LaToya Lucas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthcare Today", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Perfecto Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Lander Medical Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Womens Executive Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - INTERNAL MEDICINE PRIME CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Dr. Alicia McKelvey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Agape Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - IKON PAIN MANAGEMENT CONSULTANTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Samantha Pruitt, FNP-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Craig K Moore MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAIRHAVEN FAMILY MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carteret Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Prinn K. Stang, MD, FACOG, FACS and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - DR AOB CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Freedom Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hooper \u0026 Burnette Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Central Iowa Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - HEALTH CARE WITHOUT WALLS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - NP PSYCH \u0026 MENTAL HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jack Wu MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HILL COUNTRY COUNSELING AND WELLNES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prestige Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUZA-TOWNSEND FAMILY MEDICAL CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WANDA CAROL TOWNSEND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bridge Primary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - THE PINE-EAGLE HEALTH PLANNING COMM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Healthy Avenues Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Midtown Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midtown Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Ernesto Mirabal, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary PartnerCare Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Global Health and Recovery Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - State of Franklin Healthcare Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Lighthouse Family Medicine and Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - STOP IN CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Best Choice Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - EVERT HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Sancta Familia Medical Apostolate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Griffin Population Analytic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - HEALTHCARE INITIATIVES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Hometown Medical Clinic P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Portland Doctor LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Access Vascular Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mobile Medical - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Precision Epilepsy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Gautier Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - GENE L. KRISHINGNER JR., M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HomeDocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care of Orange City LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Absher Neurology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - CHESAPEAKE PSYCHOLOGICAL ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Christian Terzian MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida PGX Consulting LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Canyon Sleep Neurology \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Mobile Med LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Mental Health Wellness Boutique", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Three Rivers Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - SIMPLIFED, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Welliti", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Abdallah Ragab NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthy Minds for Healthy Lives", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SWIFTCARE OF MARYLAND, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MSM Heal Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Lindo Family Health and Carez Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Manto, Aurelio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DownEast Orthopedic Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - RIVER VALLEY OBSTETRICS AND GYNECOL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Thoughtful Mind Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Foot and Ankle Center of San", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - PALMETTO THERAPEUTIC MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Wilson Stream Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - All American OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Dakota Child and Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Washington Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DTMS CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Schmitz Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Women's Specialty Care S.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Genuine Me of South Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rachel Raven FNP-C DBA DOT Physical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Phifer Incorporated Onsite Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Life Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MediTele LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Steven S. Zeldes, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - LONE PEAK PSYCHIATRY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Gam-Med - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ON CARE FAMILY HEALTH NP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JERI SHUSTER MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JERI SHUSTER MD WOMEN'S CENTER INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Precision Hand and Orthopedic Surge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MEDCITY FAMILY CLINIC LIMITED LIABI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Martin Fitness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CFC Physiotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CardiacFitt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEXTGEN RPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoenix One Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - NEW BEGINNINGS HEALTH CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - North Star Family Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - GrayHawk Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Eccarius Eye Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Acton Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Beverly Hills Medical Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Infectious Disease PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JEE Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Plastic Surgery Specialists Of New", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Neurotrack", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bream Medical Edenton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bream Medical Salisbury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bream Medical Stokesdale", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bream Medical Edenton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DocGo On-Demand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Piedmont Neuroscience Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Health Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - HME Integrative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clearwater Family Medicine and Allergy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "J. WAYNE PHILLIPS, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Integrative Primary Care of El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carlsbad Urgent Care San Marcos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Temecula 24 Hour Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Temecula 24 Hour Urgent Care - Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Temecula Hormone \u0026 Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Mukhtar Anees, MD, MBBS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - NUEVA VITA, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Whitley Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hava Oaks Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sky Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ansible Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - BUONO PEDIATRICS AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - NorthStar Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gynecare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Angela Gilmer - Midwife Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Iowa Womens Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stillness Counseling and Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Hope Chest Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Westminster Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RHODES MEDICAL CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Sancta Familia Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Rami Turner DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SHAHZAIB MIRZA MD MEDICAL PARTNERS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Harbor Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lifetime OB/GYN Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Even Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VAG SPECIALIST LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Felicia Freemon PT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - City and County of Broomfield Repro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Holistic Home Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CAITLIN PRICKETT, DO \u0026 ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Elizabeth Grigoryan, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Concussion Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Topple Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Galatians Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Griffin Concierge Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Hardy House, Your Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MANUEL YBARRA M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Axis Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DOCTORS URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HEALTH AND WELLNESS CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Grayhawk Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ninva Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Woodbury Endocrinology and Diabetes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Exemplar Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - KENDALL D. WAGNER, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ankle N Foot Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Greenbax Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - The Wellness Garden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PROTELIX HEALTH CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Prized Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dunn Erwin Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - SOZEN INTEGRATIVE HEALTH AND WELLNE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Odyssey Men's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Rappore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Avant Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Neurology and Neurodevelopme", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Charlie Delta Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Physical Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "High Road Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holy Cross Hospital Professional Billing Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Penasco Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THS Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Taos Sports and Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Taos Surgical Specialties", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Be Well Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Foot \u0026 Ankle Center Of Iowa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - The Salaam Community Wellness Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Le Minou, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Baldwin Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Western Carteret Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Threshold Therapeutic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Children's Oasis Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CHRISTIAN PSYCHIATRIC SERVICES, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Joshua Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Hippo Health Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - A Step Ahead Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Access Family \u0026 Functional Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - HEALTHY ME WELLNESS SERVICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Stiff Health and Wellness Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Be At Home Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Revitalize Alabama LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Qualified Quacks, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Clover Genetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - David Spence Texada MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - PEDIATRIC HEALTHCARE UNLIMITED,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Group Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Frontier Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - LIFECARE OF WEST MICHIGAN, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Elite Pediatric Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Victor's Crown Christian Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lifecare of Indiana LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kidney and Hypertension Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foresight Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Sun Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dardur Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DENTON PODIATRY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Alzheimers Memory Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - THOMAS LI CONSULTING LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mindful Primary \u0026 Psych Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SYNERGY FITNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Greater LA Pain Specialists, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Family First Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Woodland Internists, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiac Surgery Center of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healing Hands Osteopathic Center -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Wholesome Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Winn Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Pain Treatment Center of the Bluegrass", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Zachary Bohart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Rosenfeld Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Asoufy Therapy Services, Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Three Rivers Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - INSTED, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Panorama Urgent Care Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - MyNDSpace Mental Health Education \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Omni Wellness Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FREEDOM COMMUNITY MEDICAL CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texan Family Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Abba's Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hometown Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mend Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Nu Imagery Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Caden Behavioral Health, Recovery \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nona Simple Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEIGHBORMD PARTNERS OF FLORIDA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Doctors Center | NeighborMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Amani Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - St Joseph Internal Medicine Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - FOOT ANKLE \u0026 LEG SPECIALIST OF S FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - LAURA E BATES PSYCHIATRY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PROMED PRIMARY CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - I Care Virtual Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - JASON DEUTSCH M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FIRSTCHOICE PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLSMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLSMA - Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Inspire You Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Blue Star Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - INSIGHT TMS AND MENTAL HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Third Circle Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Seadipity Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alamo Family Practice, P. A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Magnolia Breast Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CORNERSTONE FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Fhenix Forever", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Hoffman, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - VIRTUAL HEALTH NP IN FAMILY HEALTH,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - POSITIVE ENERGY HEALTH CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Trinity Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gastro Consultants of Laredo, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tanglewood Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Rehabilitation/Neurological Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEUROLOGY GROUP OF BERGEN COUNTY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Three Angels Family Practice \u0026 Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - OpsMedGroup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bautista Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Chris Marasco, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - McLain, Elizabeth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lowcountry Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Peak Form Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Zack Hall MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TULAKES CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Southern Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Alanna Rodriguez - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Diego Ramirez OBGYN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sequoia Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Music City Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Absolute Pain Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - ADULT PRIMARY CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nirvana Elite Sleep and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Boyette Ortho \u0026 Sports Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Direct Health for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Excel Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pain Clinics of America, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Ready Responders (Master)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MIU GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Andala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - SCARBOROUGH NEURODEVELOPMENT CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trident Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BAKER HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baker Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shasta Cascade Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GenAspire LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Magnolia Pediatric Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Practitioner's Touch", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - AVAESEN HEALTHCARE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Northeast Ophthalmic Plastic and Re", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GOB BEHAVIORAL HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NAPPA FAMILY PRACTICE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - QUANTUM PERSONAL HOME CARE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ESTRELLA FAMILY CARE AND AESTHETICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ivan Borbon, DO.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Healthy Life Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CC:MD Concierge Medical Team", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - USA DOCTORS ON WHEELS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Quality Community Health Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pan American OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - FLORIDA WELLNESS AND REGENERATIVE M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - NORWOOD CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - SUPERIOR URGENT CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RespirCare Open Access", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RespirCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Health Momentum Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CATHY HEALTHCARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mental Better, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - STAR FOOT \u0026 ANKLE SPECIALISTS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Premier Physicians Weight Loss \u0026 We", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Care on Location Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - IAHIAR, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER BRAIN AND SPINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Diagnostic Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NVelUp Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - POMELO, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - SkyLink Medical, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - High Risk Pregnancy Center of AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PRECISION OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FAMILY AFFAIR CARE LIMITED LIABILIT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Iowa Rehab Medicine and Pain Coachi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Select Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Temescal Creek Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Cline Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Next Generation Family Medicine, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Personal Healthcare Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CoastalMDLive LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RED RIVER VALLEY HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - SWEETWATER FAMILY MEDICINE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Lantern Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Tidewater Pediatric Consultants, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Juliet Wiseman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Absolute Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bariatric And General Surgery Of Ki", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HYPERTENSION \u0026 NEPHROLOGY, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEPHROLOGY ASSOCIATES INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Agave Adult Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - BRIGHTER DAYS WELLNESS \u0026 BEHAVIOR A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Andrea Watson MD start up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - QHC Deming Hospital Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ALL Family Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - A3B: ACCEPTANCE, BELIEVING,BONDING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fort Worth Interventional, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Natural Rhythms Integrative Medicin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bertha A Gonzalez DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Simplified Telehealth LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AMAZING HEALTH CARE AND SERVICES IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - AGAPE ALLERGY \u0026 IMMUNOLOGY ASSOCIAT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Thibodaux Regional Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - The Grove Comprehensive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hinton's Integrative Medicine (HIM)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Jasleena Grewal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Codwell Family Foot Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - MARCUS MAYUS MD INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Netter J. Ortiz, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - OpenLoop Healthcare Partners, PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Khora Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Osler at Home INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Virtual Visit LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Evolve Concierge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wilson, Steven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RICK R. SCHMIDT, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Online Family Health P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - New England Breast and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SONORAN CARDIOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Adam Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Rolando Santellana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Shoulder \u0026 Knee Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Richard David Griffith MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Munson Health Care Little Traverse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care Doctors of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Women's Care Clinic of Lea County L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Shamrock Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - One Heart Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Emergility, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Joan Marie Garrity, ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - VELASCO MEDICAL CORP.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Grapevine Clinical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Comprehensive Adult Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MSU Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Womens Health Care of Western Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DAVID VU, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Advantage Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Valley Urogynecology Associates, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - ST. GIANNA MOLLA CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Complete Care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - 5 Star Mobile Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - KIDOLOGY PEDIATRICS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Byrd Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - MAGDALENE KARON, M.D., P.S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Kelly H. Roy, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - JoinCareTeam P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vybrant Medical Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - RLH UROLOGY LOCUM SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HOWARD L. SCHULTHEISS, JR., D.P.M.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Dr. Riley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Bay Minette Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Down Home Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Advance Healthcare Associates - Sta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - THE BRIGHT CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LAUREL MEDICAL GROUP LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gretel Trullenque - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - EARL SUMBLER MEMORIAL HEALTHCARE CE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Coral Mt Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - WABANAKI PUBLIC HEALTH AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Kiwell Nutrition Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pediatric Gastro of Richmond, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kathy Jean Sparacino Md Medical Gro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Denver Neurological Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Balance Regenerative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Integra Healthcare Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SHOOTING STAR FEEDING AND SWALLOWIN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - DAVID B. KAPLANSKY, D.P.M., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CFHC - Adolescent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Vernon Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Institute for Orthopaedic Surgery \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Health First Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Opp Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Deepika Pasunur MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CMJ Hands On Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Huddleston \u0026 Dinardo MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sierra Doctors Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Greenleaf Family Centers Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - GUOhio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MIDDLE RIVER HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Laurel Family Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midwest Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PAIN MANAGEMENT ASSOCIATES LC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UTRGV Student Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - HAYDEN N. BOX, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Puget Sound Endocrinology (DBA)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sulphur Creek Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Villa Family Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CSM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CTSM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Welcome Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brian A. McDowell, Podiatry Corpora", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Modyfi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Karuna Healthcare Consultants, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - HOPE-Full Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Florida Cardiology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clarity Telehealth Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLARITY LIFE BALANCE - OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clarity Telehealth of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clarity-James Medical Services Corporations", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Calling Care Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - OHIO BARIATRICS AND LAPAROSCOPY, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Therapeutic Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Valley Neurosurgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - HIS FAITHFULNESS FAMILY CLINIC INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - INNOVATIVE PSYCHIATRY CENTER INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Newbury Health Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Temecula Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shibli Family Practice and Obesity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Vanguard Medical Group, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vanguard Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Balkys Bivins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - IMMINENT HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Legend Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - POUNDS, MEDICAL WEIGHT LOSS TRANSFO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Advanced Practice Primary Care Staf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Access Medical Clinic North Carolin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NEUROLOGY CONSULTING \u0026 DIAGNOSTICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Neuro Logic Rehabilitation And Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Cameron Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NEW BOSTON VILLAGE PRIMARY CARE, PR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Louisville Orthopaedics and Sports Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AVV Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rise Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - OKLAHOMA ADVANCED PRACTICE FAMILY N", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Premier Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Obria Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Clinic652, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Zen Kat LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lumber River Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advent Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Siavash Sobhani, MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Washington Concierge Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Esther's Home Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Health Check, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Flyte Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - EILEEN WEST, MD \u0026 ASSOCIATES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - The Perry Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Bridging Family Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ELITE PRIMARY CARE GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Geriheal P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Desert River Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Anne M. Mooney MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orlando Pain Centers of Excellence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Highlands Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Stride ANew, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - KARING KIDS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Roots Community Birth Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arkansas Healthcare Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Appalachian Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Envision Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Center for Complex Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cyrus Dadachanji MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Faculty Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - New Hope General and Oncologic Surg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Center Podiatry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - ANCHORED WOMEN'S HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stillwater Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - AZH Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ASSURED CARE GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Powers Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - West Dearborn Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - CHOW SURGICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DR K PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - C. Michel Oliva, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Collaborative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - GOUGH SURGICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rushland Park Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Farridah Shafiee DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marsalis Avenue Urgent Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bluebell Health \u0026 Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Nashville CARES My House Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Grace N Joseph", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lighthouse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - HAPPY JOINTS INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Premier Family Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - FreedomCare Physician Practice PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CHAPN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vema Holistic Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - 818 Diagnostic Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Landfall Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bay Area OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - General And Laparoendoscopic Surgeo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - My Christian Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Balance Womens Virtual Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nightfall Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Complete Family Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Primary Caring of Malibu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Extensive Health Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - New Age Healthcare \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Regional Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Your Neighborhood NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Rezilient Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KIRCHNER WOMEN'S CLINIC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwest Orthopedic Group, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Life Tree Women Care Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Total Woman Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cisco Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Prairie Trail Family Medicine SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Adaptive Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Leon Springs Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Southern Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Foot And Ankle Institute, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Valley House Doctors PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Scott B. Phillips PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - SEVA FAMILY MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Panhandle Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Potomac Surgical Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - The Last Best Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Marcia Nelson-vancini, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Robert Pensler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Child Neurology \u0026 Stroke of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Pioneer Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - WOUND THERAPY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - STETHO MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Elliston Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Serenity Womens Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MIDDLETOWN VALLEY FAMILY MEDICINE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Precina", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Allen Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Executive Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Legacy Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - McAllen Hand Center, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Heart Rhythm Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chambers Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chambers Supplements", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIP Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VIP Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Smith \u0026 Kolb Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Haya R Rubin MD PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kids Telemed PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Southern Spine Specialists, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Janel Willingham, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - UZIMA REJUVENATION STATION, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Penn's Rock Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Radcliff Urgent Care Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - FAMILY ALLERGY AND ASTHMA CARE PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Weight Management \u0026 Wellness Online", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ESSENTIAL CARE FAMILY MEDICINE, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Verde Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Integrative Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Convena Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Elivate Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Urgent House Calls LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Granite State Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bay Area Psychology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Hasan Arrat PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Care First Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - SequenceMD - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gresham Cardiology and Wellness Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Doctor G Family Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Nathalie Acher", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SUGGERO HEALTHCARE SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - URGENT CARE OF SEMINOLE APRN-CNP, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - George N Chidi MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hector Aleman, C.L.S.W.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jack Opgenorth, C.L.S.W.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jake Mahon, PhD., BCBA-D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jennifer Boudreaux, CPNP, PMHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Julie Newman, DNP, PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Walter D. Smith, PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Gundersen Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Flow Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - TRED FOOT AND ANKLE CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - MEDICAL NUTRITION ASSOCIATES, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Micah May MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sterling Plastics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Dr Turgut Zia SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Ketchum Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fancy Gap Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Morgan Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Liaison Health Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Together for Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - YOUNGER MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Endomed Family Clinic - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Good Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Camilla L. Lyons MD MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - STEPHANIE CLAIR SPAIN DNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - AMY FREEDMAN MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Abdul G Chaudry OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Fenney, William", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ron Eaker MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ZYNITH HEALTH CARE \u0026 ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Tussey Mountain Foot \u0026 Ankle Specia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Lander County Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COLLIN MEDICAL \u0026 WELLNESS GROUP PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cameron Grant FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHOICE Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - MEDICAL ON DEMAND LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sterling Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Natchez After Hours", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Intergalactic Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Above \u0026 Beyond Wellness and MedSpa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Advanced Eye Prosthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Baxter Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Healthy Community Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CYNTHIA GILES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cabral Internal Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. EI Medical Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SUMNERS MATERNAL FETAL MEDICINE, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MEDICAL CITY HEALTHCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Elizabeth Amos NP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Larry Woods, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Chong Medical Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pryme Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - West Madison Urgent \u0026 Primary Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - West Atlanta Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - VarzCare Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MAS Ostomy Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Livingston Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooke J Nevins MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ABMR MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Affinity Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Holistic Wellness Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Primary Care Select, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Achievement Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - THE NEUROMEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INDIANA HEMOPHILIA \u0026 THROMBOSIS CENTER, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - ABC Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Goood Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Charleston Medicine and Behavioral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Wendy McLaughlin, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - MJM Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - El Sol medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Link Community Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Synapse Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Healing Rheum", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Life Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Choice Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED AMBULATORY SURGERY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED HEART AND VASCULAR CENTER OF NEW MEXICO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Lisa Larkin MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - George D. Peterson, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Raleigh Neurology Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Valley Counseling \u0026 Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NOVI MEDICINE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CHI Q WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - General Surgery Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Nick S. Kouchis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Accomplish Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MidSouth Rheumatology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kolbe Clinic of Florida (Navarre Lo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eric Pinnar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Central California Movement Disorde", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Veronica Rodriguez-Romero - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Center for Integrated Medicine, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Envigor Medical and Behavioral Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - DNA MEDICAL SERVICES INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Life Solutions Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sollis Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - The Harris Group Enterprises, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CENTER FOR RARE NEUROLOGICAL DISEAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Vibrant Osteopathy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Kahlo Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Providence Orthopaedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Geriatric Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SIGNATURE INTERNAL MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Anita Gupta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Derrick D. Cox, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nautilus Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Richmond Heart and Vascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Prana Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - North Central Ohio Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Serenity Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CowTown Headache Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Community Health Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - CENTRE HEALTH GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - QUALITICARE COMMUNITY MEDICAL SERVI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - EXPRESS CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heber Valley Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MAT Ventures", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOW MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Baobab Psychiatric Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Strong Foundation Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pinnacle Family Care Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Fernando L Alemany MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Something Different Mental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Farwest Podiatric Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Levine / Yi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - BREAKTHROUGH BEHAVIORAL HEALTH SERV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Foundation Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - CANFIELD WELLNESS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Premier Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Blissful Nursing and Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Providence Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - TeleMed Now LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rheumatologix", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Geode Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Psychiatric Professionals of Georgia, Powered by Geode Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Camarena Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Lewistown Adult Health and Wound Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Big Foot Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Mount Zion Medical Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "El Paso Colon and Rectal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Fort Payne Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - J Weinstein M D P A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CFLGP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Space Coast Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Embrace Wellness PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Guirguis Obstetrics/Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Symbios Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - PrescribeDNA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Soldara Integrative Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Alivio Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SOUTH TEXAS FAMILY MEDICINE AND URG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NP XPERIENCE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nocturnist Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Milford Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - AMC FQHC Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Pediatric Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Combs Village Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Health Primary Care Provider", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Next Journey Orthopaedics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Coastal Family Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Catching Joy Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Grand Haven Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KILLEEN NEUROLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SPMD Wellness Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pulmonary \u0026 Sleep Consultants: Jean", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nobis Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - WENDY VANNOY, ND, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - WOUND SOLUTIONS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Charis Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ALLISON SKREZEC NP IN FAMILY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Advanced Medical and Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Neighborhood Family Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - TRINITY COMMUNITY MEDICAL CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Optimal Health Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Signal Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Thomas X Nguyen, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TMI SPORTS MEDICINE AND ORTHOPEDIC SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Family Practice Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLUE VALLEY ASC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MON-Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Anesthesia and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - COFAS INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Prodigy Psychiatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Tara Winkler LCPC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Omid Zebarjadi DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lumberton Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tennessee Valley Neurology Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Aram Gabrielyan, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Impact Counseling Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Afzaal Iqbal MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Discover Health 3", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Discover Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Phoenix Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - White Coat Concierge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spora Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - HOMETOWN PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ADA ADULT AND CHILDREN FAMILY CLINI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Social Welfare Board", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Sunflower Birth And Family Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - JR Healthcare Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - ZenCare Family Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Hinsdale Asthma and Allergy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brightside ASC Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brightside Specialty Communicator Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH CENTER OF MARYLAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH CENTER OF WEST VIRGINIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Sharrock Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Norvinia Health P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VAZCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - BRIDGEWATER PRIMARY CARE AND CARDIO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BEACON HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Nurturing Wellness Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Triumph Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Amanda Baker FNP-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Child Neuro. Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Rick D. Schoeling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Laurie Stumpf FNPc llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Steuben County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Spine and Brain Group S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Be Well Family Medicine and Wellness Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Lemley, Henry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Herrington, F. Stephen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Fisher, Tobin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - SYZYGY HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Bliss Home Based Primary Medical Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SHILOH URGENT CARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - All Seasons Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Essentialyze", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - IV Express LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southernmost Surgery and Veins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARTIN N. MANGO, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Sulton Pediatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Turningpoint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Reed, Spenser", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Ying Liu NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Salt City Anesthesia, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alvaro Dangond MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC000_MICHIGAN TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC001_ALLIANCE OBSTETRICS AND GYNECOLOGY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_METRO PARTNERS IN WOMEN'S HEALTH PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_WOMENS HEALTH CONSULTANTS PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_ASSOCIATES IN OBSTETRICS AND GYNECOLOGY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_BAY VIEW OBSTETRICS AND GYNECOLOGY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HCMD Management Group Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Midwest Mental Health of SD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - TRINITY MEDICAL CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - RIVERBEND HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hudson Primary aOne plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovatel Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Quartet Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pioneer Medical PA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Florissant Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MyCare Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 360 Physicians and Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Main Street Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - A BETTER WEIGH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Markidan Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Desert Foot and Ankle PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PNC Podiatry of Arizona PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Get Mind And Body Healthy Llc - Sta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EONE Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - EONE MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - A\u0026W EMG Muscle \u0026 Nerve", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Memorial Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KC MEDICAL P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Holistic Family Health by Hodge, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ersno Eromo Md, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Concierge Healthcare Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Jamal Kriem MD - Start", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Enoch Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ON-SITE NURSE PRACTITIONER GROUP, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Winship Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Colorado River Pain Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - CORNERSTONE INTEGRATED HEALTHCARE O", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Smoky Mountain Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHMOUNTAIN CHILDREN AND FAMILY SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Biobility, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care First", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hometown Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lighthouse Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - ABQ DNA, LLC dba Zia Medical Concie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Asthma \u0026 Allergy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Noble County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - STIFF HEALTH AND WELLNESS CARE, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ADVANCED SURGERY \u0026 WELLNESS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - NeuroAnalytics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Unity Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Montano Neurology Care Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Elemental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Upper East Side Gynecology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - RADOVIC NP IN ADULT HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Divine Care Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Savannah Age Management Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Compass Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - North Marshall Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Family Doctor, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for Wellness Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Transcend Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - GenePharmer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Spring City Family Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Glenn Burke Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Big Tree Medical Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ARIEL LOPEZ-CHAVEZ M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - House Call Doctors of Pacific North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Texas Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Edward A Kepp MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Snell, William E.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MAZEN ALSAQA, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - River City Nephrology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Brandy Willis MD - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Great State Rural Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - North LA Vascular and Endovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Piedmont Eastside Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - John M Tumolo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Buckingham Sports Medicine and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Cameron Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Alpine Woods Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Stehouwer Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Nurturing Minds - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - PHOENIX MEDICAL \u0026 WELLNESS CLINIC,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kingwood Neurology and Sleep, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Do Life Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Apex Spine and Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Acacia Medical Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Rejuv Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kitsap Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Maine Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Keys of Hope", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRACTICALLY PERFECT PHYSICAL THERAPY CONSULTING LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Mental Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Colorectal Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sleep Advantage", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nader C. Ghazal MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UH Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Malta Dental and Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - LOUISVILLE OCCUPATIONAL AND GENERAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - MY HEALTH CLINIC CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Modern Urology Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - PS Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Complete Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - LINTHICUM PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Physiologic, Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - THE DALLAS CENTER FOR SLEEP DISORDE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chariton Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly ENT and Plastics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Heart \u0026 Vascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Specialty Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Moberly Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Oceanfront Pain Mgmt and Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hand Center of Boca \u0026 Delray", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Crever, Gregory", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ernesto J Millan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Infinity Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Better Day Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integrative Kidney Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Happy Doc Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Knox Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Integrated Health of Southern Illin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Jennifer Kostacos, MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - CANDESCENT HEALTH AND WELLNESS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Preferred Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Washington Internal Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alexander Sones MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Christina M McAlpin MD A Prof Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jersey Coast Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Primary Care And Alternati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Yavapai Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - FPS MEDICAL CENTER LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Vandeven Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas ID Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Spine Institute of El Paso, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Brightstar Mental Health - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - MCKNIGHT CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integrous Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Holistic Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brazos Regional Neurology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - SCOTTS HILL MEDICAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Saim Choudhry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "As You Are", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Childbirth Options LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lykos Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Center for Diagnostic Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Total Foot and Ankle - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pennsbury Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DR. OSSAMA HOZAYEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MONA AWAD MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrity Primary Med LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Kenneth J Proefrock NMD PLLC dba To", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Housecalls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shandi Fuller - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Riva Health CO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kokopelli Clinic of McCamey, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - OTOLARYNGOLOGY SPECIALTY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pinnacle Integrative Orthopedics an", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - NURSE PRACTITIONER PROFESSIONAL RES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Baptist Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Mercyland Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Modern Esthetics and Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Advanced Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tenure Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Women's Healthcare Ctr of Baytown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Focus Care MD - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - HEALTH FIRST MEDICAL CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jay E Olsson DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Pause Pain and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - The Myers Institute of Plastic and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Holiq Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Byenveni Baby", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Hope Neurology Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Harmony Psychiatric Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ark Integrative Medicine and Therap", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Volunteer Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Connecticut Childbirth \u0026 Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Brain District", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Newh Regional Medical Center - Star", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New ME Health Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Home Therapy Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cevares Medical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Acclaimed Rheumatology and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Triad LTC Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Tanasbourne Plastic Surgery, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Cardiovascular Institute Of Mississ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Accent On Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Utah Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Richard Diamond NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Vernal family medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Champs Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - St. Joseph County Department of Hea", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sol Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Sewickley Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Harmony @ Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Selah Wellness Clinic L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Epilepsy Foundation Central \u0026 South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Family Practice Associates of Taos,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Rise Direct Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WOMEN CENTER LA OBGYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mid-America Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHF", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHF HCC on Auburn Ave", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Chadwick Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Chadwick Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Seize The Day 365 Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Taos Medical Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Belinda Hatcher NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NORTH AVENUE PODIATRY SERVICES P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Sparks HealthCare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Institute on Healthcare Directives,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Winsome Technologies, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Progress Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - DeWitt, Erica", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - FocilMed Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Unique Passionate Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Eastside Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Steve Clark DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brandon Lampe MD - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neurology Center of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fillmore County Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain View Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TheraCare Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - STERLING RAPID RESPONSE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Journey2Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Hometown Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Waring Court Pediatric and Adult Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Terra Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Healthcare Remotely", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Best Practices Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ANNA M BARBIERI MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Fort Wayne Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Care Oncall", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Building Bridges Family Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Orthopedic Surgery and Sports Medic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - PRINCE MARTIN NP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Kazi- start up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JERRY H GELBART MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Endocrine Care of Boca Raton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Madison Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Front Range Podiatry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - JENNA REID YATES, PH.D., LICENSED C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Inspire Your Why Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Garnett Counseling and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - PRESTIGE HEALTHCARE OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Better weighs to better health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Optimal Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - O'Neal Enterprises, LLC dba Wyo Car", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Adult and Geriatric Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - WellMind", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hancock Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Hobson Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NeighborCare Mobile Healthcare - St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KIT KUSS MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WAYNE JUSTICE MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Psych Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - You Matter Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Inthestix Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bafitis Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Small Town Medical Solutions (start", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Westside Women's Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - VINCENT ALARCON, PHYSICAL THERAPIST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ACADEMIC PRIMARY CARE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southlake Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community 43", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Highland Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arya Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SJC GENERAL SURGERY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TRS Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Center of Palm Beach County, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Ideal Medical Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Compassion Health And Wellness Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Fort Collins Pain Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coastal Concierge Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - South Atlanta Area Primary Care.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - SmartMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DOCTORS WITHIN REACH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Sleep Center Hawaii", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metrodora Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neighborhood Health Center of WNY, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - UMPQUA FAMILY THERAPY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Executive N.P. - At Home Medical Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hospitalist Services of America", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Health Haven LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Snorkl Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Amaranta Clinica De Medicina Preven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Point Washington Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Fort Morgan Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Dr NP Patel MD PC - Urology Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - GRAY URGENT CARE L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Robinson Md Functional and Concierg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neighborhood House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Southern Palmetto Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Chattanooga Bone \u0026 Joint Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Clarity Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ENDURE URGENT CARE, A PROFESSIONAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Brighton Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - MIDCOAST INTEGRATIVE HEALTHCARE, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - David Johnson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Superior Health Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Gut Theory Total Digestive Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hope Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - CORE ORDINATES, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Anu Vazhappily, NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Evaluation Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Osceola Community Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Express Provider Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - RX KINETICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arman Kalamkarian, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LONE STAR SPINE AND PAIN INSTITUTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Star Spine and Pain Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Healthy Home Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SANA DOCTORS TELEMED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - LEWIN \u0026 NADAR ASSOCIATES, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Kelsey Alexander, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mount Airy Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Uplifting Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midwestern University Comprehensive Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE NEUROSCIENCE CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE NEUROSCIENCE CENTER PSYCHOTHERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Prestige Medical Clinic and Urgent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MODERN ALLERGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Quadrant Laboratories, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HOMEWARD PHYSICIANS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - ALICIA M. PRICE, AOCNP, LLC DBA NEW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alex City Internal Medicine \u0026 Nephr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Mobile Care Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - A Beautiful You Med Spa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Thompson Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Robert Ollins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lonestar Wound Care \u0026 Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peak Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gennev", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Olympus Spine and Pain, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MIDWEST CHILD \u0026 ADOLESCENT SPECIALT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hometown Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Women's Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CUC - E 79th St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CUC - North Olmstead", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Grace Midwifery \u0026 Womens Health, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Medical Care Group Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AllCare Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Medical Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David Alonso MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - White Oak Virtual Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CARLDEN HEALTH FAMILY CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Thrive Collaborative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Zoltan Csuka, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kristen Clow MA Licensed Clinical P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - A. KUMAR, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Conejo Women's Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Karli Cooke, APN, FNP-C - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rocky Ford Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - OCLM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hill Medical Associates, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clinica Medicos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Olive Branch Family Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Woman's Place for Optimal Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Acculab Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "California Advanced Pain and Spine Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - BITAR'S SPECIALTY CLINIC, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Wayspring Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FACIAL EXPRESSIONS PRESENTED BY K. THOMAS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kenisha Thomas, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 1st Med, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Catalyst Therapies", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - AMEDURI HEALTH SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Mount Sterling Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - The 40-20 Collective", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - All Around Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Wesleyan Medical Complex, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Mays Mobile Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lowcountry NextCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Hansen Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - OnlyMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - El Paso Nutrition Consultants L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - River Valley Medical Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Knox County Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - SynCare Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - OAK HEALTHCARE SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - THACH, SUSANNA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aaron Berger MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunrise Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TRAUBE, MARUSH \u0026 PLAWES, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brilliance Internal Medicine Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Allen, David W. M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinic On Wheelz, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Children's Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - COMMUNITY SCHOOL FOR APPRENTICESHIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - HEARTSOUTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Temple MedHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Tracy Graham", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Breastfeeding Success Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Latinos Salud", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Clarity Mind \u0026 Memory Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Tonymon Neuro Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - CC's Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bucks Foot \u0026 Ankle Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - First Choice Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Diabetes Osteoporosis Weight Loss C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Open Door Health Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Parkview Outreach Community Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - AT YOUR DOOR: VISITING HEALTHCARE S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Olakino Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Laura M Birnbaum MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Intricate Mind \u0026 Body LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Marc D. Shiman, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Uniq Mind \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Mercy Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Yost, Monique", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lutcher Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poche Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St James Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St James Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St James Urology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St James West Bank Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Indian Circle for Caring USA Inc. I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Legendary Family Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Solo Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bansal Psychiatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Soma MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ONLINE KETAMINE CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Victor Mode Physical Therapy \u0026 Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Christine Wu MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elite Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Mind Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Union Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - LIVIN' THE BREAST LIFE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Access Health Urgent Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Scope Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Georgia Healthcare Clinics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wiregrass Medical \u0026 Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Transtreme, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - DYANA THOMPSON PMHNP-BC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Telemedco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Orthopaedic Consultants of Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Clark Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kharis Ephrata Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - THE ARUNDEL MEDICAL GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hoskinson Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Justin Feldschau, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Loyola Clinical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - INSITE MEDICAL NJ PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Immaculate Medical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fox Valley Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Nice Speech Lady LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - MD Injury Relief Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CLEAR FUTURES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Gabriela Balf PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bloomfield Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rainbow Kids Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - WHOLESOME HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Vilasagar Gynecologic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Infectious Disease Associates of Na", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Anja Farin LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stead Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ketan Trivedi MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Valley Institute Of Primary Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Everbloom Psychiatric and Mental He", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - MORLEN HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bona Dea Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dr. Leonard Saltzman, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Trudell Doctor MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Eric Rightley, MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Southern Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ORCHID HEALTH AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NRC DNP Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Purple Flower Community Health and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MID-OHIO FOOT AND ANKLE SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Owen Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Empower Psychiatry Sleep LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ronen Hizami MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alhemovich, Danielle / Moss, Judith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Health Point Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Asheville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Boone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Brevard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Marion", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Shelby", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Spruce Pine/ Burnsville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Tryon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopscotch Health Weaverville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "El Paso Children's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Inclusive Care Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ST. CHARLES WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Linder Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Appling Total Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Star Quality Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Francis A Palermo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Unity Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Tracey Pearson-Heaney, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ICN SHIFA Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Precision Cardiac and Vascular Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Advanced Gynecology \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - REUBENS MOBILE HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Wood Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Mewinzha Ondaadiziike Wiigaming Cli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Queen City Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Topeka Housing Authority DBA Pine R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - IDEAL SELF LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - SHILOH MEDICAL SERVICES, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Catholic Charities, Diocese of St.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nadeen Soederbaum MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Healthfast Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Meredith J Hixson, MD, APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Hydration Therapy \u0026 Weight Loss Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Burke Hospital Company LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ONIEHEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Judson E Rogers, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Sandra Hoenig MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Zephyr Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - CARE PATHWAYS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Elite Mental Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - SEARK Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - RapidDoc Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Precise Immediate Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolina Orthopaedic \u0026 Neurosurgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Amber Shamburger, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "I and O Diabetes Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Calvino, Stephane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - John P Murray Community Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Paris Union School District 95", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Reset Kidney Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - House Call Medical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gracious Health Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Jackson County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lavender Spectrum Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Women's Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Metabolic Leader, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Community Medical Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - OOLOGAH FAMILY MEDICINE, TANA VOGEL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Eros Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Breakthru Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - COMPASSIONATE FAMILY URGENT CARE LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SUSSAN J. SALAS, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BETTER HEALTH MEDICAL, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - KIBBE ORTHOPEDICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Refined Form PT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - J \u0026 G Family Practice - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Jasmine Infusion and Med Spa PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - West Metro Fire Rescue", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mary K. Oates, MD, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - AFFORDABLE HOMETOWN HEALTHCARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Melody Medical Group P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pediatrics Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Quiskeya Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mid Florida Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Kiddos Urgent Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Newton Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Szymanski, Chad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AFSANEH HAFTBARADARAN MOHAMMADI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Yassin Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - NEPA VASCULAR INSTITUTE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wesley Foreman - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Building Great Kids Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pediatric and Adolescent Center of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - PETTIT PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Triad Complete Womens Healthcare LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - EARLY SCRIPT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WesTex Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Yakima Integrative Health (DBA)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - BROADWAY FAMILY PRACTICE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Teakettle Women's Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bethany Starks Start Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Kidney Institute, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Gynecological Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - South Bay Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Plateau Valley Medical Clinic (DBA)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - INTRICATE HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Physical Medicine and Rehabilitatio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - HOMETOWN HEALTHCARE SOLUTION, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Indian Creek Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Eastway Medical Clinic and Urgent C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cardiology Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Whole Health Naturopathy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Central Carolina Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GATHER HEALTH PRIMARY CARE OF MASSACHUSETTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Volunteers in Medicine Christian Co", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dunteman, Colt R.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ID Specialists P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Collierville Orthopedics and Sports", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Louisiana Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - River City Ministry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Acod Medical Solutions - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cooper Family medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aspire Medical Services and Educati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Southern Sprouts Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Emergency Pediatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kidz Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - THE FAMILY NURSE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Reimagine Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - FRIED \u0026 WILKS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gateway Medical Weight Loss Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - PAIN MANAGEMENT 360 LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT OF GA SOUTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Chiro \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AVENIR WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "COMPLETE CARE OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOR WOMEN OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HIGH RISK PREGNANCY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LEGACY WOMENS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MyOBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE OBGYN CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunshine Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Phoenix Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Anesthesiology \u0026 Pain Services, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Bell Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Picayune Internal Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Early Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Youngerself MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jewish Family Service of Greater Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Giove, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Oasis Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Access Wellness Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunrise Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weld County Public Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - RTHM, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - HOLISTIC BEHAVIORAL HEALTH MULTI SE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Mountain View Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Partners in Women's Health II, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Duke City Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Duke City Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Duke City Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Duke City Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MYOBGYN, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Laura A Michie CCCSLP LLC DBA Frede", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ocracoke Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Manor Management Company, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - VOLUNTEER FAMILY MEDICINE \u0026 URGENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Millennium Physician Group - Durham Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GUADALUPE REGIONAL MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - MUSCULOSKELETAL ASSOCIATES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Sutherland Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDI HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BRUNETTE BASTIEN MEDICAL SERVICES L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Twin Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Velasquez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Changa LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lisa Myers NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CALVARY PSYCHIATRIC SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ReVive Orthopedics, Spine \u0026 Sports", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Royalty Nephrology Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - NORMAN TODD GALE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Sunflower Medical Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Freer Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Eatonville Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hardeman County Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Dr. Kerri Vacher, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sierra Orthopedic Institute, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Centro Medico San Antonio LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - The October Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - FAIRWAY BEHAVIORAL HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - NORTHWEST INDIANA PODIATRY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Alicia A. Lieberman, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - THE UPSIDE OF CHAT CONSULTING \u0026 THE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - The Headstrong Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Family Medicine Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - The Group for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Felicia Harrell, NP - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - WOODWAY INTERNAL MEDICINE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gilles Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MORELIFE SOLUTIONS MENTAL HEALTH, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Unitary Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - KRUMIAN, RAZMIG D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Our Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brittany L. Goss, DO, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - MIDWEST MEDICAL CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Psychiatric and Psychological Specialties PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - XTREME NATURAL BODY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Srinivas Reddy Chitti, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - SUSTAINABLE HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Kachina Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Accompany Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Foot \u0026 Ankle Institute Of Hawaii", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - FAMILY FOOT HEALTH CARE, P.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Master Your Emotions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - REVIVE HYDRATION LLC-S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Barnes, David L.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DIVERSITY HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hope Heart Heal Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hope Heart Heal Medical Non Profit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mark D Peacock, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WeCare Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Julia Altmann", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Wise Counseling Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HERA HIGH RISK PREGNANCY SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Aurora Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - NewWay Health - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Functional Health \u0026 Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Barrio Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Erik Schraga, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - EMBRACING BEHAVIORAL HEALTH L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CITY OF BROWNWOOD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Complete Wellness Family Medicine,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prosano Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BABSON \u0026 ASSOCIATES PRIMARY CARE, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARDIOLOGY CONSULTANTS, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brian Lo M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Your Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Houston Sleep and Narcolepsy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Todd Swick, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - DIAGNOSTIC MEDICINE P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MedRose Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Physique Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Amin Foot Care - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Center for Child and Family Psy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SkyTherapist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Crown and Soul Primary Care and Wel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Excel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Savannah Orthopedics and Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Fitcare Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lanier Supportive Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Michelle Tallman, NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - INDYTELEMEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - First Choice Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Podiatry Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - PRIMARY CARE EVERYWHERE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Healing Journey Therapy Services, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Terry L. Franklin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mosaic Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mobile Medical Services California", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Carpenter Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - POSTAGE HEALTH INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Glow Health Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care of Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Expand Health - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neuroglee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ALLIANCE REGEN AND REHAB, PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - VILLAGE MEDICAL CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - University of Detroit Mercy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Solace Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Washington Solutions Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NITIN GUPTA, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - HAVENLIGHT PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Enlighten Infant Home Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Candid Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Park DuValle Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Loudoun Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Wyss Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Bounce Back Physical Therapy- Start", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Primasun, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Toetal Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - TrinityKare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rheumatology East, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Southside Diabetes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Millennium Gynecology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - HEADACHE SPECIALISTS OF OKLAHOMA, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hua Moon Women's Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lake Wales Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Accordia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Lorna Fedelem's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Cedaredge Doctors Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - C AND S LAB MANAGEMENT SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AJ Foot and Ankle Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - EConcierge of Efficient Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Jal Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Hope Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LCH HEALTH AND COMMUNITY SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Lainie Hurst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Lajas Medical Group Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Simple Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ellis Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "California Telehealth Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Mobile Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MPOWERR Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - BE WELL DIABETES AND ENDOCRINE CENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Great Lakes Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEDICAL NETWORK OF ALASKA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Healthy Minds Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marfa Country Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Let's Talk Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SMS Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - The One Spa Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Portages Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Concierge Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Bmh Corp Inc Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TAPESTRY 360 HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - CENTRAL KY DERMATOLOGY, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "100%BEAUTYBYMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DELAR PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HARAMANDEEP SINGH, MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Family Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RESTORATIVE HEALTH SOLUTIONS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - GIFT ME HEALTH INTERNATIONAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dauphin Island Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Petersen Concierge Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - University of Arizona Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Premier OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "My Pediatrics (SATELLITE OFFICE) - Land O' Lakes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sun Country Pediatrics (MAIN OFFICE) - Spring Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Community Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mary Lee Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Transcend Performance and Lifestyle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hampstead Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Columbia Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - MORNING STAR OSTEOPOROSIS AND METAB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - SHAW LIVING, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Patrice Powell Adult Health NP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - VIP WELLCARE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Apex Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Enabled Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Cynthia M Palmisano DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinica Villanueva Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Friends \u0026 Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Clio Health Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Stetson Hills Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Nurturing Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dublin Direct Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DNP Derm - Startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - CF Industries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pontchartrain Sleep Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Health Brigade", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Better Healthcare At Home, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Integrity Medical, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - DESIRE WELLNESS GROUP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capital Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gago Center for Fertility, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Utah Kidney Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Navis Pad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Weight Loss Medical Providers PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Anne Marie Jetton, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - New Hope Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - VITAL CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nova Spine and Pain Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Music City Physicians' Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Concierge Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Family Justice Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - SHIFT YOUR JOURNEY MENTAL HEALTH CO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pierre Physician Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Excel Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Private Network Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Horizon Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - SUZANNE R. STEINBAUM, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedExpress Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedExpress Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optum", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optum Medical Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optum Virtual Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Optum MedExpress", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ayotte Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARDIAC ASSOCIATES OF NORTH JERSEY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Cardiac Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PHILADELPHIA PREMIER CARDIOVASCULAR CONSULTANTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Samuel Family Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TWIN LAKES HEART CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Magic Valley Medical Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Murphy, Leslie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AZ Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LANA SMITH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Behavioral Pediatrics of Rural Geor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Rurban Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SMART Psychiatric Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nurture To Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UTRGV Research", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Collective Rural Healthcare System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Nest Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Kinder Minds LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hamilton HealthCare Aesthetics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Frisco Quick Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Fig \u0026 Fern Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Direct VIP Care Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - COUNTRY DRIVE INN MEDICAL PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - ADVANCED FAMILY HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - The Aliveness Project", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Triumph Agility Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Revive Spine and Pain Care Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mercy Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Slim Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Atlantic Vein and Vascular Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BAMF Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Phlebotomy Ink Allied Healthcare Se", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Rachel Benn LLC - startup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Essential Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Claret Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Essential Wellcare, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Rose Ho, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - County Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - East Tennessee Vein Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - MATUSHKA OLGA MICHAEL MATERNITY ASS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ND - Labs Your Way, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Feliz Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Uptown OB/GYN of New York, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ally", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bellingar and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bradenton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Care Partners of NE Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovacare Health Cheney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovacare Health Garden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Waters Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - New Life Recovery Clinic For Addict", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Schiano, C/Tomlinson-Phelan, M", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE HEALTH ALABAMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE HEALTH ARKANSAS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE HEALTH MARYLAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAGE HEALTH MISSISSIPPI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Associates In Medicine \u0026 Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Joseph W. Boatwright III, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - BRISTLECONE FAMILY RESOURCES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Swayze Smith, Cynthia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Acute Care Surgery PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emhof, Leslie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - LIGHTNING MEDICAL PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Jovina Health and Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - CITY MIND NP IN PSYCHIATRY P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Equity Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Anna Marie Grace Ramos Kastner PMNH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Illuminare Behavioral Health Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - OLD TYME FAMILY MEDICINE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Mid State Orthopedics Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Hall Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ELITE MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH GEORGIA VEIN AND AESTHETICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Coralis Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Douglas Dycus MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinica Monterrey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Wasatch Horizons Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Better Health with Nicole LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - TruCare Elevated Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Knownwell Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Pierce Healthcare Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Elite Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Acceptance And Recovery LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Mid-Kansas Women's Center PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Murray \u0026 Associates Family Healthca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Walk In Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Prohealth Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Zelman Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wellness and Mental Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cruz Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Maternal and Family Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - JOAN GIORDANO MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - VALLEY MEDICINE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SCCH Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Morgan Silldorff MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Charles City Medical Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - CSRA Renal Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - MidAtlantic Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nestor, Gregory W", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Comprehensive Vein Care DBA Persona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Caring Physicians Charitable Networ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Nutrition \u0026 Health Associates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Epic Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - WNC Healing Collaborative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Nucleus Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ronin Sleep Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Izzo Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Coalville \u0026 Kamas Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pediatric Partners of Hampton Roads", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - NuvoAir Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VERO WOMEN'S CARE LLC - Start Up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - VivaSalud Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VivaSalud Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Charleston Pain Management Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Day Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - TrueCare Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hearthside Medicine Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Lotus Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - DENNISON RENAL CARE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Solon Vein Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amador Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeffrey K. Etemad D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Argiro Zofakis LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Smart Health and Wellness, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stephen M. Sinkoe, D.P.M., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SimpleTherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Westtown School Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Western Skies Wellness Start-up", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Synergy Health Advisors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Robert M. Westcott, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Seahurst Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nimbus Health MSO Georgia, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nasimeh Yazdani, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Aria Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Amjad Medical Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Union Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Winooski Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - INDIANOLA FOOT AND ANKLE CLINIC, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MD Your-Ology Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - BACAS Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Orange County Pediatric Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - The Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TRMC Provider Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Brighton Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Valley Oak Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Bauer, Michelle M.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HANA ROHAN, CARDIOLOGY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedArrive", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Medical Center of Georgetown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carlos E Maas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pulmonary Sleep and Critical Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Rifai, Aya", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Authentic Mental Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Footcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Elayne and James Schoke Jewish Fami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - SURYA N. CHALLA, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ELBELL, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALL WELLNESS MEDICAL CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - RABADI OCCUPATIONAL THERAPY REHAB P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Oesch, Seth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - James S. Amontree, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - MSE Behavioral \u0026 Mental Health serv", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southern Charm Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Select Internal Medicine \u0026 Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADVANCED ORTHOPEDICS NEW ENGLAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Siegel Cohen Kasmin \u0026 Brown MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - WP STANFORD PC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - GoldB Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - COHEN CONCIERGE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Neurology \u0026 Sleep Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Grace Family Medicine, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Harlandale Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MILTON BROWN AND ASSOCIATES, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Riverside Village Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SCCH - MAT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - AltheaCare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Preval Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - JULIE SACHARKO APRN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - June R. Tunstall, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Alliance Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Alma Integrated Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Su Clinica Familiar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lanier Foot and Ankle, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Peace Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Lawrence E McGinness,DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pediatric Center for Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Caitlin Chandran, MSN, APRN-FPA, FN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - US Health Fairs - Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - NOLACHUCKY MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Neurology Care in the Berkshires PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Skycloud Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Bay Medical and Wellness Center Cor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Foley Family Practice, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Horizon Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Casa Ruben Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bethany O'Connor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Mental Health Connections, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WHITE MEMORIAL MEDICAL GROUP, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Leslee Ruszkowski, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Imagine Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Imagine Pediatrics Care Coordinatio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Norris Healthcare Concierge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREMIER MEDICAL GROUP OF MISSISSIPPI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Tomas E. Vigo Paredes, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Sleep Medicine and Neuroscienc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Great Lakes Bay Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Peace Rain PMH, LCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Greenspring Personal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cityblock Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Zenith Mental Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - REFRESH HEALTH PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Glenn Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Burton Wellness Injury Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Chronic Disease Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Deaconess Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Deaconess Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLHG-Acadian LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Challapalli Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Astra Healthcare and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Tree City Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Corner Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Urogynecology Associates of Central", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Burton Creek Rural Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Karli Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Purvis Moyer Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Sunrise OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Caring Hands and Heart Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MOUNTAIN HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dorchester Health And Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Millennium Cardiovascular Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MD Ally Telehealth Services PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - White Oak Medical Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SYNERGISTIC HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Saint Michael Therapeutics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LQR, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Decatur Pediatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - IVMD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newport Pediatric Premier Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Catch Mobile Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AUSTIN AREA BEST CARE FAMILY PRACTI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Linda Mays ARNP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Innovative Womens Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Carolyn J Boone MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Solid Foundation Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEART GROUP OF THE EASTER SHORE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Thunder Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Restorative Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Crescent Care Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Integrative Health \u0026 Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Rising Care Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lola Steinbaum MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - WANDERMERE FAMILY MEDICINE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Doral MSO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Greenville County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anesthesia/Pathology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Greenbrier Valley Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oak Hill Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Virginia OrthoNeuro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - VitalBridge Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Coastal Obstetrics \u0026 Gynecology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Braw Beathan LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Surgical Associates of Fredericksbu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Elements of Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - J.Nathan Rubin,MD FACC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Bravely Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family1stClinic,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - GROSSMAN, COLBY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Lindsay Maggio --Nona Perinatal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mile High Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Outlast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Empower Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Amanda Hendricks, APRN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Guiding Star El Paso", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wagoner Health Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Emmanuel Medical LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - North Alabama Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - West Coast Wound Care Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Lotus Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - South Park Inn, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Evergreen Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Park Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delaware Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Gateway Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Vigo County Community Corrections", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gateway Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PrimeCare of Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Moreno Vally Community Medical Grp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - DR. BUTLER \u0026 ASSOCIATES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Maine Street Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida International University - Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida International University - Main", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Summit Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - One Mission", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - VITALITY MED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Peds Purpose LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRO-HEALTH MEDICAL, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Wellness With Molina \u0026 Associates L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Health Optimization PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Delaware Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Toole, Ashley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Internal Medicine Assoc of Richland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Transcend PSI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Perdido Rentals LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Sports Orthopedic Advanced Rehabili", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nephrology Consultants Pinellas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sara Siavoshi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CareSmart Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Global Ortho and Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ace Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Maranatha Family Company LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mid Kansas Pediatric Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - The Sweet Life Advanced Diabetes Ma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Foot Care of Long Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Foot and Ankle Care of Moriches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sayville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Livi Medical Services, LLC DBA Sage", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Bethel Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TEXAS INTERVENTIONAL PAIN AND SPINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lakeland Midwifery Care, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Aleman Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - A Center for Women's Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cleveland Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Kids Pediatrics LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Quint Family Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Region IV Area Agency on Aging, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arise Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Next Generation Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - My Virtual Physician", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CASILLAS MEDICAL AND WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Blessingway Midwifery Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Innovation Counseling Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jose L Villalobos Jr MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Thrasher, Barton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Churchland Family Medicine, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arlington Progressive Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - EdenMD Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Associates in Pediatric Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Woman to Woman GYN of Naples", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Women's Care Health and Birthing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Act On Total Heath", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Act On Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Reliance Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MERCY SEAT MEDICAL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - EQUAL HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Daniel Goldin MD \u0026 Dr Alana Levine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pediatric Assoc of Greater Salem", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Evencare Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - ChoiceHealth Member Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Einas Joseph MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Grayson Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Zocalo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cole Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lake Pflugerville Pediatric House C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - John J Miller MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Brookside Medical Home Visits LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Edelstein, Elizabeth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bodywork Science Institute, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PORT HURON E.N.T., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CHARLES R. STEVENS, A PROFESSIONAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Gentox Wellness Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - A \u0026 A Foot and Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - 302 Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WBMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Dermatology Partners PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - TX Foot \u0026 Ankle Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Saint Louis Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Venice Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kimberly Benton, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Orthopedic \u0026 Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Adams Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Open Hearts Healing Minds Corporati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Idaho Integrative Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - A WOMAN'S VIEW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pediatric Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Amber Wellness Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Southern Shores Urogynecology and P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MM Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WeightWise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Isaac Gorbaty, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Healing Path Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Care Now Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NeuroSpine Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Johnsons Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Valley Women's Health, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The DOT Express", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - F.I.T MEDICAL WEIGHT LOSS \u0026 OPTIMIZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Norma Roche MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Athena Health Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - James G. Staggs DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAROLINA FOREST URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH STRAND INTERNISTS, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - EXODUS MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Family Practice After Hours", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Phoenix Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Theresa Velasquez NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Ovation Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - J Brandon Morgan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Nippon Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Painless Peach Pain Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Aklilu And Cobian Infect. Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Asgar A Dudhbhai MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - French Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - E and A Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ChesPenn Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Yakima Surgical Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Paul A Lenz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SUMMIT ANESTHESIA SERVICES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - North Mason Regional Fire Authority", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH MISSISSIPPI PRIMARY HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - William M Duke MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - OSTC Group LP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Resilient Children and Families", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Danny Silver MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DonMar Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - K \u0026 M Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mazzoni Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Ferry Peak Women's Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Clayton Schroeder MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - GT Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Women's Healthcare Affiliates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Erie Spine \u0026 Pain Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Comprehensive Pediatrics and Intern", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Gastroenterology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - FAMILY FOCUSED HEALTHCARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Total Care Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Little Pine Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Chesapeake Primary Care Group PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Scheffel Foot Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Holistic Health Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Orthopedic Sports Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INDEX HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "California Center for Sleep Disorders", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grove Medical Equipment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "M.E. Wellness Care \u0026 Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedElite Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Fortier Gynecology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Boise Behavioral Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - The Sanctuary MD Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Advanced Vital Being Health \u0026 Welln", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Deerwood Women's Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Premier Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Robinson Family Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Shepherd Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - IO Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Idaho Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Montana Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Rockingham Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TOSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Wildwood Sanitarium Incorporated", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Eagan Valley Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Cardinal Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Shadwa Hassan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Steven Jorgensen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Orthopedic Physical Therapy Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Mayfair Medical Systems, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MI FAMILY MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jack Wesley Wallis, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Harbor Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medicine of East Texas PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Keller Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Modera", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Modera Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nacogdoches Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - G.S. Bindra, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tall Pines", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Florida Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mattoo \u0026 Bhat Medical Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Valley Center for Dermatolo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Jennifer C Dunn MD \u0026 Associates OB/", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Priority Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DAVID J. PATTON, MD., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Bone \u0026 Joint Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hillsboro Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bianco Brain and Spine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MEDICAL WELLNESS AND HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHS IL MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Medical Center At Ocean Reef", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PursueCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - BEACH CITIES WELLNESS A PROFESSIONA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Medix Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sailwinds Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Krysiak Palacio Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Health Network of Central New York Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Catalyst Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wellness Equity Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Tucson Pain Institute PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Grapevine Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - NUVITAL INFUSION LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - New Hope Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pallinet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Pacific Regenerative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Garcia Consulting and Lactation Ser", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MAXIMUM MEDICAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - BeStrong DPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KMED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ACCESS HEALTH PLUS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tamiami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cantera Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Everly Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Brighter Day Whole Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - DINTYALA MEDICAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Community Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mat-Su Women's Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McKenzie Heart, Lung \u0026 Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Solstice Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SHORELINE WELLNESS AND PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ELOY ROMERO, MD, INC., A PROFESSION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Healthier Minds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family HealthCare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nacogdoches Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Health Partners - Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NETIMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - RICHARD ZIELINSKI MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Affinity Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Moreno Valley CMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fairgrounds Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Faith Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family Psychiatry Practice \u0026 Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "10135 Colvin Run Rd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Foundations Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Healing Hands Integrated Wellness \u0026", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aspiring Minds Psychological servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NUTRINERD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Combs Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Premier Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - eleMED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HealthFirst Family Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Bluegrass Direct Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Collective Journey Mental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Surgical Associates of San", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Timothy R. Rasmusson M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Dasher Medical Group PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jun Chung MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Broadway Family Medicine Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BROWNING CONCIERGE MEDICINE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Sensory Connections Pediatric Occup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - 4D Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family Care Associates of Montgomer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Wright Touch HouseCalls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dr Jasjot Bhullar LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Prime Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Campbell, Arthur Scott", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Estock, David", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Tuskegee University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Donald A. Ramberg, M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - PORTER CARES MARYLAND LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Nourish Adolescent Wellness, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Premila Johnson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - HUDSON VALLEY INTEGRATIVE HEALTH LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KEN ADOLPH WELLNESS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DURMED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Atlantic Pain Management, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bayview Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Eastern Neurology and Neuromuscular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Essential Internal Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Westchester Podiatric Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - MD Urgent Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Mangata Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Family Care Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Amoskeag Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - CELLULITE PHYSICIAN SERVICES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GREATER SEACOAST COMMUNITY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - GREATER SEACOAST COMMUNITY HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Sellersburg Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - HEALTHWORX, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Nathamy, LLC DBA Derm Now Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Blue Sage Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Weight In Gold Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murphy Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Milestone Pediatric Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vaughn Internal Medicine and Pediat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shade Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Oceana Community Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lerro, Elsa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - New You Medical Spa LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lamprey Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Longview Occ Med Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - RONALD M FRANK MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ACUMEN HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Piga Primary Care Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Psynergy services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - KMC Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AHAVAH HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Cornerstone Whole Health Organizati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Oxmoor Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Healing University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Libertas Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - REME HEALTHCARE CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NORTH WOODWARD INTERNAL MEDICINE AS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heights Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - NEW RICHMOND FAMILY CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Swiggum Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - North Shore Internal Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - InspireMD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pediatric Direct Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hemsley Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Guiding Light Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Saucedo Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Rheinfelder, Shirley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Waynesboro Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - OccMed Health and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - House Call MD's LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Precision Family Medicine \u0026 Aesthet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fannin, Tuyet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Ian Russinoff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - South Dayton Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Bawa and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Walking Mountain Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Nagji J. Sureja, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Engedi Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Seattle Endocrine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Inspirada Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Irene Teper MD Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Wildflower Breast Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - L\u0026N Podiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - ELEVATING WELLNESS NW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Malcolm S. Harris, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SOWALHEALTH INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - R. William Junius, III, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Asheville Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Eunice Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Small Groups Training", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - My Heart Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Phillip Surgical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Center For Cardiovascular \u0026 Thoraci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - New England Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Semmes-Murphey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SpineXpress", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - ASHLEY ANN RICKETTS DNP, PMHNP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Daisy's Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fortuna Family Medicine inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - The Pediatric Place, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - MRS Health Care LLC dba Acorn Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Housecall MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CALIXTE MEDICAL CENTER INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NHASA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Marc Feingold MD ,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - HAMMOCKS MEDICAL CARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Salience Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - ALLIED ANESTHESIA, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - McMillin, Matthew", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Hamilton Trenton Urgent Care - Ozed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RESTORE FIRST HEALTH RIVERDALE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RESTORE FIRST HEALTH SAVANNAH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restore First Health Decatur", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restore First Health Johns Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restore First Health Marietta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Restore First Health New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SILVA FAMILY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rhonda Brown NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Fowler Allergy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Adib A Chidiac MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - New You Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Northwest Neurological Assoc. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Home Sweet Home Pediatrics, P.L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Regal Geriatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Access BHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Lifepoint Rehab Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Agnes Kinra MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Bluegrass Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - TRANSPONDER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CKCM Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Clermont County Community Services,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - KUMARI ANANDA HOBBS M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Laredo Sports Medicine Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vila, Nedsely", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OB-GYN Associates of Erie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - American Light Homecare Service LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Triad Complete Healthcare A07, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GASTRO KIDS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Center for Vein Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Hampstead Internal Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Anchor Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Comprehensive Health Solutions PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - THE RECOVERY CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - RANDALL STREET MEDICAL PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Healing Waters Laser Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Caronette Fibroid", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPITAL MEDICAL CENTER PHYSICIAN'S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - CHOICE HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - The Functional Family Primary Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MYRA REED, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Harford Mobile Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Hanna Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Twilight Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - The Landing MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - AgLands Family Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Recover Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - MedPsych Integrated, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kalihi-Palama Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - AURELIAN STANDARD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Infections Managed Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - St Anthony's Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - SOUTH SHORE MEDICAL ASSOCIATES INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PrimeDoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Advanced Medical Specialty", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Hormones and Immunology Personalize", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - MECFS Clinic MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Atlantic Telehealth Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Encompass Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - East Memphis Orthopedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - KidsWood Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Unity Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HEALED AND EMPOWERED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Universal Medical Institute Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Ultimate Care Medical Clinic Profes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - JUAN J RIVERA MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CALIFORNIA ORBITAL CONSULTANTS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ASPIRE INTERNAL MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - SENACARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Decompression And Physical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Laurel Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pearce, Thomas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Contacessa, Frank", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT Care of MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Converge, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - CJ MEDICAL CENTER. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NEXT LEVEL HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NEW LIFE OBGYN PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - CALEB MOORE MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New pilgrim Rest Baptist Church", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - SISU HEALTH CLINIC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Granby Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Greene Care Clinic INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Christine Sigman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brian Tison MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Airway Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kenneth M Greene MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Adeline Memorial Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Meshel Cardiology, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - The Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bee Ridge Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "724 Yorklyn Road", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Beyond Wellness Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - A\u0026A Vascular PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Ferguson Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Equal Justice Initiative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Robbins Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DermoPath Laboratories", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Galveston/Coastal Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - BORSTING LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Kevin D Campbell CRNP PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Concinnity Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Enphysio LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pefha Health \u0026 Wellness Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Summit View LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Watertown Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Mind of Peace Counseling LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Crossroads Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - New You Surgical Weight Loss LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Palo Verde Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Focused Primary Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Dermatology House Calls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Pacific Northwest Endocrinology PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Michael A. Middleton M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Itest Health PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Gearhart, Lauren", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brookhaven", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Lakeland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gulf Coast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeland Premier", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oxford Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vicksburg Womens Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Womens Pavilion", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - BEAUFORT FAMILY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Your Doctor Now LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Triad Complete Healthcare A06 LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jose I. Rodriguez, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Faith Community Health Center Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - CLAUDIA T MARTORELL MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - TLC Mobile Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - ANDREW JUECHTER ND PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cross Road Health Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Springfield Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Kilsan Koh, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - INTERVENTIONAL PAIN \u0026 SPINE CARE LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MMG Stansbury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mobile Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MYMEDCARD HEALTH INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dimer Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - FOUNTAIN OF WISDOM AND HOPE L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - FirstChoice Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - BEYOND HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nevada Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - VALLEY VIEW WELLNESS MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heart and Soul Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Marshall Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Hope Haven Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Virtuosa Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - West Linn Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - GHANAIAN COMMUNITY HEALTH CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - WILLIAM FORSYTHE DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Nightingale Center Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - SOUTH PUGET SOUND NEUROLOGY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AFFIRM DIRECT PRIMARY CARE P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - TAMPA HEART \u0026 VASCULAR ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Northwestern Specialists For Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Legacy Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - REVITALIZE SABINE MEDSPA \u0026 WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Radiant Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SCHULKE SIGNATURE MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Williams, Stephen Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OB-GYN SOUTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Dr O'Leary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Magnolia Mobile Home Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Allen E Priest MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - REDEEMED CHRISTIAN COUNSELING, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Commonwealth Sports and Spine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MIDWEST VASECTOMY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UAF Legacy Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Allergy Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Priority Health Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - MOMD LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Boundless Beauty \u0026 Wellness Ltd Lia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RTW Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mindful Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Advanced Health and WellBeing, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SUNSHINE ANKLE AND FOOT EXPERTS PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - RegenMD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ilant Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - VIAROHEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Ragunton, Luis J.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Hartig/Maeder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Siqueiros, Armando", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Davis Whole Family Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Newtomics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEWMAN PRIMARY CARE HEALTH AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Neuro care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Rhyme Time Pediatrics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Medical Solutions Health and Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - EMCare2U, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patient Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patient Care Therapy Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - DOCTORS OFFICE CT PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Internal Medicine of Stamford PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Northeast Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr Zachary Barnard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Winke Orthopedic Pain Management Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New Beginnings Women's Care and Aes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiovascular Institute of New England, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EUGENE L FRANK MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lynore Martinez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Institute of Orthopedics Spine \u0026 Sp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Casper Medical Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MENDEZ FAMILY CARE, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - LifeSpan medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Health to Home Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Maple Health Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Bewell Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Vascular Care Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Srikanth Ravindran MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Diabetes Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PREMIER OBSTETRICS AND GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Meliora Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - BAYSHORE CONCIERGE MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - HORMONAL WELL-BEING PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Capitol Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - After Hours Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Internal Medicine Partners, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - DATIVA BODY AND MIND HEALTHCARE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - White Iron Behavioral Health Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - NAVARRO COUNTY AMBULATORY CARE ASSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SANZO MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Primary Care of Eagle Pass PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VOSKUHL \u0026 MCGHEE, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Commonwealth Internal Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Choice Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - DERBALA INSTITUTE FOR REPRODUCTIVE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Beckham, Michael", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Children's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HEIDI DEITCH\u0026SEAN DEITCH A PROFE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Revive", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - STUART MARTIN WEISMAN, M.D., INC.,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Bella Vita Health and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - IHM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - OHANA MEDICAL GROUP, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Arkansas Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oberline Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Donelle Laughlin, M.D., Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Precision Healthcare Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kemell Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Tengson Medical Offices LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - CORE CONCIERGE HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pedro A Blandon MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - DOUGLAS G. HAMES MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Hope Primary Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Premier Primary Care Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Summit Medical and Obesity Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Personal Medicine of Rochester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Higi Professionals of Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bayshore Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cookeville Pregnancy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - DIABETES \u0026 THYROID CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Legacy Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Premier Pain Treatment Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Pain Treatment Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ADVANCED THERAPY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Interfaith Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Reach Out of Montgomery County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Madison Free Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Mandi Allen-Bell MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alpha Psychiatric Sevices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Caring Wounds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - ALLIANCE PERSONALIZED HEALTH CARE P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Richard C. Hogan MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NP ANYWHERE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - DeWitt Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - VISIT HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VisitHealth Urgent Care - Van Nuys", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VisitHealth Urgent Care - Ventura", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Venetian Isle Medical OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - NEW YOU HEALTH CLINIC, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Wyoming Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - CENTRAL WEST HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gogineni, Prasanth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Michael A. Castillo, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Kidney Care of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pin Ministry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Psych Care Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Juanita Heersink", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Oxford After Hours Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Partners In Integrative Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALI HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - ConfirmaMD Smith Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - ConfirmaMD Gilbert Mbeo MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gregory S. Tapson, MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - STEVENS, MICHAEL E.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Desert Ridge Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Orthopedic Specialty Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Specialty Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - DTC Family Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Alexa Fiffick DO and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Elevate Partnership PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Optimal Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Franzi-Osborne, Rebecca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Susan Fullemann, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Troup Cares Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Caring for Kids, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AK \u0026 Friends LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - FREDY CORDOVA, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Michael H Fritsch, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - VBEK Texas OBGYN Specialists PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Timothy D. Peterson MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedStat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Redimed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Four Peaks Neurology, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Weir, Jayson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Health Meets Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiocare Heart and Vascular Cente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "400 SE Osceola", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Tillitz, Edward", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Vityl Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MICHIGAN HEART RHYTHM CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - IM \u0026 Pediatric Assoc. of Bristol", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Antonio Advanced Medical Group,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mamdouh Riad MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Charles C Johnson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CARDIOVASCULAR INSTITUTE OF CENTRAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Friendship Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Integrated Neuromodulation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cabot Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Calzada, Pedro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Gentle Care Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Barbara Anne Hessel MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - David J. Brown, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chapel Hill Doctors Healthcare Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - G. Vincent Bailey, MD APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cassandra Ohlsen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Natoli, B / Natoli, L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Physicians of South Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Summit Atlantic Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Summit Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - North Valley Surgical Associates, I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Babylon Village Medical Assoc. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Hillemann and Kirwan, MD's, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Micky L. Busby, M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - COLLABORATIVE HEALTH GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Barbara J. MacFarlane, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Dr. Lisa C. Hill, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merced Faculty Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Paul E Diehl MD, A Medical Corporat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Philip A. St. Raymond, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Fit for Life Medical Center, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Next Step Orthopedics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Christus LASBHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arrow Surgical Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Total Women's Health and Wellness C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crestwood Physician Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Women's Internal Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Hand Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Margie Corney, MD, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Family Practice Clinic of Boonevill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Anna Petropoulos Weissleder, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jill A Bressler MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Gynecology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Robotic and Min. Inv. Uro.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Pulmonary Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Lisa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oklahoma City Gynecology and Obstetrics/Lakeside", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urogynecology of Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Gastroenterology \u0026 Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Natalie L. Chambers MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Howard K Horne MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Tierney, Letitia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mali \u0026 Mali Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pineville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robert Sileo M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tristan Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sellwood Medical Clinic,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Brock Orthopedic Surgery and Servic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael A. Mitchell, DO, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holistic Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Foot \u0026 Ankle Sport Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - RGV OB/GYN Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Greater Boston Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Central California Neurology Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Raney Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Alla Korennaya, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Antheia OBGYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Jay B. Krasner, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Marwan Iskandarani MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Pulmonary Specialties PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Husna R. Baksh MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bayfront Cardiovascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bayfront Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bayfront Trauma and Acute Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bayfront Physician Speciality Serv", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tri-State Bariatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Coastal S. Eastern Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Edward A. Kepp MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Fairview Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - John P. Gillespie, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Henry R. Paul, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Heart Clinic of Hammond LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - CPI Physicians, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Patricia Modad, MD, PA dba Palm Coa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Lendermon Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Planned Parenthood Greater New York", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Louis G. Fares II, MD FACS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Upper Cumberland Urology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Melissa Kempf MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROSEVILLE SURGICAL ALLIANCE, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metro Chicago Surgical Oncology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Andrew E. Nullman, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Clove Lakes ENT, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THREE LOWER COUNTIES COMMUNITY SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dublin OBGYN Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Aspen Foot \u0026 Ankle, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Miami Global OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Leggett Medical Group , Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Northlake Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Teresa Longoria MD, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Ferrell \u0026 Allison, P.S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Gulf South Foot \u0026 Ankle, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fazeela H. Baqai MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Family Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - East West Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Child Health of Madison County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - James Robert Parkey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Ortho Surgery Group of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMY D. LICHTENFELD, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JEFFREY M. LORIA, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Advanced PainCare, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - The Hughston Clinic, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hughston Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hughston Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - David Rice,MD,PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alabama Pulmonary and Sleep Special", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Arthritis and Osteoporosis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Penstein-Hirt, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Coast Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orthopaedic Associates, USA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Family Allergy \u0026 Asthma Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - OC Physicians Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - David A. Thanhauser, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Clinical Neurology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Southwest Eye Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Valley Health Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Juniper Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Prima Heart, a Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Teresa A. Marlino MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - William F Schubert, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joshua International Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Minor Emergency and Family Care Cen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sam Sunshine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Joseph E Ambrose DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - JALH Physicians Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Piedmont Orthopedics | OrthoAtlanta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Access Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Adeela R Ahsan MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - DUSON FAMILY HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Aethena Gynecology Associates, PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Arthritis Care Center Oklahoma, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - K.A. Hamdy, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pacific Rheumatology Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MATTHEW D. GOLD, M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Feagins Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Lakeside Heart and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JONAH MEDICAL GROUP, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Layne Kumetz M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - James P Taitsman MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Healthcare Clinic 1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gorman Family Medical Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RCH Family Healthcare Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rochelle Family Healthcare inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Todd McNiff MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Laura E. Babe, M.D., P.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Bert E. Geer, DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Central Montana Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Optimum Women's Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Pain Management Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - David B Cox, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Medical Acute Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Richard P. Guerrant, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Fort Smith Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Michael Minieka MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Jeffrey B Chick MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Katz Orthopaedic Institute, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - T Robert Rhodin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Helen Rostamloo MD Inc, A Professio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Guy R. Fogel, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Richard Batstone MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FMG PrimeCare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wiregrass Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mid Atlantic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Anesthesia Pain Management Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - East Coast Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - J Michael King, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta West Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Marlene D. Galizi MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - LPNT Spring View Physician Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Housecall Physicians of Illinois, S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Iris Castaneda-Van Wyk MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Jena M. Roy FNP LLC dba Basile Fami", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jennie Stuart Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Dennis S. Gray, M.D., PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Gill Medical \u0026 Geriatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lloyd Van Winkle, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Russellville Podiatry Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - PRIME MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Rajendra T. Gandhi MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Robert Walker, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Ben J Palombo, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WALLACE FAMILY PRACTICE, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shi Yin Wong MD Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BANYAN INTEGRATIVE HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Margaret L Grossman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Watauga Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Narindar K. Nat, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - John Cherf, MD, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Gardner MD, PC and Hamant, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Scott D. Isaacs, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Women's Wellness Center, Prof LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Nicole B Baptiste MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - S.S. Gill, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Auburn Internal Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr.Robyn Young \u0026 Dr.Barbara McQuinn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clinical Renal Associates, LTD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Clinical Renal Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Kenneth L Crump MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ridgewood Medical Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Northlake Neurological Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Cardiovascular Specialists PSC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Alcovy Neurology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Murhaf Naddour MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - New Braunfels Bone \u0026 Joint, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grace Family Health Main Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murrieta Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Michael J. Soffer, MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - St. Joseph Urology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alisa L. Williams, M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Frederick J. McClimans, D.O., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Beth Roland MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Guram - Tomball Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JVC Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Family First Healthcare, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Springs Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - South Central Colfax County Special", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Gina R. Busch, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Edward H. Tiley, III, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Stacey E. Copeland, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Portland West Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - F. L. Ponce MD Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Cardiology Specialists of VA, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Cornerstone Family Practice, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Waco Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Allergy \u0026 Asthma Specialty Group P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiology Clinic of Muskogee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Leachman Eye Institute, PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kids and Teens Orthopaedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ambulatory Foot Care Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Cardiovascular Solutions Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - SV Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Reading Cardiology Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Anesthesia Pain Management Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH DENVER ENDOSCOPY CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH DENVER GASTROENTEROLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Duluth Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Penn-Kidder Medical Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Patricia E. Laden MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - All-Star Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Nimisha Shukla, M.D.,P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Total Care Walk-In Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bente Kaiser M.D., Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Barbara Rugo Focht MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Graham Emergency Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BoulderCentre for Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - New Beginnings Women Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elba Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paul Dulaney, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Robert L. Liljeberg, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thomas W. Brown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tom Peurifoy, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Troy Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ursula Wilson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wilton McRae, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kee In Yang MD DBA Mission Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maine Family Planning", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Wise Patient Internal Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Clinchfield Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Monterey Peninsula Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Phenix City Pain Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Southern New England Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SNE Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - North Carolina Eye Ear Nose \u0026Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Physicians Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Psychology Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HEALTHSTAR PHYSICIANS, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sam P. Chia, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Florencio L Reyes MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Elizabeth J. McConnell MD PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Xavier Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Gray Station Neurology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Eastside Medical Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Seasons of Life OBGYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vaughan Association of OB/GYN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Cross Gates Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - CommunityHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Healthlinknow, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - DeLeo Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Apex \u0026 KD Medical Group Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - ESPES EST, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Cape Cod Pediatrics LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Olde Towne Obstetrics \u0026 Gynecology,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coral Springs Holistic Pediatrics,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Excellence Medical Centers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pediatric Care of Chelsea, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Rapid City Regional Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RFU of MEDICINE AND SCIENCE LAB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rosalind Franklin University Health System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MAIA CHAKERIAN, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - LPNT Spring View Hospital, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - East Bay Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jun R. Chiong, MD, MPH, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Edgardo G. Alicaway, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Spyros Tsoumpariotis, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gary S Toig MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Sung Won Lee, MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Neurology Medical Group, In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Holtzin Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Innovative Pain Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alliance In Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stat Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Francisco J. Gutierrez MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Trosch \u0026 Kirschner MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wendell J. Courtney, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Ear, Nose \u0026 Throat of Michiana, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Regis College of Nursing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - FOOT AND ANKLE PAIN SPECIALISTS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Express Care South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Express Care West Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Express Care of Fulton PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - David Bradshaw, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - South Bay Retina, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Physical Medicine \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Coastal Orthopedics \u0026 Sports Medici", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Doctor's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Community Health Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Charlotte Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Vine Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Caroline M Colin, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Pediatric Medical Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Edward Lee Holt DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Roswell Internal Medicine, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Vascular \u0026 Vein Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neurologic Consultants P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Creekside Sleep Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Red Mtn Cardiothoracic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - A. Paul Kalanithi, M.D.. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Gastroenterology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Crossville Gynecology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Gateway Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Capital Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stephens Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Tri State Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Performance Sports Medicine, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatric Associates of Jacksonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Kari E Prescott, D.P.M., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Thompson Peak Family Care, SHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Tendercare Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Kidney \u0026 Hypertension Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Old Greenwich Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Growing Up Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Symptom Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - First Choice Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health First", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Minden Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Louisiana Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MINDEN PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Minden Medicine and Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgery and Endo Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WorkFit Industrial Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Madison Irving Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Washtenaw Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Bernstein Allergy Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Family Practice MSO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Northern Valley Allergy, Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - JThink, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - David R. Tomazic, D.O., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Nassau Suffolk Internal Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - The Tanenbaum Dermatology Center PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Andrew W Garner MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Gastroenterology Consultants of LI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wade R. Cartwright, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rockbridge Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - THEODORE GERARD A CASPE, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - JORGE A PATINO MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Joan Sy Medical Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Gerardo D Rodriguez, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Family Walk-In Medical Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ILLINOIS SPINE AND PAIN CENTER, S.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Celeste S Soberano MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stephen J Farmer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Iron Horse Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Brownridge Pediatrics P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Southeast Pulmonary \u0026 Critical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Village Pediatric Cardiology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Sunnyside Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Center For Integrated Medicine P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Physical Rehabilitation Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CPAP of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiology of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rahnana Sachs, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Donald R. Gedarovich, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Brain + Elective Spine Treatment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - North Moore Family Practice, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Three Oaks Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lone Star Surgical, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - The Doctor's In PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Andrew Polakovsky, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northern Berkshire Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SVMC Medical Practices and Affiliates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwestern Vermont Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Twin Rivers Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Margaret M. Coughlan, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamlin Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Sesslar Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Ostergard Gynecology and Female", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Premier Ob/Gyn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Louisiana ENT Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Associates in Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Celebration Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Joseph Howard Rupard", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - E. Wayne Haga M.D., Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Surgery \u0026 Sports Medicine of Dallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Appling Family Total Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JEFFERY M BUTLER MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "William H Cantey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Repassy Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Commonwealth Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Today's Wellness and Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TODAY'S WELLNESS AND PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TWPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - The Children's Heart Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Orthopedic Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Primus Medical Group P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Family Wellness Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - VA Advanced Med Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Hope Children and family Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Thomas J. Rojy, Jr., MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Essex Ortho \u0026 Optima Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Intermountain Epilepsy \u0026 Sleep Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Access Internal Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bonneville Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bonneville Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Med Spa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Giebeig Family Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CLINICAL GENETICS ASSOCIATES MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trent Twitero MD, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - G. Steven White MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pinehurst Orthopedic Group, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - William R Salazar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OLIVA AND OLIVA, M.D.'S, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - JEFFREY RUBINSTEIN MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Antonio M Diaz Jr MD PA Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Center for Cardiovascular Excellenc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Gastrointestinal Care Consultants P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALEXIAN BROTHERS MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AMITA HEALTH ABBHH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AdventHealth Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BONAVENTURE MEDICAL FOUNDATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BR. PHILIP KENNEDY FAMILY HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Elizabeth Pierce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDVIP Dr. Patricia Philips", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Annapolis Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hobdari Family Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lee Colosimo, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lapeer Physician Group, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Centers for Advanced Orthopaedics at MMI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Doctors Sutton and Mercer, L.L.P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WHC Professional Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fareeda N Adeeb MD Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Family Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beams \u0026 Gilsenan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "David M. Herzog, M.D., P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinitas Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Primary Care, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Abilio Munoz, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Intervention Arms Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Northwest Women's Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Charles F Wilson DPM, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nicole Sharkey, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - GMT, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - West Central Podiatry Consultants,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - QHC PF Evanston Hospital Corporatio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Jeffrey A. Arons MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Charles K Lee, MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Shores Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Primary Care Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Jim P Hussey DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - George G Ellis Jr MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Tajammul Ehsan MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Shabih Hasan MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Seaport Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Adolescent \u0026 Pediatric Medical Ctr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - DOYLESTOWN MEDICAL CENTER, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Northshore Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "John S. Caskey, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Healthcare of Hendersonville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - At Home Medical Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - George W. Ma, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lake Norman Arthritis Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - The Polyclinic MSO, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Family First Medical Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Arizona Sun Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - B Lynne Gray MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Medicine of Abilene, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Orthopaedic \u0026 Sports Specialist, In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pediatrics on Demand, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Upton Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rheumatology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Carol C. Jagdeo, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Shifa Pediatric Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Calvary Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Nobhill Medical Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Kevin E Wright MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedExpress Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedExpress Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Victoria Family Practice PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Breast Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Primrose Primary Care and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ARIE SALZMAN, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Central New York Child Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ABC Family Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shervin Alborzian, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AAA Allergy \u0026 Asthma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AROC Radiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAR Addiction \u0026 Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCS Student Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLK Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMG Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMG Pain \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CMG Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CUC Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ODI Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OOSM Ortho \u0026 Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OPC Pain Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MetroSouth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - James Leonard Pinto, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Crossroads OBGYN and Wellness, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Rendezvous Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Womens Health Partner, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Scott Newcomb DPM, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - The Digestive Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - The Minnesota Birth Center, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kidney \u0026 Hypertension Assoc. of Dal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Graciela Moreno MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Jeff Klein, DPM PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHERN ARIZONA HEALTHCARE PROVIDER GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stephen Murphy, M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Associates Internal Medicine Physic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Crossville Ortho \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Fugle Orthopedics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lake Washington Sports and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BoroPark", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinity Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Trinity Women's Center- Dr. Smith-Blair", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Lily Internal Medicine \u0026 Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Litchfield Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Keith Schauder MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Columbia Basin Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Homestead Pediatric Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Housecalls Done Wright", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Academy Orthopedics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - S.W. Leehan, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shore Physicians Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Eaton Medical Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Robert Gnade MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Family Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Caritas Center for Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Associates in Women's Health Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Comprehensive Allergy and Asthma Ca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - TAC Holdings, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Wells Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Heart Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Associates in Obstetrics and Gyneco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Urgent Care \u0026 Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Injury Care of Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Injury Care of Colorado Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Platte River Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Stern Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Integra Rehab Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Senior Care Physicians of Illinois", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Foot Surgeons, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Synergy Women's Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Endocrinology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hill Country Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Katayoon Shahinfar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - We Care Family Practice, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Batts Family Practitioners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Interventional Spine and Pain, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Joseph W. Price M.D. \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wake ENT Specialists, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Suncoast Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Taunton Urologic Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Front Range Orthopaedics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Max Health Maine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - James Longton, DPM, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northwest Hand Specialist, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Trinity Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - James R Clark, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Karen L Smith MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wright State Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Cox Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Colon and Rectal Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Family Care Center Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bourne Family Medicine PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - University Suburban Gyn, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ace Urgent Care \u0026 Clinic- Collector", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Sleep and Pulmonary Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Burnham Medical Center, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Amrut R Patel MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Michael Taymor, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Advanced Family Health Care, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Wound Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Compassionate Family Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MICHELLE R. REYNA, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Methodist OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Miriam Shustik MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Madsen Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - CENTER FOR WOMEN'S HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - James W Adams II, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Grand Vein Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Apple-A-Day Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Siskin Ctr Developmental Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Children and Adolescent Pediatric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Matcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Stephen M. Hayes, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MILLENNIUM PHYSICIAN GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoGeorgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Brandywine Family Medicine, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Home", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Horacio R Ramirez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Anesthesia Pain Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Surgical Associates of Monterey Bay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mark J. Coronel M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Herbert L. Watkins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Robert O'Neill, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Common Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Mobile Health Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Wallstrom/ Barber", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cadena Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ottey Bone \u0026 Joint Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cardiovascular Medicine Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Women's Health Partners, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Rodney L. Ellis MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Corner Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - East-West Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr. Ajay Reddy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - MOORE FAMILY MEDICINE PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Orthopedic Foot and Ankle Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Doctors First PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Legacy Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Christopher Cowher MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Rose E Paiva, MD, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Pulmonary \u0026 Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kevin L. Curlis, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Eastern Shore Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ralph J. Napolitano, Jr., DPM LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Kirkland Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Mid Coast Dermatology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pediatric Assoc.of North Atlanta,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Peter R. Bendetson, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Amy L. Friedenthal MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Alexandria Surgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Manet Community Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Manet Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Northern Apache County Special", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Clinical Deployment Stds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Palm Canyon Dermatology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anne Wang-Gomez, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colon Liver Gastro Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Terry D. Howell, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Family Podiatry PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Patient Portal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Hybrid Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Twin Lakes Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - The Heart Center Cardiology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Houston Cardiovascular Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Anita S Westafer, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - John Venditto MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Clinical Deployment Stds 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Consultants in Gastroenterology, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Helena Family Podiatry, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alabama Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ankle and Foot Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Atlantic Foot and Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Burbank Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cambridge Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOOT AND ANKLE ALLIANCE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Foot Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foot and Ankle Associates of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "INDIANA PODIATRY GROUP INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orlando Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennessee Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Florida Vascular Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Florida Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Indiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Kentucky", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Los Angeles", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Orange County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Pensacola", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Plus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health San Bernardino", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health San Diego", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Upperline Health Vascular Care Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Hanjani, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Coastal Women's Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gregg K. Satow, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Ear, Nose and Throat,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Donald C Siegel MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Peds Care After Hours", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Family Healthcare PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cheaha Women's Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - National Church Residences Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Live Well Neurology and Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Renaissance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Horizon Surgical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Internal Medicine Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Asif M Chaudhry MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brian Hasse FNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "James A Cain III MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MVP Imaging LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MVP Physical Therapy PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maria Shepard MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEURO NETWORK LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Omar D Vidal MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pamela Jean Chapman CRNA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spinal Technologies LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Spine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Spectrum LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr Bruce Banias MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Antonio Mancera", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orthopaedic Center of Vero Beach", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Meridian Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Amarillo Endoscopy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Contra Costa Medical Grp for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Surgical Assoc of Western NY, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PCS BRAND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Milltown Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Robert Vartabedian MD,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robinson, M.D. \u0026 Clinton, M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Valley Vista Medical Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MILESTONE PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Alabama Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARKWAY MEDICAL CLINIC, INC. D/B/A UROGYNECOLOGY CENTER OF NORTH ALABAMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parkway Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urology Associates of North Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for a Healthy Mind and Wellb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Blue Ridge Heart \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ann McFarlane", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Intergalactic Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Katherine Short, ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marcie Hamrick, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Molly Gray, ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ONE SKY FAMILY MEDICINE PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tracy McDaniel ND, and Lauren Whitaker, ND", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fort Payne RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fort Payne Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fort Payne HBP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Port Washington Gastroenterology PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Metro ENT, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - HMA_Master", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trinity North Dallas Neurology, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Lizellen La Follette, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Tisa K. Testai DO, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALEXANDRE NADER, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPE AND ISLANDS DIGESTIVE DISEASE ASSOCIATES, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAPE AND ISLANDS ENDOSCOPY CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ahmed A. Rahman, MD. PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Thomas G. Fontenot Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Gatdula \u0026 Gatdula, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Harish Thakkar", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Medwell Women's Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bay Street OB GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Old Dominion Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Ellen Michaelson, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Perimeter OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Moon Valley Medical Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Jo R Johnson MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cornerstone Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Marion Pain Management Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Primary Care of TN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "YAKIMA HMA PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Cardiology of Key West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera OB/GYN and Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bravera Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carneiro Institute for Hand Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Collier Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Women’s Care of Naples", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Keys Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Keys Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lower Keys Behavioral Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lower Keys Cancer Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lower Keys Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lower Keys Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pace Primary Care and Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Regional Marco Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians Regional Medical Group Pharmacy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Center of Key West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Santa Rosa Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Cardiology and Cardiac Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Cardiothoracic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Internal Medicine and Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Plastic and Reconstructive Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Primary Care and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Primary Care and Walk-In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Primary Care and Walk-in", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Rehabilitation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Rheumatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ShorePoint Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Florida Medical and Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Heart Institute of the Keys", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Campbell Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolina Pediatric and Adolescent Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolina Urology Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Davis Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Davis Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Davis Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Davis Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First in Flight Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Harbor Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hospitalists of Lake Norman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Medical Group Heart and Vascular Mooresville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Neonatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Neurological \u0026 Spinal Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Orthopedic \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Orthopedic Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Norman Orthopedics and Hand Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeshore Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeshore Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mooresville Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NorthPoint Surgical; Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pinnacle Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates of Cornelius", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates of Davidson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates of Huntersville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates of Lake Norman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates – Byers Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates – Denver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care Associates – Williamson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sherrill-Jackson Orthopedics Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesville Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Center for Surgical Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Tennessee Women’s Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fields’ Center for Women’s Health and Robotic Surgery at Tennova", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Irene and Howard H. Baker Cancer Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LaFollette Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Newport Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care of Tennessee at Tennova", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Bariatric Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiology of Lenoir City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Cardiothoracic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Center for Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Digestive Disease Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Gastroenterology – North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova General Surgery – Jefferson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthcare – LaFollette Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthcare – Newport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Healthcare – Newport Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – Cardiothoracic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – Jefferson CityTennova Heart – Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – LaFollette", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Heart – Tellico Village", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Infusion Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Jefferson Women’s Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova LaFollette Geriatric Psychiatric Unit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova LaFollette Health \u0026 Rehabilitation Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova LaFollette Medical Center Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova LaFollette Outpatient Rehab Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova LaFollette Sleep Disorders Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Neurology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Neurology Newport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Newport Convalescent Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Newport – 4th Street", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Orthopedics – Turkey Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Physical Medicine and Rehabilitation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care Caryville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Primary Care and Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Pulmonary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Pulmonology Newport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Thyroid \u0026 Parathyroid Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Vascular and General Surgery – Turkey Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Walk-in Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Care Newport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Care – Jefferson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Care – LaFollette", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Care – Lenoir City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Women’s Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tenova Healthcare – LaFollette", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Town Creek Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Knox Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Knoxville Heart at Tennova", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Biloxi HMA Pulmonology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Biloxi Neurology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Byram Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiovascular Services of Central Mississippi, Cardiovascular Services at River Oaks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Biloxi Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Brandon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Clinton Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Flora Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Germantown Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Highland Colony Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Lakeland Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Madison Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Nissan Parkway Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Parham Bridges Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Promenade Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Reservoir Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CarePlus Reservoir Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Industrial Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Infections Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Central Mississippi Bone and Joint Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coast Oncology and Hematology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossgates Critical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossgates Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crossgates River Oaks Hospitalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hicks Healthcare for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hinds Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Internal Medicine at Cedar Lake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeview Family Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Madison River Oaks Hospitalist Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Neck and Head Surgical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROH Center for Infectious Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROH Hospitalists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rankin Orthopedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rankin Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ridgeland Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Obesity Center at River Oaks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Total Health Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Transformations at River Oaks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Health Durant Clinics Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Health Medical Group Primary Care Atoka", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinic Clinto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinic Clinton Hills", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinic Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinic Thomas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinic Weatherford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Durant Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Durant Clinics Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Durant Clinics Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Madill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Madill Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Anesthesia Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Cardiovascular Care Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Ark City (KS)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Bryan County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Medicine on 14th Street", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Family Practice Clinton Hills", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group General Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group General Surgery Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group General Surgery on 14th Street", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group General Surgery on University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Gynecology Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Internal Medicine Durant Campus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Neurosurgery Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Orthopedics Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Pediatrics Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Pediatrics Durant Campus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Primary Care Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Primary Care in Thomas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group QuickMed Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Specialists – Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Specialists – Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Specialists – Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Women’s Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Women’s Health Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Women’s Health Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Medical Group Wound Care and Hyperbarics Durant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AllianceHealth Urgent Care Ponca City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medicine on 9th Street", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QuickMed in Clinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Peter E Lavine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Southern Sports Medicine and Orthop", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Internal Medicine Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - TIMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Cardiology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Womens Integrated Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Childrens Healthcare Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Menchavez Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCWV Confidential", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Community Care of West Virginia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SCOTT I. BOGGS P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Richmond Hill Medical Services, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mount Sinai Marathon Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Nassau PCs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fariba Pajoohi MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Beth Houck MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - ASSOCIATED SPECIALISTS IN MEDICINE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - The Womans Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Rheumatology \u0026 Arthritis Consultant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Pediatric Diagnostic Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Urgent Care Of Erwin, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - CO Bariatric Surgery Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Weiss Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Peter Masucci, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pediatrics at Oyster Point, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AZ Heart Rhythm Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Neuro Care of Virginia, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ayala Medical Corporation, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Northcross Health Maintenance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Carolina Forest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Pawleys Island, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Strand Internists \u0026 Urgent Care LLC - Surfside Beach, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Strand Internists - Surfside Beach, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hal J Freiman, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Directors Capital Ventures Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Performance Pediatrics \u0026 Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Catherine Laruffa MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Personal MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rafatjoo Izabal \u0026 Snider MDs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Harold S Samuel MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Consultants in Epilepsy \u0026 Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Idaho Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Movement Disorder Consultants PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Patricia E Gabriel DO \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Comprehensive Neurology Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Health thru Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - WomenCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - McLean County Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Hartford Cardiac Laboratory, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Covington Bone \u0026 Joint, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Raymond Paul-Blanc MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Anthony A. McFarlane MD PC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Evenhuis Cardiology \u0026 Internal Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wilmington Internal Medicine PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DENNIS M LEWIS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FRANK R WHEELER, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES R WHITE, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LANDER REGIONAL HOSPITALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RIVERTON PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WIND RIVER PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - SCION - SageWest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Geetha B Kandimala, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "General Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Occupational Medicine Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - North Beach Vascular \u0026 Aesthetics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Steven A. Kushner DO P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Aviva Healthcare, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OptumCare Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ibrahim Helmy, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Chesapeake Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ventura Advanced Surgical Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cooper Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mount San Rafael Hospital Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Breast Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Healthcare Departments", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Neurosciences-Neuro Endovascular Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Neurosciences-Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Neurosciences-Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Neurosciences-Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Primary Care NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Primary Care VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Primary Care-Currituck", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Surgical Specialists-NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Surgical Specialists-VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Regional Transitional Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Seaside Health Center at Atlantic Shores", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Z-Chesapeake Regional-DO NOT USE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Z-Chesapeake Regional-DO NOT USE-", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Z-Infectious Disease Consultants of Hampton Roads", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Northern Virginia Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Albany Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Richard Joyce MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "All Florida Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brandon Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Florida Sports Orthopaedic and Spine Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Associates of West Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedic Specialties of Tampa Bay", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tampa Bay Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - David Alan Testa DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA HAND SHOULDER \u0026 ELBOW, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GEORGIA SURGICAL CENTER ON PEACHTREE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Excellence Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Paradise Valley Allergy Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Hines Dermatology Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Cloverleaf Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Baton Rouge Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Bainbridge Medical Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - West Ashley OB-GYN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Rochester Hills Medical Center, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Tate Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Malik Neurological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lori Hickson MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Northwoods Family Orthopaedics, S.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Powell Pediatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Center for Sports Med and Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Roman Santos, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Queen Anne Medical Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - GirlTalk\u0026 Gynecology, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Chair City Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Apex Health Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Apex Health North Shore Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midlands Orthopaedics Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midlands Orthopaedics and Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Modern Psychiatry and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Adeeti Gupta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Elizabeth Cook, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marshall S. Frumin, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Olympia Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gandhi GI LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Kenan Kirkendall, DO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Quality Medical Center of Union", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALL WOMEN'S HEALTH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLIANCE OBGYN GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARBOR OB/GYN WOMEN'S CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ATHENS WOMEN'S CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BRIAN LEVITT, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC020_KENNESAW GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC021_GEORGIA CENTER FOR FEMALE HEALTH II, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CENTRAL UNIFIED OBSTETRICS AND GYN,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CRABAPPLE GYNECOLOGY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DELETE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Unified Women's Care of Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENESIS WOMEN'S CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GWINNETT'S PROGRESSIVE HEALTH CARE FOR WOMEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HAVEN OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT VERNON OB-GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH GEORGIA OBSTETRICS \u0026 GYNECOLOGY LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHLAKE WOMEN'S CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PRESTIGE HEALTHCARE OB/GYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RAYBON OBSTETRICS AND GYNECOLOGY ASSOCIATES, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UNIFIED PREMIER WOMEN'S CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S HEALTH ASSOCIATES GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Flagstaff Primary Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Pain Centers, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dupage Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elizabeth Pacocha DPM, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Oak Brook Centre For Health, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oak Brook Centre for Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Lake Oswego Family Physicians P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Lynn Albertson ARNP, PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - East TN Regional OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Mina Nayak M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Kamlesh Nayak M.D. P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Rehab Assocs of the Mainline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Ear Nose and Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Southern Nevada Surgery Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Avalon Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southeast Texas Cardiology Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - DSK Medical Group, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midlothian Primary Care Doctors PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pannaben H Nangha, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sonoran Orthopaedic Trauma Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Healthy Solutions Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Upper Hand Orthopaedics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Midwest Reproductive Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas Ear, Nose \u0026 Throat Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Barry J. Fish, M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urology Group Of New Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dianne McNeill, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Injury Specialists of Oregon, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Federal Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Albemarle Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - New Orleans Headache \u0026 Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - West Cobb Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arbor Family Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Richard A. Dougherty, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - French Broad Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Nephrology \u0026 Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - KANSAS CITY PEDIATRICS, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Valley Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Employee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Medical Group Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Medical Group Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Atlantic Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Haiba Sonyika MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Southeast Rheumatology \u0026 Immunology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sharon M. Lawrence, D.O.,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Westview Pediatric Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lindsay H. White, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kathleen O. Edmunds, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Osteopathic INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Chary Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAIRFAX LOUDOUN OB-GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "National Vascular Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Hector L Salcedo, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - The Dermatology Group, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Penobscot Valley Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Prime Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ahearn \u0026 Associates Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Discovery Medical Network Matagorda", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Surgical Clinic St. Clair, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Hudson Allergy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ORTHOPEDIC ASSOCIATES OF NORTHERN C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - IPMLN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Tibor C. Kopjas, MD S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Maine Institute for Headache", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - AirCapitalCardiology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Sullivan Family Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Women for Women Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - MARANACOOK FAMILY HEALTH CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Kendall Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ob-Gyn Assoc of the Central Coast", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ghebru Woldemichael MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Donna H. Canney, MD PhD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Dorothy M Thayer MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dr. Martin's OB/GYN Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MEMORIAL HEALTH WASHINGTON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Michael C. Francis, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Queen Creek Primary Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - South Denver OB/GYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Mountain Top Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Jimmy Diaz MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Grassroots Gynecology LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Smithtown Medical Specialists, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Complete Foot and Ankle Care of Nor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Kishore G Pathial MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Stanly Orthopaedic and Hand Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rosemary Delgado MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Patricia G Gao MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Seven Hills Women's Health PLLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Hillary Norton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - William Paull, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Panacea Brain and Spine Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Olukunle Ajagbe MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Eye Care Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - South Mountain Cardiology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Lei S. Charlton MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Neurology Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lidia Zacharski NP Family Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Total Health Primary Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Primary Care North Kansas City", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bharat K Mehta MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - B H Pediatric Cardiology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Brown County Women's Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alicia S Kanhai DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Urban Podiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Chico Heart Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gutteridge JeanCharles, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Adair Allergy and Asthma Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - TOTALITY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - LivingWell Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southern Neurology and Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Comprehensive Podiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Pittsboro \u0026 Pine Ridge Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Nguyen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northeast ProHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Advantage Cardiology, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Consultants in Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Fort Myers Internal Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Heart Fit For Duty LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Essentia Health Mid Dakota", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Eastern Idaho Cardiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Arimah Medical Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Larisse Lee MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - School Health LINK, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Columbus Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Surgical Specialists of North Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brookdale Hospital Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Heart and Vascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Martin's Point Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - NEW DERMATOLOGY GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Palm Beach Cardiology Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Doctors Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mercy Physician Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Teche Regional Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Hickory Medical Advisors, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Young County Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Abdelnasser Elmansoury, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - KPS Cardiovascular Surgery PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Alpha J. Anders, MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - KETTERING PEDIATRIC \u0026 FAMILY CARE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Total Diagnostic \u0026 Int Pain, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Kidney Care of Michiana, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Fernando Valley Neurologic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Christopher J. Labban, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - North Shore Pediatrics, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Tennessee Valley Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Neil H. Weisman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Easton Pulmonary \u0026 Critical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lung Center Associates, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Propicius Biosolutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "D'ANDREA CARDIOVASCULAR CARE CENTER LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FAROOK K SHROFF", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Amy G. Love, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - St Vincent de Paul Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Trinity Primary Care, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluetail Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - H. Allen Ferguson, Jr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anees R Saleemi, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Pediatric Consultants West, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fort Worth Personal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - David M. Herzog, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Justin Paquette, M.D. Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Karo Isagholian, M.D. INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Ocean State Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Medomak Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Epstein Neurosurgery Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Total Body Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Full Life Hormone Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Anthony F. Marino MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Juan A Serrato MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Priti Patel, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - David J Davin MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - The Pain Center of Western WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Carl A. Weiss, III, M.D., PH.D, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - ABBINGH, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Abrazo Health Care Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carondelet Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - US NEURO Specialists PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Avelino F. Millares M.D. P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Peninsula Orthopaedic Group PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Thoroughmed Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Eye Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Bellbrook Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Angels Medical Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Diego Advanced Surgery P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Johnson Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Texas Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Endo Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Rose Gynecology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - University Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Manu P Vachhani MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Prairie Fields Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - NRHN Rehab Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Foot \u0026 Ankle Center of Washington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Women's Choice LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Foot \u0026 Ankle Health Specialties LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AlphaDocs, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center for Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesapeake Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Complete Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hampton Roads OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mid-Atlantic Women's Care Imaging Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Obstetrics and Gynecology Associates of Hampton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Group For Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tidewater Physicians For Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Totalcare for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Virginia Beach Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WOMEN'S EXECUTIVE HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WomanCare Centers, PLC - PCN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women Caring, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Havasu Women's Health Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - South Ridge Family Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Joseph Ballaro, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jory J Goldberg MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Advanced Neuroscience Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Spine and Orthopedic Pain Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Quality Healthcare Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bay Area Colorectal Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EAST BAY NEPHROLOGY MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Beacon Primary Medicine Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orthopedic Center of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Germantown Private Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Romeo P. Papica II", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Camelback Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - J David Hurtado, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Wards Corner Pediatrics INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Northern Arizona ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Salil Trehan, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - K\u0026S Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dooley Chiropractic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Children's Health Assoc. Tidewater", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Harmony Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AA OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Comprehensive Pain and Spine Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gateway Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Santa Rosa Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Northwest Foot \u0026 Ankle, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Valentine Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Valley Children's Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Children's Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Valley Children's Sacramento Maternal Fetal Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Georgeta Varga M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - All Woman, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wilmington Physicians Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shoals Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Orthopaedics Northeast, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopaedics Northeast, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - North Idaho Lung, Asthma and Criti", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Strand Orthopaedic Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bay City Cardiology.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Specialists in Women's Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Janine K Jensen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Francisco G Rodriguez, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - St Vincent Physician Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent Physician Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RCHP-ECM Health Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - LPNT Ottumwa Health Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OTTUMWA HEALTH GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - North Pittsburgh Pain Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parkwest Women's Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Susan Dodd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Humboldt Park Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Humboldt Park Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Family Planning of South Central NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Southwest Orthopaedic Group, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Zoe Interventional Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Consulting Cardiologists, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Cardiac,Vascular \u0026Thoracic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Interventional Pain and Spine Speci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - The Annapolis Hand Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinic For Women's Health, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area Orthopaedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bay Area Physical Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Stone Oak Family Doctors PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CAROLINA ORTHOPAEDIC SURGERY ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "THE CENTER FOR ORTHOPAEDIC SURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Abraham Breast Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Scottsdale Obstetrics \u0026 Gynecology,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Maria Cole FNP-BC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - GYNPLUS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GOH Medical, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Chad Walters DO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Continuum Health Care, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Athena Medical Center for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AMF Gastroenterology Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - K2 Foot and Ankle PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Johnson Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - All Women Midwifery and Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - France Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - ElderDerm S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Nephrology and Hyertension", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - AZ PEDIATRIC PULMONARY \u0026 ASTHMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ARDMORE FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Triad OB/GYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sandhya Venugopal MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "2-6381-3 M.A.U.A. MAIN OFFICE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "US ACUTE CARE SOLUTIONS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alan Cohen, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Monmouth OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Monmouth OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Long Branch OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Womens Medical Connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Women's Health Specialists- St. L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Tamrat Bekele, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KDMC Physician Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lincoln Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - JAWS Podiatry INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Ankles \u0026 Feet Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Center for Voice \u0026 Swallowing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Soll Eye Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Cheyenne Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Roman Erik Tavarez MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Robert E Springer III MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Columbus Medical Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - LPNT - Master", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Heart and Vascular Specialists, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Spring Hill Family Medicine, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Piedmont Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "POTENTRX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Potentrx 360", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Speck Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Linhkieu T. Nguyen, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Naugatuck Valley Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Main Communicator Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Planned Parenthood South Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lakeshore Urology, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Advanced Nephrology Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Greenbrier Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Judith A. Hinchey, MD, MS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Southern Westchester OB/GYN Associa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pediatric Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Erick Madrigal MD, MBA, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mountain Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Preventive Cardiology \u0026 Internal Me", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Lotus Med LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Levine Heart \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dr. Brian Levitt, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Assoc - Healthcare of Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Niti Bhalla Carlson, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Elaine C. Shoji, MD, FAAP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Peter J. Oliva, M.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Tri-Star Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Youngs OB GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Washington Surgical Specialist, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Michael V Elman MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clearchoice Health Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Larry Tremper DO, PLLC DBA Pediatri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Regional Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Integrated Pain \u0026 Neuroscience, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Prasad R. Ancha, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - St. Boniface Haiti Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Alaska Childrens Heart Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Innovative Women's Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Women's Health Care Ctr of Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - James River Spine \u0026 Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Prospira PainCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira - CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira - FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira - GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira - NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira - TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Prospira-MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Northwood Health Services, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Leo Dermatology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Michael Bader MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Richmond Orthopedics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Gower Family Care Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Advanced Care for Women, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Grand Mesa Nephrology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texan Cardiovasular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Heba Farag MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Hillcrest Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Moore Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Steven V Kozmary MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NEW ENGLAND EAR, NOSE \u0026 THROAT/FACIAL PLASTIC SURGERY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kadie E. Leach MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Marin Family Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Little S Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Byron David Baldridge MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - George J. Pereira MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - OMNI DERMATOLOGY, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Legacy Cannon Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Life's Journey OBGYN, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Brammer", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Brunson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Seaside OB/GYN of Milford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Richmond Foot and Ankle, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - H. Elena Rodriguez, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Elmwood Village Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Just Heart Cardiovascular Group Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Diabetes \u0026 Endocrinology of Denver,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - RicherWellnessMD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Douglas Gill MD, SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Parkside Internal Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Laura Fernandez-Ortiz M.D. P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - North Grove Internal Medicine, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Park Ridge Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alliance OB/GYN Specialists PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Orangeburg Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tiesenga Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Anant Patel MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - West Cecil Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - South Jersey Pain Institute, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Crescent City Headache and Neurolog", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Southwest Foot and Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Pendleton Community Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ridge Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Joseph S. Thomas, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Institute of Adv Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pandit Foot \u0026 Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Spring OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Shine Integrative Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mayura Madani, M.D., P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - St. Jude Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Wayne G Stanley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Center for Foot and Ankle Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - REGINA L. EDMOND, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rural Health Clinics of West TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Advanced Brain and Spine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Agarwal Nephrology \u0026 Hypertension", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rappahannock Gastroenterology Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - River Place OB/GYN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Artemis OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Briarpatch Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Institute Foot \u0026 Ankle P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Albracht Orthopedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Michael P. Brousseau, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Homewood Flossmoor Medical Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bon Secours Inactive", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southside Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Bon Secours- Virginia Health Source", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Fountain Medical Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - 411 Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Pain Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heartland Health Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mark Garza, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southwest Sports and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Good Samaritan Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Soni Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Digestive Disease Center of NJ, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boston O\u0026P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - BOSTON BRACE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Abdow Friendship Pediatrics P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Care and Comfort OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Breckenridge Medical Center RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Summit Headache and Neurologic Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robert C. Keeley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - New Dawn Midwifery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chicago Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MacNeal Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Weiss Memorial Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Suburban Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Westlake Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Women's Health and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Douglas Anders DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Yu Yao, MD, A Professional Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beebe Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Beebe School Based Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Beebe Physician Network, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Associates in Primary Care Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAKEFRONT MEDICAL ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WEISS PHYSICIANS GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Carousel Pediatrics APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Adult \u0026 Child Foot \u0026 Ankle Care, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Justin T. Johnson Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Pain Alternatives, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Southern Maine Geriatrics Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Atlanta Breast Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Community Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Complete Women's Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Face to Face, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - HRC Medical Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Olentangy Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Surgical Associates of Western Colo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Bellevue Podiatric Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - GILLUM FACIAL PLASTIC SURGERY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dahlia T. Carr M.C. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Center for Colon and Rectal Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Providence Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Lester R Schwartz MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Wilson Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ocean Psychiatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - New Hope Family Medicine P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wellcare Medical, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Lumen Cardiovascular Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Lewes Family Practice, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulf Coast Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Perrysburg Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bumps N' Bruises Pediatric Urgent C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - CYNTHIA N. SCHAEFFER, M.D., P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sarasa Kumar MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Family Med Associates of Dalton, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Harvard Family Physicians,P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - BERNARDSVILLE PEDIATRICS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Charlotte Metro Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Beach Premier Medical, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - SmartStart Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DANIEL V. VIJJESWARAPU, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Timothy C. Dindoffer, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Brian S. Love, M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - The Surgical Clinic of Central AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Gerald Champion Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Exceed Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Jon W. Ahlstrom M.D. PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - North Wake Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Karoline Woitke, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Gregory Hudson MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Drs. KATZ \u0026 KADE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PHYSICIANS WOMEN'S SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Alumbra Women's Health/Maternity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mary Kathleen W. DiTursi, M.D., P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Bart Pruitt Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Oregon Coast Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lisa E. Mark MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Healthquarters, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Women's Specialty Health Ctrs, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Epic Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - A Kid's Place, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Long Pond Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Shepherds' Place Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Morris County Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Prime Health Medical Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Rafiq Saljuki M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Port Orange Gynecology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bon Secours- Hampton Roads- Inactive", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Franklin Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Bon Secours- Hampton Roads", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kavitha Moolamalla MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Foot \u0026 Ankle Care Center, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - John Brent, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AAI Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Manish Dimri, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Ensign Medical, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Vo Medical Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BADM Main St", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tejas Patel, M.D. Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS Centre Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Reservoir Family Medical Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Riviera Allergy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SGMC Valdosta Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Georgia Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Revitalize", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dragos L. Popescu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Integrative Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Liberty Pediatrics, P.L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Annandale Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - SHELBY PEDIATRIC ASSOC. \u0026 LUNG Ctr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Duviel Irizarry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Lisa Beth Speck, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Mapleton Medical Center, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Preferred Women's Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - MATTHEW H. KOPERA, M.D., PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Pediatric Associates of Morris LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - The Urology Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Kingman County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Advanced Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Ridgefield Family Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Womens Clinic of Northern Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Bill O'Brien, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - North Bergen Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Mark R. Hollemon, D.O., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Trenton Orthopaedic Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - New Path MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Miami Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Daniel J. Adkisson, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Perrigin Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Woodstock Pediatrics P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Lander Women's Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TRIAD PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr. Paul's Family \u0026 Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - South Routt Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Spine and Orthopedic Center of NM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARDC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Life In a Blender, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Pain Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Litchfield Hills Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Lois A. Nelson, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Grapevine Women's Health and GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Karen LaFace MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Sunflower Primary/Prompt Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Coastal Urgent Care of Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Total Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Orthopedic Assc Northern Berkshire", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Center West", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Ohio Vein \u0026 Vascular, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Diabetes and Endocrine Treatment Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pedro Ylisastigui MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "David Hong DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sanjay Jobanputra MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SP Docs(Dr.s Hackett, Schmidlein \u0026 Ginsburg)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Emkey Arthritis \u0026 Osteoporosis Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Cabin Creek Health Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Davenport Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Integrative Advantage LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Family Care of Fredericksburg, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Valley Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - East Lake Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Milan C. Patel, MD, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SupraCare Family Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Angel Betancourt, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Surgical Care of the Virginias, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Regis Community Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - West Virginia Heart Vasculr Ins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Adnan Elamine, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Medicine, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Fore Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dalton Ear, Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dalton ENT Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NW GA Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - North Chicago Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - William E Smith OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Rhoda Pomerantz, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Oakhurst Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Podiatric Med Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Andrews Neuropsychology Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sanjay Misra, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hightower Dermatology Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Breast Care Specialists, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Sophia Leonida, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Family Medicine Associates of SA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Health Centers of Baltimore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fisher Cardiology and Electrophysio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Colon Rectal Surgery Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Coastal Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Mid-Atlantic Epilepsy \u0026 Sleep Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Edouard Coupet MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Totowa Pediatrics Group PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Remedy Internal Medicine \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - FamilyCare HealthCenter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Rocky Hill Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Natchez Women's Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Katahdin Valley Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Katahdin Valley Health Center (FP, no portal use)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pulmonary and CC Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Emerson C Walden MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lowcountry Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midlands Orthopaedics \u0026 Neurosurgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Signe Spine \u0026 Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Winning Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Women's Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Canton Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Shrewsbury OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Discovery Medical Network Henrietta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Advanced Medicine + Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Nettesheim Family Footcare, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - University Medical Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Catalin Marinescu MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Arkansas Orthopedic Surgery and Wel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Patricia A Farmer APRN CNP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Healthservicesone, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Sang H. Lee, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mill Creek Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - MEDICAL ASSOCIATES OF NWI LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Gainesville Heart \u0026 Vascular Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Urgent \u0026 Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Patricia Kavanagh, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nephrology Specialists Medical Grp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - David Nicholson D.O., LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Allied Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Willow Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Affiliated Podiatrists, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McPherson Medical \u0026 Diagnostic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steele Family Rural Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooklyn Midwifery \u0026 Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Laura E Baber MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Marilyn W. Horacek, D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Shete Ear Nose Throat Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ohana Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Vein Care Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Arundel Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lady of the Sea General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lady of the Sea General Surgery Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lady of the Sea Medical Clinic - Cut Off", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lady of the Sea Medical Clinic - Larose", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ESTRELLA EAR, NOSE AND THROAT, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Lisa Giudice, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - PEDIATRIC CARE ASSOCIATES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Boston Sports and Shoulder Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family First Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Nephrology Center of Maryland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Melvin S Gale MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Prettelt Center for Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Clarksville Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Blue Ridge Speech \u0026 Hearing Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Delta Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rockwall Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - CARDIOVASCULAR SPECIALISTS OF SOUTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Night and Day Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Sky Spine \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Preferred Spine and Pain, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - ALAN D. JENSEN, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mary V. Mirto, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Nancy A. Brown, DO, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Excel Cardiac Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CareFirst Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Amory Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Morris E. McCray DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Magnolia Pediatrics Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Women's Healthcare of Princeton, L.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Pediatric \u0026 Preventive Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Richard G Valenzuela, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JOYDIP BHATTACHARYA, D.O. MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Riverside Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Factoria Women and Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Bagley Orthopedic Trauma \u0026 Sports", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - V \u0026 M Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Spirit of Texas Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Cleo Baruiz, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - My Health 1st Urgent Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Kern Primary Care Medical Clinic In", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension St. Vincent - Indiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Mary's Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Rural Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC House Calls/Main Street Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Sports Medicine North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sports Medicine North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Fore River Urology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Brian C. Wallace, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Associated Women's Health, LTD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbia Gorge Neurology Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbia Gorge- Burns Brand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - New Directions Physician Weight Los", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hermosa Medical \u0026 Diagnostic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Hermosa Medical \u0026 Diagnostic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - University Pain Consultants, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Mid State Gastroenterology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Gym Spa LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDCS Dermatology Clifton/Englewood", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDCS Dermatology Long Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDCS Dermatology Manhattan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MDCS Dermatology Marlboro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "do not use", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Plastic\u0026Reconstructive Surgery Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Elevate Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - W Patients First, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pediatric Practice, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Alpine Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - MVPediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Texas Sinus, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Saint Thomas Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hillenbrand", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Ascension - Tennessee", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arroyo Vista Advanced Pain Speciali", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Houma Digestive Health Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Kim M. Davies, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Main Street Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Long Island Health and Wellness Fam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Antwan Ahad MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Yum Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - William P. Holt, D.P.M.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Lawrence Family Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Fort Bend Heart Center, LTD., L.L.P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Evans Medical Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Barstow Primary Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pingfeng DU, M.D., Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Village Doctor LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LOWHAM SURGERY AND ENDOSCOPY P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WALKER SURGERY AND ENDOSCOPY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sunrise Family Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Spectra Healthcare Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Brigitte Lorenz, MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Collier Urgent Care PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Highlands OB-GYN, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Surgical Associates of Bloomington,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - David K Cohen MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Kevin Dux, DPM, Inc., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Arthritis \u0026 Joint Center of FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BASSETTI \u0026 ASSOCIATES, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LUIS DUHARTE AND ASSOCIATES, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NARVAEZ-LUGO AND ASSOCIATES MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHAILESH JOSHI MD,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Alternatives for Women, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - The Colorado Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Colonial Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Jennifer Fretz, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Kennebunk Family Practice, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - ROSHAN RAJA, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Vitale Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Mather Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Canyon Vista Bone and Joint Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Bates Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC001_Greensboro OB-GYN Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC002_Central Carolina Obstetrics Gynecology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC003_Green Valley OB-GYN and Infertility, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC004_Physicians for Women of Greensboro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC005_LYNDHURST GYNECOLOGIC ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC006_Hawthorne OBGYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC007_TRIANGLE PHYSICIANS FOR WOMEN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC008_DURHAM WOMENS CLINIC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC009 CHAPEL HILL OBSTETRICS \u0026 GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC010_ARBOR OBSTETRICS AND GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC011_CARY OB/GYN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC012_BLUE RIDGE OB/GYN ASSOCIATES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC013_RALEIGH OB/GYN CENTRE PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC014_FAYETTEVILLE WOMANS CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC015_ASSOCIATES IN WOMENS HEALTHCARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC016_THE GYN CENTER FOR WOMEN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC017_THE JONES CENTER FOR WOMENS HEALTH LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC018_WHA-CENTRE OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC019_WHA-CAPITAL AREA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC020_WHA-WILKERSON OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC021_WHA-MID CAROLINA OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC022_JOHN J MARKS MD GYNECOLOGY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC023_CAROLINA GYNECOLOGY PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC024_A WOMANS PLACE IN FAYETTEVILLE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC025_BIRTH AND WOMENS CARE PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC026_WOMENS HEALTH OF ROCKY MOUNT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC027_A WOMANS VIEW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC028_NASH OB-GYN ASSOCIATES PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC029_CARTERET OB GYN ASSOCIATES PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC030_HIGHLAND OB/GYN CLINIC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC031_WOMENS HEALTH ALLIANCE MIDWIFERY PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC032_CATAWBA WOMEN'S CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC033_WAYNE WOMEN'S CLINIC, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC034_ASHEVILLE WOMEN'S MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC035_LAUREL OB/GYN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC036_BILTMORE OB-GYN, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC037_Lumberton Obstetrics \u0026 Gynecology Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC038_WILLIAMSON GYNECOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC039_RUTHERFORD OB-GYN ASSOCIATES, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC040_WOMENS WELLNESS CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC041_LAKESHORE WOMENS SPECIALISTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC042_FOR WOMEN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC043_RALEIGH GYNECOLOGY \u0026 WELLNESS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC044_CITY OF OAKS MIDWIFERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC045_ARBORETUM OBSTETRICS \u0026 GYNECOLOGY, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC046_WENDOVER OBGYN AND INFERTILITY INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC047_GYNECOLOGY AND LAPAROSCOPIC SURGEONS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC048_REDEFINED FOR HER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC049_GRACE OB-GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC501_CHARLESTON OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC502_LOWCOUNTRY WOMENS SPECIALISTS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC503_HIGHLANDS CENTER FOR WOMEN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC901_SPECIALTY SERVICES CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTH CAROLINA TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Robert D. Ross, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Primary Care Specialists, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - New Orleans Medical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Robert A. Graebe, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Nathan Swartz, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Bryan \u0026 Sang Medical Association PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Advent Health Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maternal Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Aspire Services Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Healthy Horizons Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - South Florida Allergy \u0026 Asthma Spec", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Jan J Akus MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Heritage Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Dresden Family Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Stemmer Pediatrics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Macfield Pediatrics and Family Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LaRue \u0026 LaRue Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - R. RUBINSTEIN, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Kids Pediatrics, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - The Gynecology Institute of Chicago", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Renuka Ramakrishna MD S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Apex Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Mercy Grace Private Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Aspen Creek Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - PrimeHealth Asheville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Odessa Sleep Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Propicius Brain \u0026 Spine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - J\u0026G Medical Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Obstetrical \u0026 Gynecological Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Carolina Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Premier Foot and Ankle Specialist P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Rafia Khalil Arthritis \u0026 Rheuma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Shahram F Ravan MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - STARRETT PODIATRY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Richard A Kelly, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Neurology Wellness, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Eddlemon's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Westphal's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nirmala P Vallurupalli MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Oaktree Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Don Jablonski D.O. P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Gosnell Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - CareNet of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joanne Vogel, MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Munira Dudhbhai, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Medical Arts Dermatology PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neurological Associates of North TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - BradfordScottsboro Family Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bradford Family Healthcare PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Scottsboro Family Physicians PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Live Oak Cardiology, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Premium Care Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Diane Brzezinski DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - El Paso Infectious Diseases", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Med Spa of Virginia, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Ann Kim, PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SUSIE N. CHUNG, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Keauhou-Kona Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Children's Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatric Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pediatric Resource Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Colorado Hand \u0026 Arm, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Regional Infectious Disease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Masami Hattori, MD, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Monte Veal DO PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Walter Willoughby, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Southcoast Cardiology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Lancaster Cardiology Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Mazher Hussain, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Stedman-Wade Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians \u0026 Midwives", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Compass Dermatopathology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Biggers Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Kent R Walker DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - TURKE AND THOMASHOW PEDIATRICS, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Ferne R Lavine MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - North Oaks Internal Medicine Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Next Step Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ESP Medical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENERATIONS FAMILY PRACTICE - CARY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GENERATIONS FAMILY PRACTICE - NORTH RIDGE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lawrence OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Webster Family Physicians, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Generoso P. Porciuncula, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ARIZONA WOMEN'S HEALTH, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Rearden Internal Medicine \u0026 Ger", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - URGENT HEALTH CLINIC MEDICAL GROUP,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Seven Corners Medical Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Intermountain Spine and Orthopaedic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Breathe Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Family Clinic and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Village Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Small Town Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Emerald Coast ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kunz Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kunz Medical 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Sports \u0026 Spine Pain Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Metro Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pediatrics of Dalton, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - MyCare Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Richard A. Rectenwald DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoWilmington", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Folahan Ayoola, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Scott C. Lostetter DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CHARM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sarasota Pain Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Thomas J Trese DO, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Ettienne's Premier Pediatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Rolando Estupigan, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Annabelle Lopez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - St. Mark's Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Coleman Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolinas Sleep Specialists, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Signature Health, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Alpine Family Medicine \u0026 Allergy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - Great Basin Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Leal Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Premier Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eyecare Centers of Florida, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Healthcare with Heart, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SLEEP DIAGNOSTIC \u0026 RESEARCH OF AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Just for Women Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - L G Steck Memorial Clinic PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Kilby Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Internal Medicine Assoc. of Natchez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Children's and Family Medical Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joseph Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Boulder Management Service Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Craig S. Carter MD FACS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrative Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH FLORIDA PHYSICAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - G Hagan Jackson MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Natchez After Hours Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oak Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dwell Family Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McIntosh Clinic, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Privia Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Brandon Gynecology Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - DoctorMom MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Myaing MD, PA, Inc. Alfred C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Robert P Feldman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Heaven Sent Medical Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - InStep Podiatry Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Jill Marjama-Lyons, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Crane Medical Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - AccessMD, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Annapolis Nephrology Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Womans Ctr. for Adv. Pelvic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Women's Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Jersey Care OB/GYN, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sierra Precision Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Strong Women's Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rocky Vista Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ANSON PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FRED W. WILLIAMS, MD, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Goldsmith Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sinus Registry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Alabama Women's Wellness Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Infectious Diseases Associates Of B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Genesis Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affinity Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arcadia Well Woman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Total Woman Health Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ENT Care for Kids, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Woodlands Cosmetic \u0026 Hand Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Rockwall Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Surgery Associates of Houston", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Healthy Living First, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Fleischer Spine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Mark A. Schroer, M.D. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Unifour Family Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Better Me Healthcare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - General Physicians Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - OMAHA INTEGRATIVE CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Omaha Integrative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Michigan Ctr for Ortho Surgery PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Christopher J Ginocchio MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Elizabeth North DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Excelsior Podiatry Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bradford Anderson M.D.,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Advanced Geriatric Care \u0026 Family", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Bruce Hopper, Jr., M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - RIVER ROCK INTERVENTIONAL PAIN SPEC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wilmington Adult Medicine Stephen J", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Robert Cooper Jr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advanced Neighborhood Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dr. Deshonta King", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - One Heart LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Rainbow Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - VISITING PHYSICIANS OF CALIFORNIA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NP CLINICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Great Lakes Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Evergreen Health Promotion", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Jolly B. Canlas, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Neighborhood Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Coastal Interventional Pain", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Barrett Foot \u0026 Ankle Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ledesma Foot \u0026 Ankle Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ralph N. Purcell, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Child Neurology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alexander", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dunmore", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Greenville Neuromodulation Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALDONA STAAR KUMOSA, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KEVIN J MOLK, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Stella Maris Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Diveris Orthopedics and Sports Medi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Green Island Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sorin Medical, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesboro OB/GYN Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Preventive Medicine Institute, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Family Doctors, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Anesthesia Services PA SurgiNav", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SurgiNAV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Annapolis Colon \u0026 Rectal Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dallas Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Southwestern Palliative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Center For Sports Regen Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - WHITE CITY MEDICAL CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Gulf Coast Immediate Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Richard A Cagna, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Genesys Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Michigan Employer Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Providence Rochester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastwood - to be determined", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ascension - Detroit/Flint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "School Based Clinics - No Portal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St John Restricted", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Comprehensive Pain Management Partn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - VITAL MEDICAL CARE AESTHETICS, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Angelique Barreto MDVIP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arthrokinex Joint Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arthrokinex Regenerative Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Barreto Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NGS-South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NextGen Sleep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Vista Complete Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Southern California Bone and Joint", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Matthew Thompson PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Arlington ENT Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - G \u0026 I Kondray Mds Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - America's Foot Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pleasant Peds Care of Conyers LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Art \u0026 Science of OB/GYN P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Dr. Jonathan Levin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Commonwealth Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MBH_MARQUETTE BEHAVIORAL HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UP MEDICAL GROUP - MARQUETTE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UP MEDICAL GROUP - BELL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UP MEDICAL GROUP - PORTAGE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UP OCCUPATIONAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dennis Jordanides, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - First Family Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dameron Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dameron Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HARMONY HEALTH MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Imelda P Cabalar MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - NoVa Foot and Ankle PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - David and Eldredge ENT Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Pediatric Gastroenterology of CO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Orange Grove Medical Specialties, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Coast Kidney Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Caring Hands Children's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Foot \u0026 Ankle Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Three Lakes Physical Therapy \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Epoch Vitality", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New Horizons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Yoakum Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Womens Excellence In OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - WESTERN NEW YORK TRUE CARE MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Luckay Doc PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Peninsula Orthopaedic Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peninsula Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Diabetes Thyroid \u0026 Endocrinology Ce", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Health One Medical Group, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - SD ALLERGY, ASTHMA \u0026 IMMUNOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Eric J. Watson, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Jeffrey M Sauer DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedNM Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sherif Pediatrics Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eduardo G. Romero M.D. PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Ronald Solomon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Everett Urological,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Ahoskie Adult Medicine Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Mark L. Douglas, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Adelson \u0026 Ginsberg MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Pioneer Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Burgaw Medical Center \u0026 Hampstead Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - East Valley Pain Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - That Foot Doctor, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mary J. Forbes, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr M E Broadstone-Gaeke, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BCPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Adult \u0026 Pediatric Medical Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Alii Bariatric Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Orange Place Enterprise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Almudallal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Imonugo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Morse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Raugh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Soltani", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLCARE FOOT \u0026 ANKLE CENTER - Dr. Tupper", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - April E Lopez FNP-BC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Urology and Urologic Surgery, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - YOUR HEALTH HOME PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eastport Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Eastport Health Care, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bruce Alan Barker DO, MBA, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David S Gans MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Sunflower Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Lanier Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Musculoskeletal Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Stamford Gastroenterology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Chukwuma Osuagwu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Wingard Primary Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Orthopedic Specialty Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Mid-South Urgent Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Rocky Mountain Pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Burleson Old Town Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Top Notch Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - The Nirmel Neurological Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Neurosurgical Specialists Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pandya Medical Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ACM Connect", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ACM Kohl's Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - K MEDICAL, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Mountain Sky Cardiology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Oklahoma Spine\u0026Musculoskeletal PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for Quality Pain Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Calhoun OB/GYN Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Calais Regional Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - UMA CHATTERJEE, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Louisville Geriatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Louisville Geriatric Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "M Care, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Orangeburg Primary", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Singer \u0026 Chiang, Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Medical Group Seton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Austin Pediatric Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Allergy Asthma \u0026 Pulmonary Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARVIND K GUPTA MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Surgical Associates of Milford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Pillay Internal Medicine Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Jose Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - R. Walter Hunter, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Three Rivers Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Michigan Ear Nose \u0026 Throat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MedNow, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Village Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - WESTFORD VEIN \u0026 AESTHETIC SOLUTIONS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - New Image Medical Aesthetics \u0026 Well", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Desert Family Physicians, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric J. Meinhardt, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - MEDICRUISER ONSITE CARE, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - The Healthy Child, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - North Fulton OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Kodiak Island Ambulatory Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - FOOTHILLS NEUROLOGY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Agility Foot \u0026 Ankle Specialty Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Norwood Podiatry Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Sandra J. Greco, MD, FACOG, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Sellwood Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolina Health Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Mark Su MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Direct Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Dr. Chista Safajou", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Renee J Russell MD, INC, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - KISHWAUKEE PHYSICIAN GROUP, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Center for Health \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Steel Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PCN MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Central NY Surgical Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Kapasi Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Forest County Potawatomi Health \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. David Ellliot", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "G. Michael Lopez, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Neal A Dunitz, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jaimela J. Dulaney", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Triumphant Health Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - MED House Calls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Shoals Orthopedics \u0026 Sports Medicin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Martin J Scott DO \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Suffolk Surgical Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hayward Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Breton L Morgan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Christopher J Calcagni DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Charles J. DePaolo, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Pang Lay Kooi MDPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - Mary Stanley MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Services \u0026 Sports Medicine/Peter A Pizzarello, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - WELCH URGENT CARE \u0026 WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Laurelhurst PT Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EmergeOrtho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - EmergeOrtho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Cochise Health and Wellness, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peachtree Occupational Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Peachtree Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Amara Pain \u0026 Spine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Hickory Flat Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Phoebe Putney Health Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Phoebe Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Monroe Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Monroe Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Armstrong, Heyrana and Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - America's Vein Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ERIC G. LEVY MEDICAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Western Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Western Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Elite Medical Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Generations House Call Providers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Catherine's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Steven K Shoemaker, DPM \u0026 Assoc. IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - North Austin Foot and Ankle Institu", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinic of East End Association, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - John T Mather Memorial", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Brain \u0026 Spine Institute Port Orange", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Spine \u0026 Pain Medicine Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Borinquen Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Borinquen Medical Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Covenant Pediatrics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Dr. JB Winters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - TriState Colon and Rectal Associate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joseph F. McWherter, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clear Creek OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sacred Heart Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Housatonic Valley Podiatric Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Steven L. Saunders, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Mattawa Community Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Craig Jones, MD ENT Surgery, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Advanced Gynecology Specialists of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ambulatory Infusion Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anna Shaw Children's Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HMC The Full Circle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hamilton Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - SUNSET SURGERY CENTER, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brevard Orthopaedic Spine \u0026 Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Choice Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "First Choice Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Bradley A. Connor, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HSNHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Teen Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - STAThealth Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Bradlee Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lakeview ENT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Robert A Nussbaum MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Center Pointe Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Gregory J Tracey MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Leslie B Lindenberg MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - J. Margo Jaffe Orr, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Neurological Care of Indiana, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - STRIEDINGER MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tracy L. Basso, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - CAM Medical Group, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Reliable Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - C\u0026C Medical Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Spinecare Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Harbor View Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspire for Women Obstetrics and Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Associates in Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cherry Hills Midwifery, Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Sheri Gipson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Heidi Oster, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hugo Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kathleen Tate, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Littleton Gynecology \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Tree OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "My ObGyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OBGYN Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Optimal Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Red Rocks Ob-Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sky Divas OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Metro Obstetrics \u0026 Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Stephanie Modica, RDN CDCES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Colorado Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Group for Women", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vibrant Health of Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Westside Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cardiothoracic and Vascular Surgeon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Brian Orr Pediatrics, LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dr. Wynnshang C. Sun, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Dermatology \u0026 Skin Surgery Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Bristol Pulmonology \u0026 Sleep Medici", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Eduardo J Hidalgo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Peter's Healthcare System", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - PS New Experience", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - M. Elizabeth Latimer, M.D., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Fitzmaurice Hand Institute, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Empire Cardiology, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Southern Ocean Pediatrics and Famil", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Center For Ear, Nose and Throat PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Gynecological Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Exalta Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Katy Pulmonary Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - MAUREEN COONEY D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - GASTROENTEROLOGY CONSULTANTS, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chattanooga Bariatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dalton Surgical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dalton Surgical Group, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - JM Beams Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Delmar Primary Care Associates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALLEN D. DUMONT, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Abraham's Mark Comprehensive Wellne", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Mt Auburn Professional Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - The Headache Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Pinner Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Monarch Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - First Choice Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Shavano Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Meridian Internal Medicine and Prim", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Althea L. Turk MD, PC dba Comprehen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Stanley A Horst MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - W. Peyton Shirley MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Lana S. Beavers MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Pulaski Surgery Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Peachtree Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Coresmart, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Childrens Clinic La Jolla", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CONRAD A FISCHER MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Spine Vue PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bedford Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Emmanuel Valery MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TEXAS MEDICAL \u0026 SURGICAL ASSOC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Medical \u0026 Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Nitai Riegler MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Caleel Medical Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Nisha Patel, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Eastern Regional Pain Specialists P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Full Circle Health Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Gerald G Fette MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Capital Endocrine \u0026 Diabetes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Bhargava \u0026 Bhargava Mds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Northeast Kansas GI Consultants, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Holy Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Holy Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Maria Dunton, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Strand Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Drs. Brenner \u0026 Mitnick, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Women's Integrated Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Longwood Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Bruce A Rosenzweig MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ivette Valle MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Precision Surgical LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pedro Espat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roberta Rose", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Bay Area Orthopedic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Neurology \u0026 Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Peter R Preganz, Jr, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Listening Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Premier Vein \u0026 Vascular Center,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family Clinic - Dr. Jennifer Gwozdz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Austin Vein \u0026 Vascular Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHRISTUS Hospital of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Allergy/Asthma Center Colorado", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Robert B. Kohen, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - HIGH DESERT THERAPY ASSOCIATES, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - OAK BROOK X-RAY AND IMAGING, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Professionals for Women's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Midwest Pain Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Heart and Vascular Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Obgyn Consultants of Fairfax", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neurology of Sugar Land PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Houston Southwest Colon and Rectal", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - MercyMed of Columbus, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Metro Foot Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Family Medicine Associates Of Fayet", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - South Strand Cardiology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Wright Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - LG Solutions C.P.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Hamner's Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Intellimedicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Great Lakes Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Women's Healthcare Center Of GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - PAUL S. COHEN, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Lesly Honore MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - QHC PF Centre HBP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cal-Pep", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Anahat Kaur Sandhu, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Vincent D. Mallory M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Digestive Disease Clinicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - SOUTHERN SURGICAL ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Red Wheelbarrow Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Womens Healthcare of Acadiana LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pediagroup Associates, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Neurology Clinic, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Flora Medical Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Body \u0026 Mind Works", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Ophthalmology and Neuro-ophthalmolo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - GIRDWOOD HEALTH CLINIC, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Yen Shipley and Dr. Mesnier", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Zivkovic Family Medicine, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Foot Health and Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alefia \u0026 Ashfaq Tapia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Cumberland Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kelly Goodman Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DE - Stuart Septimus MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - MMGL, LLC DBA Five Star Medical Cli", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Floyd Reed MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Greenwood OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bridgewater Women Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Clarksville Pulmonary/Critical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Neurology Center of Virginia, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GVSU Family Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Deepa Agarwal, M.D., Pediatrics, A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Do-Eun Lee, MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Conejo Pain Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dothan Psychiatric PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Care Coordination", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carlisle Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Practice Associates Quick Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Practice Associates of Sullivan County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lakeside Family Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCCH Ortho Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sullivan Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sullivan Workforce Health \u0026 Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunrise Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tommy Wolfe Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vaccine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lehigh Pulmonary Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Neeraj Manchanda MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Cabot Foot Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Healing Unleashed Health Services L", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Palma Sola Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Matthew J Malta MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Omar Murad, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Erick A Kimmerling D.O.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Alon Family Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Total Health Medical of the Desert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - DuPage Neurological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Cecilio M Cabansag MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - North Florida Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NORFOLK COUNTY MEDICAL ASSOCIATES,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - General Surgery Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Craniofacial Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiovascular Institute of Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cedar Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Internal Medicine and Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Medical \u0026 Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Primary Care \u0026 Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "East Georgia Regional Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EastGeorgia Neurology \u0026 Neurodiagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Internal Medicine Associates of East Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Porter Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Statesboro Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Twin City Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bloomfield Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluff Sports Center \u0026 Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluff Sports Medicine \u0026 Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardiovascular Institute of Southern Missouri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dexter Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Malden Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ozark Medical Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Piedmont Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poplar Bluff Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poplar Bluff Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poplar Bluff Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poplar Bluff Regional Medical Center – North", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Poplar Bluff Regional Medical Center – South", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Puxico Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Regional Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Troy Family Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MARIA STEIN FAMILY PRACTICE INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Donald H Bernstein MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Charles D Hanshaw DO Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Wanda M. Boote, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Grand Health Care Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Allergy and Asthma Center of Wester", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Vivian Women's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Hubbard Pediatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - McAreh Medical P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - SKYPOINT MEDICAL CENTER S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - MILLER HEALTH AND WELLNESS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Savannah Orthopaedic Foot \u0026 Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Francisco M Vazquez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Midwifery Matters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Attention Deficit Disorder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Femhealth, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - ALLIANCE MEDICAL CLINIC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Chicago Neurological Services, Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Invogue Total Women's Healthcare PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ADULT MEDICAL SOLUTIONS, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BROWNWOOD SPECIALTY GROUP PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Women's Wellness Place", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Pediatrics of Bartlesville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - John T. Shaw MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Care Management Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Prime Internal Medicine, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MAYO HEALTH SYSTEMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mayo Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Platinum Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - MONTGOMERY PEDIATRICS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ADVANCE FAMILY AND SPORTS MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Integrity Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Charles S Watras MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Abdul Kadir MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - CAROLINA SPORTS AND SPINE, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Donna M Duran MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Luke Hunter, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Diamond Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Packard Health, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Endoscopic Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - LIVE OAK MEDICAL ASSOCIATES, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Northwest Georgia Surgical Associat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountain Laurel Internal Medicine,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - CENTRO DE SALUD FAMILIAR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - RENAISSANCE FAMILY MEDICINE OF WELL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - UnityPoint Marshalltown", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Valley Medical Associates Springfie", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Medical Corner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Cronin Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Mark Paris, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - COASTAL MAINE INTERNAL MEDICINE, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Wareham Cardiology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "International Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Logan Square Medical Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Podiatry Group of Annapolis Ambulatory Surgical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Podiatry Group of Annapolis, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - ADMA Primary Care, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medi-First Medical Center, P.L.L.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - NORTH MOUNTAIN FAMILY MEDICINE, PLL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Jim Francois, DPM, PT, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Premier Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Colorectal Clinic P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medici Atlanta Spine and Ortho", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medici Surgical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Coastal Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Northside Pediatric Associates PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Westbank Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - RIVERVIEW PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sandra Torres MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Janice R Powells MD,PA , DBA THE CH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - South Valley Internal Medicine, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - NORTH VALLEY INTERNAL MEDICINE, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Premier OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - WESTIN MEDICAL HEALTH P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Liberty Women OB/GYN PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Michael S. Greenfield, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Stephen H Goldberger MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountainview Skin Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - The Knighton Center, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Robert A Aldoroty MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - LI Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Shailesh C. Zaveri, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St. Vincent's Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ARASH BERELIANI, MD, A MEDICAL CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Women's Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - East Norriton Women's Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - David Patterson, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Advantia Health I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maryland Physicians Edge PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Felipe A Rodriguez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Affiliates In Woman's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Cardio Assc of Greater Waterbury", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - East Greenwich Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CharterCARE Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New University Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Our Lady Of Fatima Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Roger Williams Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Donna J. Tal Md, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Hand Center of Oregon, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Centers for Advanced Orthopaedics OrthoMaryland Division", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Avante Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Saint Clair Allergy And Asthma Cent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Employee Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Physicians at Valley View", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sander Orthopaedic and Sports Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paris Regional Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Saheli OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - SOUTHWEST DESERT CARDIOLOGY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Foothills Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Blairsville Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GLENN P. ROTHHAAS, D.O", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROBERT L KALB, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Med Imaging Care, INC dba West LA D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pulmonary \u0026 Sleep Medicine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - MOLANI MEDICAL GROUP, A PROFESSIONA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Main Street Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Riversbend Enon Children's Clinic,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Farhat Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ridge Manor Family Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Annapolis Asthma, Pulmonary and Sleep Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Ascension - Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension St. Vincent's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Glen Guillet MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Van Amburg Surgery Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Womankind Health \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Elite Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Las Palmas OB/GYN, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Premier Ob Gyn Napa Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Matlock Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Center For Spine And Orthopedics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - North Hills Internal \u0026 Integrative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - PCRM Clinic, dba: Barnard Medical C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Neal A. Sckolnick, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pediatric Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Edward W Hartzler MD Inc.,PS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Michael G. Neret", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Margy Batson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NFS 1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sigecaps Health, LLC- EMG - Collect", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Advanced Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Airport Playa Women's Med Grp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - NORTHERN CALIFORNIA ORTHOPAEDIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ELLEN LIN MD PA DBA ADVANCED SPINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Joseph Tulagan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Nicholas Rizzo MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - KANSAS KIDS HEART CENTER, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - The Center for Men's Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Durrani MD and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lei Chu M.D. Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Durrani MD \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ME - Dr. Richard Wilkins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - DONNA JEAN MAH MD INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - O'Meara Rosado DPM PLLC dba Foot a", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Perry Memorial Hospital Authority", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hunt Regional Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Hunt Regional Medical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - Hurricane Family Practice Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - ROWE Network PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ram Surendran, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Tots To Teens, LLC DBA Glencoe Pedi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Carewell Medical Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Pediatric Endocrinology of Rhode Is", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Antonio Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Dr. John's Quick Med, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pediatric ENT of South West Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sacred Heart Medical Office PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Community Nephrology Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Dr. Leslie A. Smith, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - United Medical Doctors", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Memphis Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHIRP Master", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Treasure Valley Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Diabetes and Endocrine Care of Long", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - All Star Pediatric Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Brooklyn Heart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - NORTHWEST NEUROSCIENCES, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Jackson Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jackson Hospitalists Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Full Spectrum Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Ross Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clinton Memorial Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - AUDREY J. WOOLRICH, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Jeffrey Von Hill DO PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Midlands Orthopaedics, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Allan Wang, MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - San Diego Sports Medicine \u0026 Orthopa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ROBERT LANCE CHARET MD, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cahaba Orthopedics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Dr Neeraj Tripathy, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Thomas \u0026 Hunter MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aegis Anesthesia ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Clara Andrews, M.D. Parkhill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "EHI Surgery Center of Austin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ENT Care For Kids, PA ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Forest Lane Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GROUP SURGICAL PARTNERS INTEGRATED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "North Central Anesthesia Consultants ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARKHILL ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARKHILL DALLAS ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARKHILL DALLAS IMAGING", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PSN FW HOLDCO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Park Hill Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ParkHill Medical CBO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parkhill Imaging Addison", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parkhill Imaging Clearfork", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Personalized Women's Healthcare ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Richard C Kaye MD ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Parkhill Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Texas Intensivists Network ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vanguard Anesthesia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Varsity Orthopedics ParkHill Affiliate", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Prem P. Manchanda, MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Portsmouth Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Midwest Allergy Sinus Asthma, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - East Tennessee Primary Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sun City Kidney, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Northwest OB/GYN Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sebastopol Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "David Fichman MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mollie Charon MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Rolando Uykimpang, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Thompson Family Medical Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Keith Kidd NP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Breast Care Specialists, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - INNOVATIVE UROLOGY PRACTICE OF NEW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Advanced Foot and Ankle Centers of", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - OB/GYN Associates West Hartford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Robert Auton, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "UT - UROLOGY ASSOCIATES, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Eye One Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Fitchburg Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Pediatric \u0026 Adolescent Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Comprehensive Clinical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murray Medical Associates Clinical Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murray Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murray Psychiatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Murray-Calloway County Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Occupational Medicine at MCCH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Lincoln Med Education Partnership", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - East Metro Family Medical Clinic, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Torpey Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Advanced Geriatrics \u0026 Primary Care,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Jackson Neuroscience Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Fallbrook Adult Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Cy-Fair Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - John Scribner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bay Arthritis Institute Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Metro Rheumatology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - SW Florida Regional Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Tri-Town Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mountain Valley Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Christine A. Phillips MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Opelika Cardiovascular \u0026 Assoc. PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Angelica Ramirez MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Family First Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Robert J Mirabile, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - 910 Rapid Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - General Surgical Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Central Coast Neurological Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Powers Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - LBMC_Andalusia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Grace Family Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - A to Z Primary Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - John R. Wanamaker MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Edwin Walker Medical Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - David N Feldman MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Health Express Urgent Care Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Women's Health Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Walter J Lee MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Permian Gastroenterology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SUNSHINE PERINATOLOGY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sunshine Obstetric", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Richard A Stanley DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Anthony M Auriemma MD, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Scott Elsbree MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Associates In Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Newton Neurology Assoc, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bella Health + Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Maryland Brain \u0026 Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The NEW Progam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Arnold S Kremer DO A Professional C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - South Texas Spinal Clinic, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Access Endocrinology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Paul K Ho MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Julia Riftine MD Obstetrics and Gyn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CUCUMBER WELLNESS, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Happier Living", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mellow Medical Inc A Professional Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Pediatric Care Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - EASY CARE PEDIATRICS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - WHOLE LIFE HEALTH CARE, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Heartcare Cardiovascular", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Theodore Spinks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Franklin J. Dzida, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KS - Mancina Cardiovascular Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Snyder OB-GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Charles Pittle DPM PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arise Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Arise Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clinical Neuroscience, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Lloyd James MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - The Center for Skin Cancer Surgery,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Immediate Care Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Grand Valley Neurology, Prof. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Naples Gynecology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Schwartz Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Parkinson Wellness Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - San Antonio Orthopaedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Ramasamy Seralathan, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Oceanway Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sun State Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Amazing Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Nicholas Capozzoli \u0026 Peter Schilder", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - CHARLES S. GRAHAM, D.O., P.C. dba C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Calcagno Pediatrics, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Richard Demmler", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - SHAHID MAHMOOD MD FAMILY PRACTICE,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DC - Etwar McBean MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Elisa Lear-Rayborn, DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Mohan Kareti Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - KEM Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Joseph Aloise MD Family Prac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Genesis Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - TOTAL SLEEP CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Biton Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Shirley Mason Randall M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Nadia I Kreit,MD,FAAP,PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Dr. Sarah Nease", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Kim A. Kelly, M.D.,P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ceron Pediatrics and Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Eagle Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Sonterra Cardiovascular Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - NEW ENGLAND CONSULTANTS IN GASTROEN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - USI Community Health Centers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - Davis Medical Clinic SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - MARGARET ALEXANDER M.D., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Endeveren Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Fully Armored Family Health and Fit", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Greenwich Podiatry Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dilip M Bera MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Kevin R. Smith, MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Foot \u0026 Leg Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Aspen Spine \u0026 Neurosurgery Center,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Comprehensive Surgical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Premier Endocrine Associates, SC -", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SURESH PRASAD MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Access Carroll", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Integrative Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - PULMONARY AND SLEEP WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - William A. Mitchell, Jr., MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "La Canada Multi-specialty Group Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ZARINE TER-POGHOSYAN MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Almaden Pediatrics, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Saint Agnes Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Alan L. Biddinger, MD., PH.D., PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - C\u0026M Compassionate Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Adult \u0026 Pediatric Orthopaedic Speci", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Peter Alan Krause Medical Corporati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alaska Center for Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arete Family Medicine - Anchorage", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Medical Park – historical (prior to Oct 1, 2019)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Easter Seals Bay Area", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Catalight Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Easterseals Hawaii", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Cashman Orthopedics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ribeiro Foot and Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Absolute Urgent Care of Texas Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Frontline Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Winston McIver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AK - Women's Center of the Peninsula", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Forsyth Plastic Surgery Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Optimal Performance Physical Therap", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - House Call Pediatrics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - GRAND RIVER MEDICAL ASSOCIATES PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolinas Center for Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dr. Crable OB/GYN P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Complete Women Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "University Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Endocrinology Group, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Southwest Podiatry Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PREFERRED PAIN ASSOCIATES OF ALABAMA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - The Mental Health Fund, dba: Catawb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Mt. Scott ENT \u0026 Audiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Lorraine Manciet, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - FamCare Clinic of North Texas, P.A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Choctaw Women's Clinic, PLLC Sara B", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - New Kingdom Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Physicians at Your Door Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Archview Medical Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southern Illinois Healthcare Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Mountain View Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Tides Gastroenterology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Wake Dermatology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Harmohinder S Kochar MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Orthopaedic Surgical Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Advanced Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Embry Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Texas Pain Consultants LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SWICFT MEDICAL PARTNERS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NV - FERDOWSIAN, GROVER \u0026 ROSLER, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LPNT Rutherford Behavior Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LPNT Rutherford Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - LPNT Rutherford Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Tazewell Family Healthcare, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Genesis Women's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Covington Healthcare LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Nashoba Valley Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Tripty M Gandhi MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Hispanic Health Enterprises, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kim M Almodovar MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Kendall P Tabor DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Pediatrics At Whitlock", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Auburn Neurology and Sleep Assoc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Hana Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - South Shore Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Ida Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WILSON PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Bone and Joint Surgery Associates,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dekalb Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Kenna J Williams MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Waco Infectious Disease Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Omni Med", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Santana Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Bellingham Women's Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Eric Tepper MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Westside Gynecology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Southwest Regional Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Center for Men's \u0026 Women's Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Short Family Medical Center, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Coastal Infectious Disease Consulta", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Yatawara Gynecology, Wellness \u0026 Aes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - SHELDON KAFER, M.D. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Getwell Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MT - Peckinpaugh Oculoplastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - G Gordon Snyder III MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Mountain Sage Holistic Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Southeast Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Medical Group Providence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Ascension Medical Group Providence DePaul Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Chris Pittman, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "University of Toledo Physicians, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Dr. Charles Kanaly", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Carolina Spine and Disc Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Gibson General Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Tri-City Foot \u0026 Ankle Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - BROOKSIDE PEDIATRICS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - GNO Snoring and Sinus, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Imperial Center Family Medicine and", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Premier Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Three Moons Midwifery PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Paul Long", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Thomas Lenns", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Metrowest Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - A Ray of Hope: The Great Lakes Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCK Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCK Midwives", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SCKC Specialty Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SKC Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Winfield Medical Arts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Bowman \u0026 Hampsey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - Charles A Beard MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Tricia A Shimer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Londonderry Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - PPC, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HDAI Specialty Access Center (SAC) @ MecuraHealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedCura Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - M.D./D.O. Associates, inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Urgent Orthopedic Specialists, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McLean Orthopaedics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Overturf Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - DARIN A. BOCIAN DPM, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - David M Mitzner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Brendan P Sullivan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Advanced Dermatology of the Midland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lina M. Ching MD., PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - West Texas Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Center for Remote Medical Managemen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Oaklawn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Pro Podiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "DMC Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - BRENTWOOD ORTHOPEDIC AND SPINE SURG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Washington \u0026 Associates INC dba Tre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Center for Womens Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake County Pain ASC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Patrick T. Boylan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - TANYA D. MAYS MD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Andrew Binamira", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - WARREN DOPSON, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Paul John Hayner MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Zipper Uro Gyn Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Allergy Associates Of Dearborn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Lynn Parry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Virginia Obstetrics \u0026 Gynecology, P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IA - Iowa/Illinois Pain Consultants, P.C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Dale Klepzig MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Oculoplastics \u0026 Ophthalmology at Li", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Nephrology Group PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pediatric Care of Four Corners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - David Fivenson, MD, Dermatology, PL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Amethyst Medical Group Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Fastmed of NJ LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - The Davis Street Community Center I", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Angelo P Morreale, DPM, PC dba The", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - John W Middleton MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Vitacare Family Practice, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comtrea Community Treatment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Aryan P Kadivar MD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Greater Boston Podiatry Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Eastside Women's Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Gilbert M Teixeira DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sabu John, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mouser MLife Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mouser WRI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Sabre Health Express", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Healing Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NE - Eric Palmquist DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Ponce Primary Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Dr. Susan J. Lurie, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Merit Health Walk-In Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - East Pompano Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Carolina Interventional Pain Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Comprehensive Pain Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Hand Surgery Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aurora Denver Cardiology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Other", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Ilko Family Medicine, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Metairie Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Front Range OB/GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Joseph H. Crumbliss,MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDDLETON FAMILY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "New England House Calls, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Desoto Foot Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Alpha OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - MaryEllen Cavalier, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Burrows Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Castle Pines Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Castle Pines Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Columbine Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Comprehensive Women's Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Tree Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lone Tree Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Family Care - DTC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Family Medicine @ Dakota Ridge", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Internal Medicine @ Harvard Park", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Internal Medicine @ Ridgeline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OnPoint Urgent Care LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PAHS OnPoint Imaging", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parker Square Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Reflect Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rose Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Podiatry Associates of Texas, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ponte Vedra Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Lori Oakley Coe MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Dr. Martin Barrios", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WI - ELKHORN FAMILY CLINIC, S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Complete Health Medical P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Premier Foot Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Columbia Neurological Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Generation Clinical Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHWIND SLEEP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SAINT TERESA CLINIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Dekalb Womens Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RI - Stephen L. Matarese DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - Allison B Alexander MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - Riverview ENT Center of Central Ohi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - William A. Peper, M.D. P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "HI - Aloha Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MedLink Georgia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OMNIPOINT SURGICAL ASSOCIATES LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WESTERN CAROLINA PHYSICIAN PRACTICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - AH FAMILY NURSING CARE, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - James J. Biemer Jr., M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Sheri Hsu MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MN - Northland Foot and Ankle Specialist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BARRY J. BROCK,MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CANDICE DANESHVAR MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Daniel Niku MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MELISSA GUTIERREZ MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PEYMAN BANOONI MD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Arkansas Center for Arthroscopy, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Innovative Orthopedic Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JAMES R BOYLE MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Maline Orthopedics. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Hartland Family Physicians, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Parker County Hospital District - P", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Florida Pain Center Of Naples", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Sunshine Doctors, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Rickman Family Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Gibson General Hospital Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Midwest Urogynecology, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Munson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Specialists PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Beverly Hills Skin Care Inst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ARTHUR H. KATZ, M.D., S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CBC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Great Hills ENT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ZAREE BABAKHANIAN, M.D., INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Paradigm Hormones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Mind Body Pediatric Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alec Y Lui MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Integrative Sports Medicine \u0026 Welln", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Permian Basin Urology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - HERVEY WEITZMAN M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Adler Footcare of Greater New York PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Jeffrey Adler DPM, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FOOTHURT PODIATRY PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fellner Foot \u0026 Ankle PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - ADLER FOOTCARE OF GREATER NEW YORK,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TIEVSKY FOOT \u0026 ANKLE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Dr. C. S. Michael, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Vincent F Sayan MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WV - PEDIATRIC GASTROENTEROLOGY OF CHARL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Newhope Joint \u0026 Spine Med Ctr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Amir Saffarian MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Quality Medical Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Center For Women's Care, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Philadelphia Foot/Ankle Assocs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MIDLAND EMERGENCY MANAGERS PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Permian Cardiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "West Texas Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Alpha Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Center For Hypertension \u0026 INT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Harry S Crawford III MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Atkinson Internal Medicine \u0026 Associ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTH SOUND NEUROSURGERY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Heart \u0026 Lung Center of Southeast Te", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Access Medicine \u0026 Nephrology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Cheryl R Goyne MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - PARK AVE MEDICAL CENTER L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affinity Orthopedic Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affinity Physician Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Women's Health Specialist of Birmingham, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Caney Valley Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Brad A. Case MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Sandhills Sports Performance", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHRISTUS Health Clinic Irving", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHRISTUS Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHRISTUS St Vincent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Christus Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CHRISTUS Clinicals Only", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - Metrowest Podiatry Services, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CRH Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - CRH Physician Practices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AccessMD Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dayton Outpatient Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Liberty Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - Surgical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michigan Orthopaedic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Ascension - Indianapolis EAP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sriram Iyer, Medical P.C. (EMG)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Michael Hanks Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Hayward Family Care PC", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/CHPLEndpointResourcesList.json b/resources/prod_resources/CHPLEndpointResourcesList.json index eef8577be..0de023ba4 100644 --- a/resources/prod_resources/CHPLEndpointResourcesList.json +++ b/resources/prod_resources/CHPLEndpointResourcesList.json @@ -1,4 +1,28 @@ [ + { + "FormatType": "Lantern", + "URL": "https://docs.canvasmedical.com/api/service-base-urls/", + "EndpointName": "CanvasMedical", + "FileName": "CanvasMedical_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", + "EndpointName": "AthenaClinicals", + "FileName": "AthenaClinicals_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://mmdpcf.modulemd.com/cf.fhir.r4", + "EndpointName": "ModuleMD WISE", + "FileName": "ModuleMD_Wise_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://carepaths.com/uploads/org_endpoint_bundle.json", + "EndpointName": "CarePaths EHR", + "FileName": "Carepaths_EHR_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", diff --git a/resources/prod_resources/CanvasMedical_EndpointSources.json b/resources/prod_resources/CanvasMedical_EndpointSources.json new file mode 100644 index 000000000..e8dffbff4 --- /dev/null +++ b/resources/prod_resources/CanvasMedical_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://fumage-modernfamilypractice.canvasmedical.com", + "OrganizationName": "modernfamilypractice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Carepaths_EHR_EndpointSources.json b/resources/prod_resources/Carepaths_EHR_EndpointSources.json new file mode 100644 index 000000000..931271c51 --- /dev/null +++ b/resources/prod_resources/Carepaths_EHR_EndpointSources.json @@ -0,0 +1,7282 @@ +{ + "Endpoints": [ + { + "URL": "http://developer.carepaths.com/beauchene/api/", + "OrganizationName": "Beauchene Family Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/qcounseling/api/", + "OrganizationName": "Q Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390898-152525/api/", + "OrganizationName": "Kristen O'Shea, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salt/api/", + "OrganizationName": "Salt and Light Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frcc/api/", + "OrganizationName": "Firmly Rooted Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rochford/api/", + "OrganizationName": "Lisa Rochford, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pacificsky/api/", + "OrganizationName": "Pacific Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yelk/api/", + "OrganizationName": "Dawn L. Yelk, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scl/api/", + "OrganizationName": "Sharon Chatkupt Lee, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385102-145752/api/", + "OrganizationName": "Embrace Life Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1072640-201954/api/", + "OrganizationName": "zusk not a real company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084636-115646/api/", + "OrganizationName": "Some Orgs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1608578-123907/api/", + "OrganizationName": "BG TESTg2g2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rosen/api/", + "OrganizationName": "Susan Rosen, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hope/api/", + "OrganizationName": "Hope Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gailm/api/", + "OrganizationName": "Gail Marhewka, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/testme/api/", + "OrganizationName": "testme", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/transitions/api/", + "OrganizationName": "Transitions Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zzzz/api/", + "OrganizationName": "ZZTEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cms/api/", + "OrganizationName": "CMS Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1358259-171230/api/", + "OrganizationName": "Embrace Therapeutic Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mark/api/", + "OrganizationName": "Mark McCarthy LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rivercc/api/", + "OrganizationName": "River Centre Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/deeb/api/", + "OrganizationName": "Jodi Deeb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083289-115838/api/", + "OrganizationName": "bill black", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083244-110037/api/", + "OrganizationName": "My New Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mdeluca/api/", + "OrganizationName": "Mark DeLuca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084826-153333/api/", + "OrganizationName": "test pgc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1085811-183223/api/", + "OrganizationName": "Dordan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hirt/api/", + "OrganizationName": "Donna K. Hirt, LCSW, CADC III", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1273179-115509/api/", + "OrganizationName": "Jackie Boggs, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salem/api/", + "OrganizationName": "Salem Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374906-091826/api/", + "OrganizationName": "DallasTest Practice123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goines/api/", + "OrganizationName": "Goines Counseling And Consulting Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375071-144719/api/", + "OrganizationName": "Rosemarie Chernesky Holland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glf/api/", + "OrganizationName": "G. Laverne Fesperman, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376474-212704/api/", + "OrganizationName": "Brittany Bagy, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374054-194112/api/", + "OrganizationName": "Dayspring Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374139-104949/api/", + "OrganizationName": "Cachara And Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pullin/api/", + "OrganizationName": "Douglas W. Pullin, LCSW, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374286-152153/api/", + "OrganizationName": "Julie Paxton-Williams,LMSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378298-214703/api/", + "OrganizationName": "ARC Counseling and Wellness 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vazzana/api/", + "OrganizationName": "Mike Vazzana, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stepstone/api/", + "OrganizationName": "Stepping Stone Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kdlcsw/api/", + "OrganizationName": "Karna Dawson, lcsw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/potters/api/", + "OrganizationName": "Potters Behavioral Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dickens/api/", + "OrganizationName": "Daron Dickens, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351434-133504/api/", + "OrganizationName": "Kadie Yannone, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1016983-154934/api/", + "OrganizationName": "Erica Hecht Kehrberg, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1218483-102658/api/", + "OrganizationName": "testing123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demomha/api/", + "OrganizationName": "Demo: MHA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jajodia/api/", + "OrganizationName": "Archana Jajodia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ftcampbh/api/", + "OrganizationName": "Ft. Campbell Behav Hlth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pruch/api/", + "OrganizationName": "Josephine Pruch, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374437-213911/api/", + "OrganizationName": "Sandra Quezada Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ppcllc/api/", + "OrganizationName": "Portland Personalized Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1317608-162744/api/", + "OrganizationName": "Karin Burden, LMFT, LADC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1086190-163959/api/", + "OrganizationName": "here we go again", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demooq/api/", + "OrganizationName": "Demo OQ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1300811-085644/api/", + "OrganizationName": "Social Work Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/griffith/api/", + "OrganizationName": "Dr Spencer L Griffith LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stradley/api/", + "OrganizationName": "Sandra Stradley, MSW PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374257-144016/api/", + "OrganizationName": "Mark Miller", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/erickson/api/", + "OrganizationName": "Erickson Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gjw/api/", + "OrganizationName": "Gloria J White PMHNP-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/khalid/api/", + "OrganizationName": "Abdul Khalid, MD, P.A,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/webb/api/", + "OrganizationName": "Kurt C. Webb, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/impact/api/", + "OrganizationName": "Impact Living Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccma/api/", + "OrganizationName": "Chuck Chapman, M.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spt/api/", + "OrganizationName": "Suzanne Ponsioen Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374619-154423/api/", + "OrganizationName": "Susan A Berger - Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1125215-213104/api/", + "OrganizationName": "Mary Lou Stewart, LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nwa/api/", + "OrganizationName": "New Wellness Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374628-160445/api/", + "OrganizationName": "David L Johns LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/greco/api/", + "OrganizationName": "Alisa Greco, LMHC LC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccc/api/", + "OrganizationName": "Carter Counseling \u0026 Consulting, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gklmhc/api/", + "OrganizationName": "Giles Keating, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cook/api/", + "OrganizationName": "Salem Psych Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kupsych/api/", + "OrganizationName": "University of Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1386522-145308/api/", + "OrganizationName": "Dr. White Therapy Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/strang/api/", + "OrganizationName": "Jessica I. Strang, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084734-134253/api/", + "OrganizationName": "Another Orgsss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404087-101223/api/", + "OrganizationName": "3241234", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374543-125551/api/", + "OrganizationName": "Next Step Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419347-000128/api/", + "OrganizationName": "Todd Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/min/api/", + "OrganizationName": "Dawn Min, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drfirst/api/", + "OrganizationName": "DrFirst Certification Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmt/api/", + "OrganizationName": "Reconciliation Ministries In-Home Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barnard/api/", + "OrganizationName": "Beth Barnard, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1301066-112635/api/", + "OrganizationName": "We Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374558-131946/api/", + "OrganizationName": "Laura Martin LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bastani/api/", + "OrganizationName": "Patricia J Bastani P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mbrown/api/", + "OrganizationName": "Marissa Perrelli Brown, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drsol/api/", + "OrganizationName": "SMH Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fynnaikens/api/", + "OrganizationName": "Stefania Fynn-Aikins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1069591-062047/api/", + "OrganizationName": "Helen McKibben", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lafond/api/", + "OrganizationName": "Deborah La Fond LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crphd/api/", + "OrganizationName": "Cynthia Rohrbeck, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1499314-154225/api/", + "OrganizationName": "Indigo Holistic Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1077747-110644/api/", + "OrganizationName": "Test Practice For July Release", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374118-094759/api/", + "OrganizationName": "Metta Psychotherapy LCSW PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374791-215106/api/", + "OrganizationName": "Counselor Brenda", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376332-193428/api/", + "OrganizationName": "Aime Ferow", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1172370-153120/api/", + "OrganizationName": "Starbird Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drclair/api/", + "OrganizationName": "Clair L. Goldberg, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1174547-150338/api/", + "OrganizationName": "Therapeia, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/full/api/", + "OrganizationName": "Full Circle Counseling \u0026 Coaching,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1436879-101950/api/", + "OrganizationName": "AdvancedPsychiatricServices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1412672-134851/api/", + "OrganizationName": "Glass House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419313-194732/api/", + "OrganizationName": "Timothy Coy, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374869-190854/api/", + "OrganizationName": "The Guild For Human Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1388081-162413/api/", + "OrganizationName": "Ozarks Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378288-211155/api/", + "OrganizationName": "ARC Counseling and Wellness Cl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378784-004845/api/", + "OrganizationName": "Zenaida Kleiner, M.S., LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rodenberger/api/", + "OrganizationName": "Heidi M. Rodenberger, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373824-134329/api/", + "OrganizationName": "lisa s squire phd lp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/obhicdemo/api/", + "OrganizationName": "OBHIC Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/financial/api/", + "OrganizationName": "Financial District Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/contemplative/api/", + "OrganizationName": "Contemplative Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375765-155807/api/", + "OrganizationName": "Agape Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377658-172703/api/", + "OrganizationName": "Awareness Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1174345-210210/api/", + "OrganizationName": "Perfected Medical \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/taylor/api/", + "OrganizationName": "Travis Taylor, LPC Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378171-144809/api/", + "OrganizationName": "Dewdrop Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257241-222919/api/", + "OrganizationName": "Jenelle Stone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376807-111838/api/", + "OrganizationName": "Dynamic Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trc/api/", + "OrganizationName": "WSUPG-Psychiatry Trauma Recovery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1273242-004822/api/", + "OrganizationName": "Susan Danehy, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1455114-140237/api/", + "OrganizationName": "Utica Mental Health Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376372-140406/api/", + "OrganizationName": "Connections Counseling M Adams,LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374458-024104/api/", + "OrganizationName": "Jennifer Edmondson, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1387341-184540/api/", + "OrganizationName": "SLS Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375495-180228/api/", + "OrganizationName": "Harris Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/partenio/api/", + "OrganizationName": "Ingrid Partenio PhD \u0026 Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dwa/api/", + "OrganizationName": "David W. Artzer, LSCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378991-215450/api/", + "OrganizationName": "Bare of Hope Consulting \u0026 Counsel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374463-070112/api/", + "OrganizationName": "Michelle Whitley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/templeu/api/", + "OrganizationName": "Temple University Episcopal Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brenden/api/", + "OrganizationName": "Dana M. Brenden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380229-124756/api/", + "OrganizationName": "Fulcrum Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspirecc/api/", + "OrganizationName": "Aspire Counseling and Coaching, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084801-150503/api/", + "OrganizationName": "Testing this setup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1052132-153756/api/", + "OrganizationName": "Jacqueline DelVecchio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373651-024136/api/", + "OrganizationName": "Jydesfamilyclinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1199691-104242/api/", + "OrganizationName": "Independent Behavioral Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/soules/api/", + "OrganizationName": "Melinda Soules, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adptcdemo/api/", + "OrganizationName": "ADPTC Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1092834-184309/api/", + "OrganizationName": "Springfield Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bbs/api/", + "OrganizationName": "Barbara B. Shostak, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/phillips/api/", + "OrganizationName": "Integrative Trauma Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peaceway/api/", + "OrganizationName": "Peaceway Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1529148-172425/api/", + "OrganizationName": "Patience D. Stevenson, D.Min., LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rsmith/api/", + "OrganizationName": "Rachel Smith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fac/api/", + "OrganizationName": "Fifth Avenue Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heeren/api/", + "OrganizationName": "Heeren Family Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brunner/api/", + "OrganizationName": "Joel Brunner, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spilman/api/", + "OrganizationName": "Spilman \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374449-000725/api/", + "OrganizationName": "Stephens Behavior Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/huscher/api/", + "OrganizationName": "Carla Huscher Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374381-175056/api/", + "OrganizationName": "Ayla Counseling and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374093-015225/api/", + "OrganizationName": "Roseann Hannon, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1516912-084608/api/", + "OrganizationName": "Mayo Healthness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1514036-160913/api/", + "OrganizationName": "DEMO FOR ME", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376896-144854/api/", + "OrganizationName": "Behaviour Support", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374663-190055/api/", + "OrganizationName": "Brazos Covenant Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083714-102656/api/", + "OrganizationName": "Test Practice Blah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1429931-103843/api/", + "OrganizationName": "Zen Educational Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nm/api/", + "OrganizationName": "Nisreen Mandilawi, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arcadiantelepsychiatry/api/", + "OrganizationName": "Arcadian Telepsychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1121322-150934/api/", + "OrganizationName": "PEGGY RENNER PHD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374823-131257/api/", + "OrganizationName": "Kayte Conroy, PhD, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1267093-214316/api/", + "OrganizationName": "Hindy Levine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385793-185027/api/", + "OrganizationName": "Willamette Valley E and E", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1464011-145901/api/", + "OrganizationName": "Behavior Talk LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarksbt/api/", + "OrganizationName": "Courtney Clark, LCMFT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pahc/api/", + "OrganizationName": "Patterson Army Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dumas/api/", + "OrganizationName": "Susan F. Dumas LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271607-120118/api/", + "OrganizationName": "Amy Kammerer, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1507931-133057/api/", + "OrganizationName": "Lara Lohman Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375722-142657/api/", + "OrganizationName": "Liz Villanueva, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/merriam/api/", + "OrganizationName": "Jim Merriam, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tjh/api/", + "OrganizationName": "Terri J. Haven, MSW, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374147-105601/api/", + "OrganizationName": "Clinical Neuropsychology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002502/api/", + "OrganizationName": "Alice M. Jannini Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/appledoorn/api/", + "OrganizationName": "Marit Appledoorn, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/abf/api/", + "OrganizationName": "Ann Beckley-Forest, LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/conner/api/", + "OrganizationName": "Vicki Conner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/synapse/api/", + "OrganizationName": "Synapse Counseling LLC Integrative Wellness, Peak Performance \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1200261-142014/api/", + "OrganizationName": "BG Christian Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crj/api/", + "OrganizationName": "Cathy Rosewell Jonas, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375854-081103/api/", + "OrganizationName": "Theresa Rembert, LPCC-S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1512549-151010/api/", + "OrganizationName": "Matthew Hart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1498510-231725/api/", + "OrganizationName": "C \u0026 K Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nwbhc/api/", + "OrganizationName": "NW Behavioral Health Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/997074/api/", + "OrganizationName": "Meghann Darne, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgc/api/", + "OrganizationName": "Jean Gargala Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kain/api/", + "OrganizationName": "Craig Kain, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/meridiem/api/", + "OrganizationName": "Meridiem Psychological Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerstoneaz/api/", + "OrganizationName": "Cornerstone Counseling Services of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neurocentre/api/", + "OrganizationName": "The NeuroAssessment Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/forms/api/", + "OrganizationName": "Forms", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dayspring/api/", + "OrganizationName": "Dayspring Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378279-195418/api/", + "OrganizationName": "A R C Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eastside/api/", + "OrganizationName": "East Side Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374892-004739/api/", + "OrganizationName": "Ross Cohen, MA, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374486-105545/api/", + "OrganizationName": "People House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lynnstone/api/", + "OrganizationName": "Lynn Stone, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079791-154856/api/", + "OrganizationName": "Great Day, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1294798-020805/api/", + "OrganizationName": "Serendib Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1393895-134550/api/", + "OrganizationName": "Ritu Anand, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374812-102234/api/", + "OrganizationName": "Center for Family Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1012188-150441/api/", + "OrganizationName": "Mary Jo Sanders RN, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079278-121123/api/", + "OrganizationName": "Kids Counseling Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376425-110507/api/", + "OrganizationName": "Compass Counseling Center, Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmi/api/", + "OrganizationName": "Robert McIlwain, LMFT, LHMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/indy/api/", + "OrganizationName": "Indy Counseling and Psychotherapy Services, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1197514-140139/api/", + "OrganizationName": "Anne Geissinger, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yurk/api/", + "OrganizationName": "Yurk Counseling Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brpc/api/", + "OrganizationName": "Burstein Rose PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1522602-131535/api/", + "OrganizationName": "BG TESTsss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084082-094443/api/", + "OrganizationName": "Nora B. Krause, L.C.S.W., L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1117113-200030/api/", + "OrganizationName": "Christie Hawkes, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378095-122815/api/", + "OrganizationName": "Achieve Balance Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375408-143904/api/", + "OrganizationName": "HeartWell Integrative Resources LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/testclinic/api/", + "OrganizationName": "Testclinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1124458-135642/api/", + "OrganizationName": "Dr. Manjit Khalsa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/awc/api/", + "OrganizationName": "Aspen Wind Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083726-104746/api/", + "OrganizationName": "afasdfadf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1392068-124305/api/", + "OrganizationName": "Root Down Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1518801-104443/api/", + "OrganizationName": "Apa promo tracker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1514806-094445/api/", + "OrganizationName": "Testy Testy1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/csh/api/", + "OrganizationName": "Candice Sapiro Hicks, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/maxwell/api/", + "OrganizationName": "Stefanie Maxwell, PsyD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1396530-162439/api/", + "OrganizationName": "Prism Counseling and Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1530634-111736/api/", + "OrganizationName": "BG TESTgg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/swell/api/", + "OrganizationName": "Risa Swell, LCSW, CEAP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sgw/api/", + "OrganizationName": "Sheri G White, Psy.D.,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1505140-221006/api/", + "OrganizationName": "John Townsend LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bhp/api/", + "OrganizationName": "Behavioral Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083248-110523/api/", + "OrganizationName": "New Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376768-222927/api/", + "OrganizationName": "JENNIFER LEONARD, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hedlund/api/", + "OrganizationName": "Mindy Hedlund, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dawn/api/", + "OrganizationName": "Dawn of a New Day Pastoral Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1533497-201651/api/", + "OrganizationName": "NY Covid Control", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1481795-054845/api/", + "OrganizationName": "Faith And Fly Psychiatric Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scp/api/", + "OrganizationName": "Swansea Center for Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/belt/api/", + "OrganizationName": "Jennifer Belt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380653-135940/api/", + "OrganizationName": "Roderick anscombe MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wvcllc/api/", + "OrganizationName": "Willamette Valley Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cbpsyd/api/", + "OrganizationName": "Caryn Banque, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373981-164910/api/", + "OrganizationName": "holly springs counseling center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acp/api/", + "OrganizationName": "Associates in Counseling and Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1019335-154505/api/", + "OrganizationName": "Jupiter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/northampton/api/", + "OrganizationName": "Northampton Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/994203/api/", + "OrganizationName": "talk talk talk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374936-103510/api/", + "OrganizationName": "TexasTest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377175-152405/api/", + "OrganizationName": "Samaritan Counseling Center SWGA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/harmonium/api/", + "OrganizationName": "Harmonium, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/katherine/api/", + "OrganizationName": "Katherine Bentley-Knowles, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376945-164117/api/", + "OrganizationName": "DAVID L JOHNS PSYCHOTHERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ksu/api/", + "OrganizationName": "Kansas State University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379517-181939/api/", + "OrganizationName": "Jose Alaniz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374045-191644/api/", + "OrganizationName": "DOH: Behavioral Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wpa/api/", + "OrganizationName": "Suzanne Stubblefield, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1438052-221702/api/", + "OrganizationName": "Duvall Counseling \u0026 Counsulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374090-004200/api/", + "OrganizationName": "Randa Gahin, LMFT, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374374-174910/api/", + "OrganizationName": "Bariatric Counseling Solutions,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374795-230813/api/", + "OrganizationName": "Gordon MacLean, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1441734-021523/api/", + "OrganizationName": "teeessstttteeeeessss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099888-114444/api/", + "OrganizationName": "Harmonium Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/teras/api/", + "OrganizationName": "Teras Intervention and Counseling Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/env/api/", + "OrganizationName": "Envision Counseling Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404059-093425/api/", + "OrganizationName": "Test welcome email", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hill/api/", + "OrganizationName": "Hillcrest Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1455145-072910/api/", + "OrganizationName": "UC Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nbbh/api/", + "OrganizationName": "Psychology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gb/api/", + "OrganizationName": "Glenn Burdick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/labray/api/", + "OrganizationName": "Ann LaBray, PsyD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/garner/api/", + "OrganizationName": "Pam Garner, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378284-205638/api/", + "OrganizationName": "ARC Claremont", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jucft/api/", + "OrganizationName": "Jefferson Univ Couples \u0026 Family Therapy Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380287-192041/api/", + "OrganizationName": "New Beginnings Today LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sccswg/api/", + "OrganizationName": "The Samaritan Counseling Ctr of SW GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bmha/api/", + "OrganizationName": "Behavioral Medicine \u0026 Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378743-174238/api/", + "OrganizationName": "LSC Therapy Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wmha/api/", + "OrganizationName": "Women's Mental Health Associates \u0026 Health Psychology Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373833-134842/api/", + "OrganizationName": "Arah Gould, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1414725-024447/api/", + "OrganizationName": "em wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gsu/api/", + "OrganizationName": "Georgia State University Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375920-120848/api/", + "OrganizationName": "Legacy Associates Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kuok/api/", + "OrganizationName": "Lake Whitney Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1387885-070826/api/", + "OrganizationName": "Pamela K Smith, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1523013-204833/api/", + "OrganizationName": "Kali Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375516-194810/api/", + "OrganizationName": "LTB Institute for Empowerment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1509317-151256/api/", + "OrganizationName": "Positive Direction Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374509-113103/api/", + "OrganizationName": "Karim Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374445-233141/api/", + "OrganizationName": "Mary O'Brien, MA, LPC, NCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374739-121750/api/", + "OrganizationName": "CanDo Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1410747-143306/api/", + "OrganizationName": "Woolwich Central School", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377302-103602/api/", + "OrganizationName": "District Heights YSB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374681-211437/api/", + "OrganizationName": "Test Teletherapy Suite inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377310-105658/api/", + "OrganizationName": "Forward Psychology Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rhd/api/", + "OrganizationName": "Resources For Human Development", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jcm/api/", + "OrganizationName": "Joyce C. Morene, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/focusc3/api/", + "OrganizationName": "Focus C3, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1287028-153701/api/", + "OrganizationName": "Kathy Hardie-Williams LPC LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1530623-105514/api/", + "OrganizationName": "dsdsds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374079-214025/api/", + "OrganizationName": "Dr.WinnieHuynhPsychotherapyServices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1405629-001406/api/", + "OrganizationName": "Heart Path Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pmoore/api/", + "OrganizationName": "Pamela Moore PMHNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374753-134948/api/", + "OrganizationName": "Donna Williams, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/foos/api/", + "OrganizationName": "James A.Foos, Psy.D. \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377222-170200/api/", + "OrganizationName": "Healing \u0026 Wholeness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nuessle/api/", + "OrganizationName": "Doreen Nuessle, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stobin/api/", + "OrganizationName": "Stephen Tobin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374276-151057/api/", + "OrganizationName": "Psychotherapy \u0026 Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/metta/api/", + "OrganizationName": "Metta LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flynn/api/", + "OrganizationName": "Flynn and Owen Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heyoka/api/", + "OrganizationName": "Heyoka Counseling Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demo/api/", + "OrganizationName": "Carepaths Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fwa/api/", + "OrganizationName": "Family Works Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kd/api/", + "OrganizationName": "The Center for Change, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/evano/api/", + "OrganizationName": "Evelyn Evano, LPC, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/farmer/api/", + "OrganizationName": "Tracy Bryce Farmer, LCSW, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375869-094219/api/", + "OrganizationName": "123 Practice Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375859-085908/api/", + "OrganizationName": "RBHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375082-152021/api/", + "OrganizationName": "Integrative Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kmphd/api/", + "OrganizationName": "Belmont Psychological Services, A Psychology Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nelsons/api/", + "OrganizationName": "Sarah E. Nelson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gl/api/", + "OrganizationName": "Ginny Liwanpo, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/norling/api/", + "OrganizationName": "Northwest DBT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1445053-002529/api/", + "OrganizationName": "James Heck,PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379364-113539/api/", + "OrganizationName": "Kelly Valente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375523-195916/api/", + "OrganizationName": "Catherine Cooney, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fine/api/", + "OrganizationName": "Fine-Thomas Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tlmd/api/", + "OrganizationName": "Todd Levine, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375914-120430/api/", + "OrganizationName": "CRITUSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351435-133505/api/", + "OrganizationName": "Hannah Charren-Diehl, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mhyr/api/", + "OrganizationName": "Mountain Homes Youth Ranch", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373086-150329/api/", + "OrganizationName": "Jennifer Malone, MFT #42564", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psd/api/", + "OrganizationName": "Life in Focus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379469-155104/api/", + "OrganizationName": "JENNIFER LEONARD LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amy/api/", + "OrganizationName": "Amy Jenks, Psy.D., Licensed Clinical Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/midvalley/api/", + "OrganizationName": "mid valley counseling center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kolli/api/", + "OrganizationName": "Sireesha Kolli, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mvmd/api/", + "OrganizationName": "Mytilee Vemuri, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cch/api/", + "OrganizationName": "Center for Creativity \u0026 Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1398308-231810/api/", + "OrganizationName": "All is Bright ABA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/puna/api/", + "OrganizationName": "Puna Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/krish/api/", + "OrganizationName": "Kristina Hallett, PhD, ABPP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pelham/api/", + "OrganizationName": "Claire Pelham, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jak/api/", + "OrganizationName": "Jennifer A. Kodrik, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brp/api/", + "OrganizationName": "Blue Ridge Parenting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/phcs/api/", + "OrganizationName": "Psychological Health Center of Suffield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ask/api/", + "OrganizationName": "ASKMEHFIRST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1460084-133026/api/", + "OrganizationName": "Joelle Stoltzfus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374184-121622/api/", + "OrganizationName": "SuperPsych Learn. Assess. and Treat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/paypal/api/", + "OrganizationName": "PayPal Payments", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/liz/api/", + "OrganizationName": "Elizabeth Corsale, MFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378741-174011/api/", + "OrganizationName": "Strong Minds Addiction \u0026 Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pad/api/", + "OrganizationName": "Positive Adjustments", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jlh/api/", + "OrganizationName": "Jennifer L. Cline LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holistic/api/", + "OrganizationName": "North Carolina Hoslitic Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stetson/api/", + "OrganizationName": "David Stetson LCSW, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375732-144527/api/", + "OrganizationName": "Donna C Henderson LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083354-130222/api/", + "OrganizationName": "This is a test Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1189117-104440/api/", + "OrganizationName": "Test2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mi/api/", + "OrganizationName": "Motivational Institute for Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375503-184912/api/", + "OrganizationName": "SentWell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373389-130245/api/", + "OrganizationName": "US VETS Las Vegas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1053852-215118/api/", + "OrganizationName": "Affinity Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431163-180658/api/", + "OrganizationName": "BD Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pilipchuk/api/", + "OrganizationName": "Johnna Pilipchuk, MA, LPA, GC-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demoupload/api/", + "OrganizationName": "Demo: Upload", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lifebalance/api/", + "OrganizationName": "Life Balance Ind., Couple, \u0026 Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ftcamp/api/", + "OrganizationName": "Ft. Campbell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1269068-131737/api/", + "OrganizationName": "Coastal Counseling and Art Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375104-160646/api/", + "OrganizationName": "C. David Blair, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/noble/api/", + "OrganizationName": "Janice Noble LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/palmer/api/", + "OrganizationName": "Elizabeth Palmer, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nbmh/api/", + "OrganizationName": "New Beginnings Mental Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aaaaatest123/api/", + "OrganizationName": "aaaatest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1414876-130418/api/", + "OrganizationName": "Gaia-speech", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374909-092526/api/", + "OrganizationName": "Frances Purcell-Abbott, LPC, NCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/srussell/api/", + "OrganizationName": "Stephanie S. Russell, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378293-212905/api/", + "OrganizationName": "ARC Counseling and Wellness Ir", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377464-181812/api/", + "OrganizationName": "Jen A./Collaborative Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1416116-050346/api/", + "OrganizationName": "Next Gen Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375528-201933/api/", + "OrganizationName": "Jen Ransil, Licensed MFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374126-102553/api/", + "OrganizationName": "HPFS Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kpmd/api/", + "OrganizationName": "Kurt Peters, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pathwayswny/api/", + "OrganizationName": "Pathways of WNY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rivard/api/", + "OrganizationName": "Kerry Rivard, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kama/api/", + "OrganizationName": "Kama Hiner Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431690-141959/api/", + "OrganizationName": "ABA spot", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1123915-203404/api/", + "OrganizationName": "Carolinas Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1199187-124344/api/", + "OrganizationName": "Selah Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/autumn/api/", + "OrganizationName": "Autumn Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/estape/api/", + "OrganizationName": "Jen Estape, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378793-090924/api/", + "OrganizationName": "Desert/Mountain Children's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1418350-142119/api/", + "OrganizationName": "Liz Faria, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heins/api/", + "OrganizationName": "Linda Heins LCSW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1494954-203407/api/", + "OrganizationName": "Elevate Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sarche/api/", + "OrganizationName": "Steve Sarche, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1323489-114650/api/", + "OrganizationName": "Yoches Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rlively/api/", + "OrganizationName": "Swansea Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/via/api/", + "OrganizationName": "Via Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wisdom/api/", + "OrganizationName": "Wisdom Within Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/doctorlisa/api/", + "OrganizationName": "Lisa Neuenschwander, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spero/api/", + "OrganizationName": "Spero Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374216-133349/api/", + "OrganizationName": "Sara Ryerson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/watters/api/", + "OrganizationName": "Emily Watters, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1353897-090838/api/", + "OrganizationName": "Cheryl L. Georges LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1179020-220239/api/", + "OrganizationName": "Mended with Gold Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404064-094123/api/", + "OrganizationName": "Testing Tele suite 333", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cretton/api/", + "OrganizationName": "Leiana Reyes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/smockville/api/", + "OrganizationName": "Smockville Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beechwood/api/", + "OrganizationName": "BeechWood, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1187521-171858/api/", + "OrganizationName": "Erin A Russell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375310-120001/api/", + "OrganizationName": "Amy Price Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374865-184740/api/", + "OrganizationName": "J. Hal Rogers, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lehman/api/", + "OrganizationName": "Andrea Lehman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374554-131553/api/", + "OrganizationName": "Karen A Repasky, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1453333-214442/api/", + "OrganizationName": "Deborah Howell Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beedy/api/", + "OrganizationName": "Amanda M. Beedy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adf/api/", + "OrganizationName": "Adam D. Friedman, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rbg/api/", + "OrganizationName": "Robert B. Goos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373792-131004/api/", + "OrganizationName": "Evalyn Lawnsby, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/buchanan/api/", + "OrganizationName": "Danette Buchanan Pastoral Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bjorkquist/api/", + "OrganizationName": "Patricia M. Bjorkquist, Ph.D. Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/helena/api/", + "OrganizationName": "Helena Family Support, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375624-112630/api/", + "OrganizationName": "Artemis Light Counselling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarity/api/", + "OrganizationName": "Clarity Counseling and Hypnotherapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1409782-130654/api/", + "OrganizationName": "IPPD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lmh/api/", + "OrganizationName": "Liberty Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1438007-200133/api/", + "OrganizationName": "Seaside serenity counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374368-173342/api/", + "OrganizationName": "Clarity Counseling Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380807-110851/api/", + "OrganizationName": "Tester Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377071-105439/api/", + "OrganizationName": "KDallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hjwc/api/", + "OrganizationName": "Heart's Journey Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leafcrest/api/", + "OrganizationName": "Leafcrest Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562690-164052/api/", + "OrganizationName": "google analytics test 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/placeofgrace/api/", + "OrganizationName": "A Place of Grace Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hs/api/", + "OrganizationName": "Hillary Straus, MA, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/miamiteen/api/", + "OrganizationName": "Miami Teen Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pettus/api/", + "OrganizationName": "Introspections LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/osborn/api/", + "OrganizationName": "Allison Osborn, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amstone/api/", + "OrganizationName": "Ava M. Stone, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ivey/api/", + "OrganizationName": "Donna Purvis Ivey, Ph.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1095585-164748/api/", + "OrganizationName": "Testpractice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379590-110529/api/", + "OrganizationName": "Claire Babbitt, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aquino/api/", + "OrganizationName": "Stephen Aquino, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/oic/api/", + "OrganizationName": "OIC Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374167-112921/api/", + "OrganizationName": "Jennifer Lusk Puerner, LPC, CAC III", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1489096-124338/api/", + "OrganizationName": "Rachel Vaughn, PsyD. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562700-165946/api/", + "OrganizationName": "213", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/csp/api/", + "OrganizationName": "Counseling Services of NE Portland, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562685-163118/api/", + "OrganizationName": "analytics test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1004532/api/", + "OrganizationName": "Nicole Bereolos, PhD, MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380766-210149/api/", + "OrganizationName": "Lala Balajadia-Alcala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099399-104425/api/", + "OrganizationName": "Mark Steiner, LSCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gfn/api/", + "OrganizationName": "GFN Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374452-002000/api/", + "OrganizationName": "Katie Schroeder, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1342888-150136/api/", + "OrganizationName": "Hutson Psychotherapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/starkes/api/", + "OrganizationName": "Mary Ann Starkes, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/css/api/", + "OrganizationName": "Complementary Support Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/asea/api/", + "OrganizationName": "Antioch Community Counseling \u0026 Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/genesis/api/", + "OrganizationName": "Genesis Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/awakening/api/", + "OrganizationName": "Awakening Your Spark, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/descutner/api/", + "OrganizationName": "Carol Descutner, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377698-130034/api/", + "OrganizationName": "Marjorie HOelker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aweiss/api/", + "OrganizationName": "Alex Weiss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neeley/api/", + "OrganizationName": "Dulcy Neeley, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bergeron/api/", + "OrganizationName": "Rosimery Bergeron", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/day/api/", + "OrganizationName": "New Day Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wayne/api/", + "OrganizationName": "WSUPG Dept. of Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clemmer/api/", + "OrganizationName": "Catherine B. Clemmer, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aboyoun/api/", + "OrganizationName": "Darren Aboyoun, PhD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cetlin/api/", + "OrganizationName": "Susan P. Cetlin, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1221309-131717/api/", + "OrganizationName": "Dahlia Berkovitz, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373924-153102/api/", + "OrganizationName": "Anderson Music Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leeberg/api/", + "OrganizationName": "Elizabeth Ann Leeberg, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pbear/api/", + "OrganizationName": "Pearl Street Offices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1021869-153904/api/", + "OrganizationName": "testbeth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1399542-175803/api/", + "OrganizationName": "Nina Zurawski LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/safe/api/", + "OrganizationName": "Safe Harbor Christian Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378814-110056/api/", + "OrganizationName": "DAVID L. JOHNS LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dlp/api/", + "OrganizationName": "Deborah L. Pollack, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/utvet/api/", + "OrganizationName": "UT Vet Social Work", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1457162-061853/api/", + "OrganizationName": "Utica Mental Health Counseling PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ipsc/api/", + "OrganizationName": "Integrated Psychological Services Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bontatibus/api/", + "OrganizationName": "Dana A. Bontatibus, LMFT, LCPC, CSP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/anothertest/api/", + "OrganizationName": "anothertest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376308-171118/api/", + "OrganizationName": "Patricia A. Jones, LCSW, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jp/api/", + "OrganizationName": "Jackie Paris Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/xavier/api/", + "OrganizationName": "Xavier Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/longdon/api/", + "OrganizationName": "Marlene Longdon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tlc/api/", + "OrganizationName": "True Light Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sjc/api/", + "OrganizationName": "Sarah Jane Chaplin, MS, LCMHC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heitman/api/", + "OrganizationName": "Annelise Heitman, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/undividual/api/", + "OrganizationName": "Undividual Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1509296-144025/api/", + "OrganizationName": "BG TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/test/api/", + "OrganizationName": "Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kml/api/", + "OrganizationName": "Katherine M Leonard PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rcs/api/", + "OrganizationName": "Redeemer Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374132-104141/api/", + "OrganizationName": "Prague Psychoanalytic Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1393928-152149/api/", + "OrganizationName": "Lauren D. Alloy, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spm/api/", + "OrganizationName": "Sara Pattavina Moulton LIMHP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/complete/api/", + "OrganizationName": "Complete Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amc/api/", + "OrganizationName": "Ann Martin Counseling Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1510828-124134/api/", + "OrganizationName": "HelpingHands4Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sawyer/api/", + "OrganizationName": "Sawyer Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/2103649200/api/", + "OrganizationName": "Test Test 1202", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dilazzero/api/", + "OrganizationName": "Deborah DiLazzero, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1437448-123034/api/", + "OrganizationName": "J. Scott Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377480-212615/api/", + "OrganizationName": "New Beginnings Today", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gmcs/api/", + "OrganizationName": "Greater MN Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mcferran/api/", + "OrganizationName": "Don McFerran PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/legacy/api/", + "OrganizationName": "LEGACY Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pathwayscs/api/", + "OrganizationName": "Pathways Counseling Solutions, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spectra/api/", + "OrganizationName": "Spectra LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1610692-055225/api/", + "OrganizationName": "Valley Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fbc/api/", + "OrganizationName": "Five Bodies Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lwhite/api/", + "OrganizationName": "L White Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shesto/api/", + "OrganizationName": "Ari Shesto, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/elite/api/", + "OrganizationName": "Elite Counseling Services, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ajc/api/", + "OrganizationName": "Amy J. Colley Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/murphy/api/", + "OrganizationName": "Alvin Murphy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/blackchristy/api/", + "OrganizationName": "Family Art Therapy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374411-192408/api/", + "OrganizationName": "Katrina Zeljak LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375232-213211/api/", + "OrganizationName": "Sapphire Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/meridian/api/", + "OrganizationName": "Meridian Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1260381-143850/api/", + "OrganizationName": "Peter L Brantner LMHC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385480-163929/api/", + "OrganizationName": "Artemisi Dono", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1553909-104346/api/", + "OrganizationName": "ONC Testing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dotson/api/", + "OrganizationName": "Julie Dotson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sagepsych/api/", + "OrganizationName": "SagePsych", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374310-155452/api/", + "OrganizationName": "BobDick, PhD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pitchford/api/", + "OrganizationName": "Leslie Pitchford PhD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1162200-182738/api/", + "OrganizationName": "CT Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lp/api/", + "OrganizationName": "Living Playfully", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iliketacos/api/", + "OrganizationName": "I Love Tacos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jklcswr/api/", + "OrganizationName": "Jacalyn Kelly, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dreyer/api/", + "OrganizationName": "Maggie Dreyer, MSW, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sheriff/api/", + "OrganizationName": "Jemsa Sheriff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wohl/api/", + "OrganizationName": "Jennifer Wohl Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yost/api/", + "OrganizationName": "Susan Yost", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374704-022225/api/", + "OrganizationName": "ARC Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374757-140236/api/", + "OrganizationName": "Ellen K. Slicker, PhD, Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404068-094506/api/", + "OrganizationName": "Testing Tele suite 69asdf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374800-233824/api/", + "OrganizationName": "JacquelynGerst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373761-124726/api/", + "OrganizationName": "Deb Christiansen Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374884-224949/api/", + "OrganizationName": "Dr. Stella Verna, Ph. D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374917-094956/api/", + "OrganizationName": "TestBRG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404053-091729/api/", + "OrganizationName": "aadfd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1415429-185131/api/", + "OrganizationName": "Jodie Rapping", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374812-120239/api/", + "OrganizationName": "Patty Cowan, M.A., LMLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374355-170505/api/", + "OrganizationName": "Southwest Behavioral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379425-142712/api/", + "OrganizationName": "OBHAW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375198-194646/api/", + "OrganizationName": "Trinity Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419946-224041/api/", + "OrganizationName": "Buell R. Barton Jr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eugenetherapy/api/", + "OrganizationName": "Eugene Therapy/Oregon Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/marchut/api/", + "OrganizationName": "Martha Marchut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375127-165512/api/", + "OrganizationName": "Heidi Saltzman PhD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arnesani/api/", + "OrganizationName": "Nancy L.Arnesani, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375000-124612/api/", + "OrganizationName": "Michelle M. Kim, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/agcap/api/", + "OrganizationName": "AG Child \u0026 Adult Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/huwe/api/", + "OrganizationName": "Dr. Jennifer M. Huwe, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gregory/api/", + "OrganizationName": "Kristyn Gregory, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/chicagomind/api/", + "OrganizationName": "Chicago Mind Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1409500-150743/api/", + "OrganizationName": "TPACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375461-161328/api/", + "OrganizationName": "Kendra Hughes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374973-120426/api/", + "OrganizationName": "Cachara and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375573-135846/api/", + "OrganizationName": "NEK Counseling \u0026 Consultation, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1532731-191839/api/", + "OrganizationName": "Cartersville Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1159426-203903/api/", + "OrganizationName": "Restorative Brain Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/molli/api/", + "OrganizationName": "Stacy M Molli LPCC, Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1406335-035418/api/", + "OrganizationName": "DM Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yva/api/", + "OrganizationName": "Your Vision Achieved", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/matson/api/", + "OrganizationName": "Matson Counseling Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1063920-115159/api/", + "OrganizationName": "Healing Steps Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1150635-105112/api/", + "OrganizationName": "Gordon Weiss MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/familyoptions/api/", + "OrganizationName": "Family Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/merc/api/", + "OrganizationName": "Meridian Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trcc/api/", + "OrganizationName": "Tressa Ryan Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mkj/api/", + "OrganizationName": "Mary K. Johnson, L.M.H.P., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374055-194041/api/", + "OrganizationName": "Antoinette V Steinbarth LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barram/api/", + "OrganizationName": "R. Andrew Barram", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kmyers/api/", + "OrganizationName": "Kara Myers, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374408-191617/api/", + "OrganizationName": "Intrinsic Elements Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1395916-225836/api/", + "OrganizationName": "In-to-Mate Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/langman/api/", + "OrganizationName": "Madeleine Langman, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/overcash/api/", + "OrganizationName": "Overcash Therapy Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002588/api/", + "OrganizationName": "Crossroads Counseling Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/whitley/api/", + "OrganizationName": "Michelle Whitley, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mands/api/", + "OrganizationName": "John Milnes, MSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1565109-091237/api/", + "OrganizationName": "Rebecca Kearney, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/plc/api/", + "OrganizationName": "Portland Lifestyle Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fbhpsych/api/", + "OrganizationName": "FBH Psychological Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1424421-122313/api/", + "OrganizationName": "Marissa Maki, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1072691-100707/api/", + "OrganizationName": "Nirmal Conforti, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374110-091332/api/", + "OrganizationName": "Michael Brady Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cburke/api/", + "OrganizationName": "Catherine Burke Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eaves/api/", + "OrganizationName": "Wendy Eaves, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mblake/api/", + "OrganizationName": "Martha Blake, MBA, NCPsyA Psychologist #1824", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374166-113115/api/", + "OrganizationName": "Chambers and Blohm Psychological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378560-082827/api/", + "OrganizationName": "Laura Moyer Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/daub/api/", + "OrganizationName": "Suzanne Daub LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/carolwooten/api/", + "OrganizationName": "Carol G. Fountain Wooten, M.A., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/worcester/api/", + "OrganizationName": "Worcester Academy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374689-225143/api/", + "OrganizationName": "Serenity Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373903-150146/api/", + "OrganizationName": "Triangle Child Psychology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377711-152126/api/", + "OrganizationName": "ROBIN G.BERGLUND, MD, MBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1417461-124200/api/", + "OrganizationName": "Caaron Willinger LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/giltner/api/", + "OrganizationName": "Kim D. Giltner, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crum/api/", + "OrganizationName": "Central Florida Neuropsychology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccenter/api/", + "OrganizationName": "Counseling and Consulting Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gpc/api/", + "OrganizationName": "Grunblatt Psychology and Counseling Offices, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378222-164954/api/", + "OrganizationName": "ARC Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373954-160534/api/", + "OrganizationName": "Peachtree Clinical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ajp/api/", + "OrganizationName": "Peace Tree CC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/strength/api/", + "OrganizationName": "Strength in Healing Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374613-153500/api/", + "OrganizationName": "Relationship Gardening", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lively/api/", + "OrganizationName": "Rachel Lively", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1432727-193458/api/", + "OrganizationName": "Be Well Michigan Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gilkey/api/", + "OrganizationName": "Andrea Gilkey LCSW Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amhareferral/api/", + "OrganizationName": "AMHA Referral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aacap/api/", + "OrganizationName": "aacap", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376142-090147/api/", + "OrganizationName": "Wear \u0026 Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377108-124126/api/", + "OrganizationName": "Entreprise Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1012627-125637/api/", + "OrganizationName": "Anam Cara Therapies, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377026-024610/api/", + "OrganizationName": "ARC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sdsu/api/", + "OrganizationName": "SDSU Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1433896-230220/api/", + "OrganizationName": "Outcomes Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375848-232022/api/", + "OrganizationName": "Erie Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nhlcsw/api/", + "OrganizationName": "Nancy Hoffman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/saussy/api/", + "OrganizationName": "AnnMarie Saussy LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377637-155837/api/", + "OrganizationName": "Brian Englander LCSW P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1372708-194629/api/", + "OrganizationName": "drsameffarahinc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/skillings/api/", + "OrganizationName": "Cherie Skillings", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431292-114911/api/", + "OrganizationName": "Paige Y. Leopold, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374854-174408/api/", + "OrganizationName": "4 Rivers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351442-133910/api/", + "OrganizationName": "Melissa Vogt, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fascc/api/", + "OrganizationName": "Fresh Aire Samaritan Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/days/api/", + "OrganizationName": "Dayspring Center for Christian Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084630-115042/api/", + "OrganizationName": "Some Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neuroforce/api/", + "OrganizationName": "Neuro Force Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/decisions/api/", + "OrganizationName": "Decisions Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aumann/api/", + "OrganizationName": "Nichole Aumann Psy.D. L.C.P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1134202-080445/api/", + "OrganizationName": "Grace Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/samt/api/", + "OrganizationName": "Samaritan Counseling Center of East Texas, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/functional/api/", + "OrganizationName": "Functional Psychological Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beechwoodils/api/", + "OrganizationName": "BeechWood ILS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spmd/api/", + "OrganizationName": "Sashi Putchakayala, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1046871-142857/api/", + "OrganizationName": "The NeuroAssessment Centre, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/questcounseling/api/", + "OrganizationName": "Quest Community Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ggpc/api/", + "OrganizationName": "Gertler \u0026 Gertler P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1194332-100103/api/", + "OrganizationName": "Bull City Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1545880-141005/api/", + "OrganizationName": "Barrett Gruffith Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tsol/api/", + "OrganizationName": "Therapeutic Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lasallericci/api/", + "OrganizationName": "Ricci Psychology of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hjohnson/api/", + "OrganizationName": "Heather Johnson, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peace/api/", + "OrganizationName": "Peace and Power Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dhill/api/", + "OrganizationName": "Dawn M. Hill, MA, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1217084-165559/api/", + "OrganizationName": "D. Christine Frizzell, EDD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/baez/api/", + "OrganizationName": "Psychiatric Consultants, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/melton/api/", + "OrganizationName": "Claudia Melton, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sgt/api/", + "OrganizationName": "Sara Goodman LSCW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1443927-231208/api/", + "OrganizationName": "Helping hands126", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1494677-215759/api/", + "OrganizationName": "Nevada Mercy and Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/riverview/api/", + "OrganizationName": "River View Counseling, pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/waiau/api/", + "OrganizationName": "Cornelia Waiau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374906-091804/api/", + "OrganizationName": "DallasTest Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1432870-003602/api/", + "OrganizationName": "Embrace Mental Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/schneweis/api/", + "OrganizationName": "Amanda Schneweis, LCMFT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1540685-112512/api/", + "OrganizationName": "Test Practice 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375795-164832/api/", + "OrganizationName": "All American Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cheskis/api/", + "OrganizationName": "Cheskis Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1512616-165519/api/", + "OrganizationName": "Demo123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/carr/api/", + "OrganizationName": "Carol L Carr, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1019467-185331/api/", + "OrganizationName": "Like You Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ams/api/", + "OrganizationName": "Angela M. Steliga, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mjg/api/", + "OrganizationName": "Meredith Joy Geck, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/keady/api/", + "OrganizationName": "Dan Keady Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099933-131359/api/", + "OrganizationName": "Applied Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1322353-154846/api/", + "OrganizationName": "Flow Through Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fieldman/api/", + "OrganizationName": "Nancy Fieldman, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/emmett/api/", + "OrganizationName": "Anne Emmett Therapy Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1496720-182033/api/", + "OrganizationName": "Beautiful Minds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jb/api/", + "OrganizationName": "Julie Branaugh LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378905-155501/api/", + "OrganizationName": "Test Best Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/996352/api/", + "OrganizationName": "Los Feliz Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psychwest/api/", + "OrganizationName": "Psychwest, Clinical \u0026 Forensic Psychology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1540631-131901/api/", + "OrganizationName": "RWT Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/poc/api/", + "OrganizationName": "Power of Connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1504528-102135/api/", + "OrganizationName": "2021_TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375946-130227/api/", + "OrganizationName": "Sacred Earthbound Journey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1548088-105249/api/", + "OrganizationName": "Jost Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1501924-112559/api/", + "OrganizationName": "Destined by Design Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431049-084550/api/", + "OrganizationName": "CONNECTIONS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/liferoots/api/", + "OrganizationName": "LifeRoots Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1546372-190801/api/", + "OrganizationName": "CUTA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377532-114425/api/", + "OrganizationName": "testorg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/troia/api/", + "OrganizationName": "Daniel B Troia, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378557-074703/api/", + "OrganizationName": "Laura Moyer counselin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1394770-210540/api/", + "OrganizationName": "GGPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccem/api/", + "OrganizationName": "Center for Cnsling. and Ed. of Medford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarifien/api/", + "OrganizationName": "Clarifien Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375048-140650/api/", + "OrganizationName": "MICHAEL CARRICO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/talley/api/", + "OrganizationName": "Dr. Stephen S. Talley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375565-073440/api/", + "OrganizationName": "Bright New Beginnings Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tccs/api/", + "OrganizationName": "Jean Ellen Jones, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dlugosz/api/", + "OrganizationName": "Katarzyna Dlugosz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1406408-110217/api/", + "OrganizationName": "Paris ISD Special Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377563-132801/api/", + "OrganizationName": "David Gilles-Thomas, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flourish/api/", + "OrganizationName": "FlourishWorks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/klrfamily/api/", + "OrganizationName": "KLR Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wrenn/api/", + "OrganizationName": "Karen Wrenn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1188977-153231/api/", + "OrganizationName": "Erin E Gaudreault, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542392-235635/api/", + "OrganizationName": "telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccpsych/api/", + "OrganizationName": "C \u0026 C Psychological Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/et/api/", + "OrganizationName": "Mary Ann Fahlstrom", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ryan/api/", + "OrganizationName": "Maija Ryan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lotuseldercc/api/", + "OrganizationName": "Lotus Elder Care \u0026 Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/esp/api/", + "OrganizationName": "Elizabeth Stuart Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/banderson/api/", + "OrganizationName": "Britt Anderson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1548889-194059/api/", + "OrganizationName": "Michelle Provost, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542392-235934/api/", + "OrganizationName": "telehealth2 tex3", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/epperson/api/", + "OrganizationName": "Sid Epperson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rice/api/", + "OrganizationName": "Elisabeth Rice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084743-134602/api/", + "OrganizationName": "raymond", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/groves/api/", + "OrganizationName": "The Groves Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/norris/api/", + "OrganizationName": "Kristy Norris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wtw/api/", + "OrganizationName": "Wilder Therapy and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/uhc/api/", + "OrganizationName": "University Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/khm/api/", + "OrganizationName": "KHM Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glejzer/api/", + "OrganizationName": "Robert Glejzer, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1452670-235616/api/", + "OrganizationName": "Briana Fox Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/onc/api/", + "OrganizationName": "ONC Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rbickel/api/", + "OrganizationName": "Transformations Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/surescripts/api/", + "OrganizationName": "Surescripts Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drwest/api/", + "OrganizationName": "Susan Maria Loreto West, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stewart/api/", + "OrganizationName": "Courtney Stewart, MA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/slu/api/", + "OrganizationName": "Saint Louis University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/camden/api/", + "OrganizationName": "Chanda Camden, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nava/api/", + "OrganizationName": "Marisa Nava, Ph.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cole/api/", + "OrganizationName": "Carol Cole, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/itspsych/api/", + "OrganizationName": "Integrated Therapeutic Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/c/api/", + "OrganizationName": "Cenneidigh Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccsa/api/", + "OrganizationName": "Counseling Connections of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jlp/api/", + "OrganizationName": "Judith L Pulliam, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/berko/api/", + "OrganizationName": "Berko Psychological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drmaria/api/", + "OrganizationName": "Maria-Christina Stewart, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zzz/api/", + "OrganizationName": "zzzzzzz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/albott/api/", + "OrganizationName": "Albott \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/houts/api/", + "OrganizationName": "Susan Houts, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/creeflcsw/api/", + "OrganizationName": "Lisa B. Creef, LCSW, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ddr/api/", + "OrganizationName": "Dr. Dawn Reilly, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bandw/api/", + "OrganizationName": "Baer and Wilson, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pfmd/api/", + "OrganizationName": "Patricia Frischtak, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccce/api/", + "OrganizationName": "Cross Cultural Counseling \u0026 Evaluation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1039490-184321/api/", + "OrganizationName": "Mary Beth Petersen-Cleary, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1630678-183310/api/", + "OrganizationName": "sam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1558410-175815/api/", + "OrganizationName": "Christian Healthcare Concepts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cuello/api/", + "OrganizationName": "Diana C. Cuello, Ph.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1055377-113636/api/", + "OrganizationName": "Test Practis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1170547-121815/api/", + "OrganizationName": "To Indy, With Love, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wthompson/api/", + "OrganizationName": "Wendy L Thompson, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leecounseling/api/", + "OrganizationName": "Renewed Hope Counseling Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1038313-172749/api/", + "OrganizationName": "Heather Scott, PhD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1247280-143346/api/", + "OrganizationName": "Christine Juliano, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1111582-081014/api/", + "OrganizationName": "Test111117", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1113176-140321/api/", + "OrganizationName": "Kasey B. Wojtek, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1085442-094326/api/", + "OrganizationName": "new prac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1168278-182831/api/", + "OrganizationName": "Palo Alto Cntr for Mind Body Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1040492-004827/api/", + "OrganizationName": "Carly J Knapp, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/moran/api/", + "OrganizationName": "Sharon Moran", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/portland/api/", + "OrganizationName": "Portland Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/probst/api/", + "OrganizationName": "Jane C. Probst Child and Family Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1553776-152816/api/", + "OrganizationName": "DianaChavez LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542971-215719/api/", + "OrganizationName": "Paradise Behavioral health center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hayes/api/", + "OrganizationName": "Karla I. Hayes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tgj/api/", + "OrganizationName": "Teni Garrett-Johnson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079146-214722/api/", + "OrganizationName": "Mental Wellness Counseling Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1020511-203247/api/", + "OrganizationName": "Bashah Psychological Services, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hinton/api/", + "OrganizationName": "Deborah Hinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sdmd/api/", + "OrganizationName": "Sara DeLong MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cicb/api/", + "OrganizationName": "Cape \u0026 Islands Cognitive Behavioral Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cramer/api/", + "OrganizationName": "Grow Heal Love", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kovarsky/api/", + "OrganizationName": "Marina Kovarsky, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kato/api/", + "OrganizationName": "Kyle Kato, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1226964-222833/api/", + "OrganizationName": "Serenity Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wooten/api/", + "OrganizationName": "Wooten \u0026 Associates,PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ifpsyd/api/", + "OrganizationName": "Irit Feldman, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kinsey/api/", + "OrganizationName": "Lee Kinsey Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632896-101101/api/", + "OrganizationName": "Akhrorbek Bakhramov", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/schaefer/api/", + "OrganizationName": "Frauke C. Schaefer, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nca/api/", + "OrganizationName": "NW Counseling Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmp/api/", + "OrganizationName": "Reaching Maximum Potential, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mnmd/api/", + "OrganizationName": "Mariana Niemtzoff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1296060-230644/api/", + "OrganizationName": "Luann M Martin, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cnc/api/", + "OrganizationName": "CN Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1256341-172315/api/", + "OrganizationName": "Hope \u0026 Outreach Therapy Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1582889-154554/api/", + "OrganizationName": "Paula J Jameson, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pocono/api/", + "OrganizationName": "Pocono Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1571338-021004/api/", + "OrganizationName": "CarePaths CONNECT LIVE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1571343-031656/api/", + "OrganizationName": "CP Connect 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/blcs/api/", + "OrganizationName": "Balanced Life Counseling Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerstone/api/", + "OrganizationName": "Cornerstone Therapy and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goodwin/api/", + "OrganizationName": "Journey to Psychological Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rjaffe/api/", + "OrganizationName": "Ralph Jaffe, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goetz/api/", + "OrganizationName": "Corner Post Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vanlue/api/", + "OrganizationName": "Jean Thompson Vanlue, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cf/api/", + "OrganizationName": "Christopher Fisher, PhD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ulbright/api/", + "OrganizationName": "Susan Ulbright", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hagarty/api/", + "OrganizationName": "Bridgette Hagarty, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fpa/api/", + "OrganizationName": "Family Psychology Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sheade/api/", + "OrganizationName": "Sheade Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/restore/api/", + "OrganizationName": "Restore Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgt/api/", + "OrganizationName": "Julia Griffin Terner Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1209004-154954/api/", + "OrganizationName": "StarHaus Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1532131-173250/api/", + "OrganizationName": "Healing Connections Therapy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/polacek/api/", + "OrganizationName": "Denise Polacek, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leslie/api/", + "OrganizationName": "Jean Leslie LPCC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hardy/api/", + "OrganizationName": "John Hardy, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcps/api/", + "OrganizationName": "Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acwc/api/", + "OrganizationName": "Alliance Counseling Wellness Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holt/api/", + "OrganizationName": "Lori Holt, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1634473-134417/api/", + "OrganizationName": "JN\u0026S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/galeflaherty/api/", + "OrganizationName": "Kimberly Gale-Flaherty, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/horton/api/", + "OrganizationName": "Deb Horton Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shortell/api/", + "OrganizationName": "Laurel L. Shortell, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sck/api/", + "OrganizationName": "Stephanie Cobb Kinney, LIMHP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/getz/api/", + "OrganizationName": "Counseling by Jonathan Getz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1175675-213159/api/", + "OrganizationName": "Diane V. Stevens, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nmhs/api/", + "OrganizationName": "Neubauer Mental Health Services, APC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/southcoast/api/", + "OrganizationName": "Southcoast Counseling Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rsloan/api/", + "OrganizationName": "Rebecca Robinett Sloan, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccbh/api/", + "OrganizationName": "Cira Center for Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ips/api/", + "OrganizationName": "Integritas Psychological Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bernhoft/api/", + "OrganizationName": "Kat Bernhoft, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1470015-010322/api/", + "OrganizationName": "Base Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ksmith/api/", + "OrganizationName": "Kathleen H. Smith, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1389727-175618/api/", + "OrganizationName": "Sheehan Gendron, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1477057-141721/api/", + "OrganizationName": "Growth and Change Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goodchoice/api/", + "OrganizationName": "GoodChoice Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/conway/api/", + "OrganizationName": "Dr. Kathryn M. Conway, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arcs/api/", + "OrganizationName": "Ashes Rising Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holbert/api/", + "OrganizationName": "Holbert Consulting and Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nhcs/api/", + "OrganizationName": "North Haven Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633189-143531/api/", + "OrganizationName": "Matthews Family Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631519-184117/api/", + "OrganizationName": "Patrick Quigley, PhD, LISAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lkk/api/", + "OrganizationName": "Laura K Kincaid LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drmarcey/api/", + "OrganizationName": "Marcella Marcey, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dh/api/", + "OrganizationName": "District Heights Family \u0026 Youth Services Bureau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frederick/api/", + "OrganizationName": "Julie D Frederick PHD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beaton/api/", + "OrganizationName": "Margaret (Peg) Beaton LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1238184-111908/api/", + "OrganizationName": "Integrated Psych", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/confluence/api/", + "OrganizationName": "Confluence Therapy \u0026 Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hcfc/api/", + "OrganizationName": "HOPE - Child and Family Counseling, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dperryllc/api/", + "OrganizationName": "Doug Perry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcmh/api/", + "OrganizationName": "The Pinnacle Center for Mental Health and Human Re", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lrbmd/api/", + "OrganizationName": "Lilia Romero-Bosch MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1147213-001103/api/", + "OrganizationName": "Long Grove Psychological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/henderson/api/", + "OrganizationName": "Donna C. Henderson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377324-113106/api/", + "OrganizationName": "Kristina Carlson LMHC, LCDP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1570210-193122/api/", + "OrganizationName": "Purdy Psychology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ndbh/api/", + "OrganizationName": "New Directions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1572792-151837/api/", + "OrganizationName": "Google Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shields/api/", + "OrganizationName": "YourWellBeingMatters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ihs/api/", + "OrganizationName": "Inner Health Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1243849-190348/api/", + "OrganizationName": "Jennifer R. Fedorov, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1598281-095801/api/", + "OrganizationName": "G2Deal2023", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1463355-174029/api/", + "OrganizationName": "Deschutes Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scc/api/", + "OrganizationName": "Samaritan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1112162-213647/api/", + "OrganizationName": "HG Counseling Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hwc/api/", + "OrganizationName": "Healing Ways Counseling, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glowacki/api/", + "OrganizationName": "Natalie A. Glowacki", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/whp/api/", + "OrganizationName": "Whole Health Psychological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/active/api/", + "OrganizationName": "Active Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/magaro/api/", + "OrganizationName": "Gerald Magaro, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mchugh/api/", + "OrganizationName": "Signs of Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1326407-102605/api/", + "OrganizationName": "The Journey Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sullivan/api/", + "OrganizationName": "Kelly L Sullivan, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/healthy/api/", + "OrganizationName": "Healthy Navigations", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/homan/api/", + "OrganizationName": "Kristen Homan, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcl/api/", + "OrganizationName": "Michelle A. Worden, Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neef/api/", + "OrganizationName": "Brittany K. Neef, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1426738-154352/api/", + "OrganizationName": "Limitless Minds LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/creatives/api/", + "OrganizationName": "Lynda Hynes Gagne, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barnes/api/", + "OrganizationName": "Barnes Therapy Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hitchen/api/", + "OrganizationName": "Abigail R Hitchen, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lacasse/api/", + "OrganizationName": "Elizabeth Lacasse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633631-190313/api/", + "OrganizationName": "j thearpy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1122945-105306/api/", + "OrganizationName": "Stephanie Jones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1362711-154836/api/", + "OrganizationName": "New Visions BHA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/maxpsych/api/", + "OrganizationName": "Max Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iron/api/", + "OrganizationName": "Ironwood Counseling and Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drumgoole/api/", + "OrganizationName": "Drumgoole Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1301737-135624/api/", + "OrganizationName": "Liferefine Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632465-102625/api/", + "OrganizationName": "MindBodySoul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632437-223027/api/", + "OrganizationName": "ABS Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1090158-173741/api/", + "OrganizationName": "180 Counseling Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/erecord/api/", + "OrganizationName": "eRecord Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shoreman/api/", + "OrganizationName": "Lynn M. Shoreman, LICSW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271066-210137/api/", + "OrganizationName": "Mindful Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/levy/api/", + "OrganizationName": "Stuart Levy LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glenn/api/", + "OrganizationName": "Christine Glenn Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bruhn/api/", + "OrganizationName": "D. Michael Bruhn, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/br/api/", + "OrganizationName": "Santa Fe Psychology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/roche/api/", + "OrganizationName": "Cassie Roche, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1447426-140111/api/", + "OrganizationName": "Reunification Works LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632026-042638/api/", + "OrganizationName": "Curati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1100753-100821/api/", + "OrganizationName": "DTMS Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/owens/api/", + "OrganizationName": "Melissa Owens, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/outback/api/", + "OrganizationName": "Outback Therapeutic Expeditions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1350522-121555/api/", + "OrganizationName": "Erica Weiss MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1067725-172646/api/", + "OrganizationName": "Zana Zeigler, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/samhouston/api/", + "OrganizationName": "Christopher Walken", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wft/api/", + "OrganizationName": "Wasatch Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/howland/api/", + "OrganizationName": "Greylock Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1559264-204438/api/", + "OrganizationName": "April Basham LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/valley/api/", + "OrganizationName": "Valley Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1426828-162645/api/", + "OrganizationName": "Staci Short", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1181305-164718/api/", + "OrganizationName": "Bright Future Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stamm/api/", + "OrganizationName": "Meegan Stamm, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1507664-140538/api/", + "OrganizationName": "Salem Hope and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clcounseling/api/", + "OrganizationName": "CL Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mdavis/api/", + "OrganizationName": "Mary Ann Davis, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404084-100917/api/", + "OrganizationName": "Ned Flanders Incfghdfghfgd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gross/api/", + "OrganizationName": "Amber Gross Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404074-095840/api/", + "OrganizationName": "ONC Round 3asdfasdf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1034126-114708/api/", + "OrganizationName": "Dr.Elizabeth Fazio \u0026 Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/youandme/api/", + "OrganizationName": "You and M.E. Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cng/api/", + "OrganizationName": "Cynthia Nicholson-Guidry MSN, RN FNP: PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ddj/api/", + "OrganizationName": "Danette Dollison-Johnson, MA, LPC, MT-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/saherman/api/", + "OrganizationName": "Sabrina Herman,LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/buckner/api/", + "OrganizationName": "Cynthia Buckner, APN, PMHNP-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/depalma/api/", + "OrganizationName": "Diane M. DePalma, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1220226-201421/api/", + "OrganizationName": "Katharyn Waterfield, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lighthousecs/api/", + "OrganizationName": "Lighthouse Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/castle/api/", + "OrganizationName": "Susannah Castle, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1054033-140240/api/", + "OrganizationName": "Willamette Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1113396-210216/api/", + "OrganizationName": "Relational Counseling Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1607227-144106/api/", + "OrganizationName": "Test Practice 1234", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flynnllc/api/", + "OrganizationName": "Lauren Flynn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kuttner/api/", + "OrganizationName": "Jessica Kuttner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hmps/api/", + "OrganizationName": "Healthy Mind Psychological Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vpa/api/", + "OrganizationName": "Vorpahl Psychology Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kirstner/api/", + "OrganizationName": "Katherine Kirstner, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lavergne/api/", + "OrganizationName": "RACHEL LAVERGNE LCMHC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hynd/api/", + "OrganizationName": "Jean Hynd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/figueroa/api/", + "OrganizationName": "Lisa Figueroa, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1300398-070133/api/", + "OrganizationName": "Kelly Norris, MA, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ecuft/api/", + "OrganizationName": "ECU Family Therapy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1383785-030421/api/", + "OrganizationName": "Caribbean community connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377527-143543/api/", + "OrganizationName": "Kristin David Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspen/api/", + "OrganizationName": "Vandana Aspen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/daf/api/", + "OrganizationName": "A New Direction Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633658-114401/api/", + "OrganizationName": "SparroWell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/agape/api/", + "OrganizationName": "Agape Counseling Services West Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fwsw/api/", + "OrganizationName": "Family Works Social Work", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1458334-161240/api/", + "OrganizationName": "ALLIANCE BEHAVIORAL HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lorven/api/", + "OrganizationName": "Lorven Child and Family Development", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jjpsyd/api/", + "OrganizationName": "Jennifer Jones, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1095962-150531/api/", + "OrganizationName": "Tricia James, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/keolanui/api/", + "OrganizationName": "Rebecca Keolanui", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1362429-194623/api/", + "OrganizationName": "L. Jensen and Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1008178/api/", + "OrganizationName": "Life Resources, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1064526-105300/api/", + "OrganizationName": "New Life New Journey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1449632-163018/api/", + "OrganizationName": "Angels Matter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bendcb/api/", + "OrganizationName": "Bend Counseling \u0026 Biofeedback", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fraguela/api/", + "OrganizationName": "Miguel Fraguela", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1329713-150543/api/", + "OrganizationName": "Insight Children Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1392061-124407/api/", + "OrganizationName": "Old River Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hp/api/", + "OrganizationName": "Houston Psychotherapists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bainbridge/api/", + "OrganizationName": "Bainbridge Youth Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bendpsych/api/", + "OrganizationName": "Bend Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/btallc/api/", + "OrganizationName": "Bergen Therapy Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/delshad/api/", + "OrganizationName": "Dr. Nadia Delshad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1593621-151207/api/", + "OrganizationName": "Center For Positive Change", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1421469-111333/api/", + "OrganizationName": "KMH Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/monkarsh/api/", + "OrganizationName": "Dr. Gary P. Monkarsh \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tyw/api/", + "OrganizationName": "Therapy Your Way, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jpc/api/", + "OrganizationName": "James P. Cooney, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/journey/api/", + "OrganizationName": "Journey Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sa/api/", + "OrganizationName": "Schlutter and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1588741-224222/api/", + "OrganizationName": "BG TEST90210", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1270101-171547/api/", + "OrganizationName": "Nancy Curfman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/npfs/api/", + "OrganizationName": "New Priorities Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/justian/api/", + "OrganizationName": "Rose Justian, LMSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cgc/api/", + "OrganizationName": "Counseling for Growth \u0026 Change", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aoh/api/", + "OrganizationName": "Art of Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pgc/api/", + "OrganizationName": "Pando Geriatric Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mp/api/", + "OrganizationName": "Michigan Psychological, PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/inhope/api/", + "OrganizationName": "Counseling Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631726-170548/api/", + "OrganizationName": "Sara James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257381-101446/api/", + "OrganizationName": "EnSpire Counseling \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scime/api/", + "OrganizationName": "Melinda Scime, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/werkman/api/", + "OrganizationName": "Alan Werkman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ptcc/api/", + "OrganizationName": "Pathways to Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rite/api/", + "OrganizationName": "Rite of Passages Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pll/api/", + "OrganizationName": "Pamela Lyss-Lerman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1029503-153127/api/", + "OrganizationName": "Amy Bordelon-Freeman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lalcsw/api/", + "OrganizationName": "Loren Andrews, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1563529-170841/api/", + "OrganizationName": "Aspire-MHTT SMYC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/quigley/api/", + "OrganizationName": "Patrick A. Quigley, Ph.D., LSAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cca/api/", + "OrganizationName": "Kristen Pohlman Ph.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/naumowicz/api/", + "OrganizationName": "Heidi Naumowicz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cws/api/", + "OrganizationName": "Carole W. Sebenick, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nlvbh/api/", + "OrganizationName": "North Las Vegas Behavioral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1077942-162327/api/", + "OrganizationName": "Amena Alicia Humphrey, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ml/api/", + "OrganizationName": "Monica Levesque", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kanesville/api/", + "OrganizationName": "Brigette Maas, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/savage/api/", + "OrganizationName": "Elizabeth Savage Psychotherapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgcw/api/", + "OrganizationName": "Jonna Gail Carson-Webb, Psy.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stubblefield/api/", + "OrganizationName": "Jennifer Stubblefield, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1520690-065902/api/", + "OrganizationName": "Practice Name", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1290753-164925/api/", + "OrganizationName": "Courtney Conroy, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspirema/api/", + "OrganizationName": "Aspire", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hcllc/api/", + "OrganizationName": "Harmony Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632033-082513/api/", + "OrganizationName": "ritesh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632036-090000/api/", + "OrganizationName": "Gili Hershkovich-Kim", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1036512-214913/api/", + "OrganizationName": "Sanders Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trotta/api/", + "OrganizationName": "Beth Trotta, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629907-151356/api/", + "OrganizationName": "Aspire Mental Health-SA Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/makingtherapybetter/api/", + "OrganizationName": "Making Therapy Better", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1570177-172424/api/", + "OrganizationName": "Limitless Behavioral Health \u0026 ABA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fraser/api/", + "OrganizationName": "Brenda Fraser, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/healingsource/api/", + "OrganizationName": "Healing Source", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/harsenault/api/", + "OrganizationName": "Heather Arsenault, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1488842-144257/api/", + "OrganizationName": "Inspired Conciousness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eller/api/", + "OrganizationName": "Buffie Eller", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cford/api/", + "OrganizationName": "Christopher Ford LSCSW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1621157-134950/api/", + "OrganizationName": "Paul Wilson LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1458063-161022/api/", + "OrganizationName": "ZenBees Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1620765-171122/api/", + "OrganizationName": "W Glenn Bordelon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271051-191153/api/", + "OrganizationName": "Nitin Rajhans, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1585554-142310/api/", + "OrganizationName": "Integrity Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mays/api/", + "OrganizationName": "AMaysing Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fch/api/", + "OrganizationName": "Framingham Counseling \u0026 Hypnotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cfbs/api/", + "OrganizationName": "Center for Behavioral Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ljt/api/", + "OrganizationName": "Leonard J. Tamura, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/advanced/api/", + "OrganizationName": "Mark De Luca, M.D. Palm Beach Psychiatry Experts, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/energy/api/", + "OrganizationName": "EnergyMatters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1434975-125025/api/", + "OrganizationName": "Integrity Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1264586-110002/api/", + "OrganizationName": "Susan Cohen LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/elias/api/", + "OrganizationName": "Dr. Jessica L. Tommasi, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kinsler/api/", + "OrganizationName": "Dr Kinsler \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mckenzie/api/", + "OrganizationName": "McKenzie \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1317891-141728/api/", + "OrganizationName": "Living Free Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1075906-182212/api/", + "OrganizationName": "She Soars Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psychassociates/api/", + "OrganizationName": "Psychiatric Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1565944-084357/api/", + "OrganizationName": "Randolph Family Crisis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1592307-150520/api/", + "OrganizationName": "MovingAhead Counseling ServicesPLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1593916-164133/api/", + "OrganizationName": "Carol Dell'Oliver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1527307-105418/api/", + "OrganizationName": "Restorative Brain Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fimd/api/", + "OrganizationName": "FUAD ISSA MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clh/api/", + "OrganizationName": "Center for Loss \u0026 Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kilgour/api/", + "OrganizationName": "April Kilgour", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1040486-225051/api/", + "OrganizationName": "Shay Scholtes, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tcd/api/", + "OrganizationName": "Timothy C. DeMott, M.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scook/api/", + "OrganizationName": "B SCOT COOK, PSYD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1060260-235751/api/", + "OrganizationName": "Lisa Carlson, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eom/api/", + "OrganizationName": "Elements of Motivation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sanger/api/", + "OrganizationName": "Sandra Eng, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1578510-194653/api/", + "OrganizationName": "Kristie Vera Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nova/api/", + "OrganizationName": "Nova Psychiatry, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lopas/api/", + "OrganizationName": "Jennifer Lopas, LCSW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/romo/api/", + "OrganizationName": "Rebecca U. Romo, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579943-135237/api/", + "OrganizationName": "oktesttest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579946-135311/api/", + "OrganizationName": "fake org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629129-135010/api/", + "OrganizationName": "Diamond Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1574155-134616/api/", + "OrganizationName": "Modern Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579950-135726/api/", + "OrganizationName": "rogfs test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1610916-161454/api/", + "OrganizationName": "Archway Child and Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lindsay/api/", + "OrganizationName": "Lindsay Harrow Pearlman, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1097172-112050/api/", + "OrganizationName": "Laura McGraw-Cook, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1582680-120036/api/", + "OrganizationName": "Wellspring Approach Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1208155-213910/api/", + "OrganizationName": "Lively Healthcare Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1186123-121544/api/", + "OrganizationName": "Bluegrass Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trinity/api/", + "OrganizationName": "Trinity Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1055702-085140/api/", + "OrganizationName": "Hendrickson Counseling \u0026 Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holland/api/", + "OrganizationName": "Stephanie B Holland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lorio/api/", + "OrganizationName": "Hakiba Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/svcmhs/api/", + "OrganizationName": "Susquehanna Valley Community MHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1107754-162839/api/", + "OrganizationName": "Alliance Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/malexander/api/", + "OrganizationName": "Mari Alexander, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jcbh/api/", + "OrganizationName": "Jackson County Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mercier/api/", + "OrganizationName": "Mercier Wellness Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/annafox/api/", + "OrganizationName": "Anna Fox, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bursteinrose/api/", + "OrganizationName": "Burstein-Rose PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peers/api/", + "OrganizationName": "Rhonda Peers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1058695-021204/api/", + "OrganizationName": "cynthia tegethoff practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/geller/api/", + "OrganizationName": "Elliot Geller, LCSW, CGP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ppgroup/api/", + "OrganizationName": "Premier Professional Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1247437-104422/api/", + "OrganizationName": "Southern Psychiatric Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spa/api/", + "OrganizationName": "Salem Psychology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/french/api/", + "OrganizationName": "Sound Mind Mental Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rugg/api/", + "OrganizationName": "Jacqueline Rugg, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1172296-002113/api/", + "OrganizationName": "Andy Markham LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jtmd/api/", + "OrganizationName": "Jacob Towery, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mueller/api/", + "OrganizationName": "Elizabeth Mueller ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390260-174405/api/", + "OrganizationName": "Empowering Youth Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1594082-173733/api/", + "OrganizationName": "Center for Renewed Minds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1159010-025345/api/", + "OrganizationName": "Glass House Counseling Agency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brodie/api/", + "OrganizationName": "D.A.Brodie,Ph.D.P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspiremh/api/", + "OrganizationName": "Aspire Mental Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hmmd/api/", + "OrganizationName": "Hayne McMeekin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ejt/api/", + "OrganizationName": "Emily Johnson Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/reflective/api/", + "OrganizationName": "Reflective Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1430245-005032/api/", + "OrganizationName": "Dr. Deanna Linville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scs/api/", + "OrganizationName": "Stacey C. Stevens, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hopesprings/api/", + "OrganizationName": "HopeSprings Counseling Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mckague/api/", + "OrganizationName": "Jennifer McKague, MS, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/recover/api/", + "OrganizationName": "Recover Health Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jackebarr/api/", + "OrganizationName": "Jack E. Barr Cntr for Well Being", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1191230-231007/api/", + "OrganizationName": "Stepping Stones Psych Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1624119-133709/api/", + "OrganizationName": "Clinica medica salud e integridad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1448541-144039/api/", + "OrganizationName": "YUMEI CHEN PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1014569-103150/api/", + "OrganizationName": "Institute for Life Renovation, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1480808-102428/api/", + "OrganizationName": "Marcy Rosenberg, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aps/api/", + "OrganizationName": "Associated Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ngcs/api/", + "OrganizationName": "Respire Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mcarthur/api/", + "OrganizationName": "Alicia McArthur, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1212306-204216/api/", + "OrganizationName": "Community Caring Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gatewaypsychiatric/api/", + "OrganizationName": "Gateway Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mfwc/api/", + "OrganizationName": "Marriage \u0026 Family Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1604789-121854/api/", + "OrganizationName": "Hello", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002439/api/", + "OrganizationName": "Advanced Counseling and Therapy Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/talktome/api/", + "OrganizationName": "Talk To Me, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1298921-183939/api/", + "OrganizationName": "Michelle Claire Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kittenj/api/", + "OrganizationName": "Joan Kitten", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1604794-122500/api/", + "OrganizationName": "oktesttesttest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378756-182805/api/", + "OrganizationName": "THE MIND WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gaitskill/api/", + "OrganizationName": "Kim Gaitskill MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bridgeway/api/", + "OrganizationName": "Bridgeway Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wbmallc/api/", + "OrganizationName": "Washington Behavioral Medicine Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1278227-133130/api/", + "OrganizationName": "Douglas J. Opler, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1154691-120633/api/", + "OrganizationName": "Serena Verolla, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1618167-064011/api/", + "OrganizationName": "Oak Tree Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385149-182631/api/", + "OrganizationName": "Brandon Teeftaller, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1606734-190429/api/", + "OrganizationName": "Americare Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1541024-180924/api/", + "OrganizationName": "Susan Schulz LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1075523-094422/api/", + "OrganizationName": "Psychiatric Momentum LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/madt/api/", + "OrganizationName": "Scott L. Fenton, PsyD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/segal/api/", + "OrganizationName": "Evolve Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mind/api/", + "OrganizationName": "Mindwell Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/apex/api/", + "OrganizationName": "Apex Neuropsychology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scarborough/api/", + "OrganizationName": "Branches Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stone/api/", + "OrganizationName": "Mind Body Wellness Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376712-173131/api/", + "OrganizationName": "Nancy H. Patten-Kline, DO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1078588-150017/api/", + "OrganizationName": "Bridges Community Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1132546-203320/api/", + "OrganizationName": "WellHealth Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerllc/api/", + "OrganizationName": "Oakwood Counseling Center LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/simmons/api/", + "OrganizationName": "Madeleine Simmons PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wilkinson/api/", + "OrganizationName": "J Wilkinson MD, Professional Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/foundationfam/api/", + "OrganizationName": "Foundation Family Care P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mansir/api/", + "OrganizationName": "Katarina R Mansir, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1239726-090715/api/", + "OrganizationName": "For Living Consciously", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zebrun/api/", + "OrganizationName": "John Zebrun MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shapiro/api/", + "OrganizationName": "Richard S. Shapiro Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1625529-125112/api/", + "OrganizationName": "Robyn Rose", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cce/api/", + "OrganizationName": "Center for Counseling and Education, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/integrative/api/", + "OrganizationName": "Integrative Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mtms/api/", + "OrganizationName": "Modern Therapies for Mind and Soul, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1082968-152635/api/", + "OrganizationName": "Corey T. Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1630768-122525/api/", + "OrganizationName": "The Foundation For Integrated Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1605850-143703/api/", + "OrganizationName": "Calmify Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1190132-093319/api/", + "OrganizationName": "Michael Andrews Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/costello/api/", + "OrganizationName": "Stephanie Costello LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631471-162253/api/", + "OrganizationName": "APICON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257252-071226/api/", + "OrganizationName": "Notable Life Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/linde/api/", + "OrganizationName": "Sandra Vander Linde, MS, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/irene/api/", + "OrganizationName": "Irene Skowronek Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bend/api/", + "OrganizationName": "Bend Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tegacay/api/", + "OrganizationName": "Tega Cay Psychiatric Associates, P A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1343760-133550/api/", + "OrganizationName": "Erik Morris PMHNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nih/api/", + "OrganizationName": "Northern Integrated Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1572971-183029/api/", + "OrganizationName": "Katrina Mercer, MA, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1608067-152545/api/", + "OrganizationName": "Velez Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/augustyn/api/", + "OrganizationName": "Augustyn Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acc/api/", + "OrganizationName": "Anchor Counseling Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccfp/api/", + "OrganizationName": "Cascade Child and Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mian/api/", + "OrganizationName": "Ayesha Mian, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adapt/api/", + "OrganizationName": "ADAPT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cclllc/api/", + "OrganizationName": "CCL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ap/api/", + "OrganizationName": "Andrea Paquette, ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/choices/api/", + "OrganizationName": "Choices Counseling of Londonderry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bsp/api/", + "OrganizationName": "Branching Streams Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631777-052635/api/", + "OrganizationName": "Empowering Poin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629983-205802/api/", + "OrganizationName": "Mass Behavioral Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/newhope/api/", + "OrganizationName": "New Hope Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/abhs/api/", + "OrganizationName": "ADVANCED BEHAVIORAL HEALTH SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sw/api/", + "OrganizationName": "Whitesell and Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631422-131200/api/", + "OrganizationName": "Michelle Gaffney, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iopt/api/", + "OrganizationName": "Integrative Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/svp/api/", + "OrganizationName": "Silicon Valley Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bt/api/", + "OrganizationName": "B \u0026 T Partners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vmurphy/api/", + "OrganizationName": "Vicki Murphy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ramd/api/", + "OrganizationName": "Roderick Anscombe, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/coxm/api/", + "OrganizationName": "Never Give up behavioral health services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/moynihan/api/", + "OrganizationName": "Jennifer Moynihan, Licensed Clinical Social Worker, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/omh/api/", + "OrganizationName": "Oasis Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633486-191750/api/", + "OrganizationName": "Let Light In Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pss/api/", + "OrganizationName": "Syntropy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633695-174314/api/", + "OrganizationName": "New practice in FLorida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631682-144507/api/", + "OrganizationName": "Aspire Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/999352/api/", + "OrganizationName": "Paul A. Suarez, MS, PMHP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dbh/api/", + "OrganizationName": "Daily Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lifequest/api/", + "OrganizationName": "LifeQuest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/solutionstherapy/api/", + "OrganizationName": "Solutions Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1634376-220307/api/", + "OrganizationName": "Fake practice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file