-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathorganizations.yml
35549 lines (35542 loc) · 875 KB
/
organizations.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- id: 21st-century-oncology
name: 21st Century Oncology
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: a-cipolla-medical-services-pc
name: A Cipolla Medical Services PC
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: a-woman-apos-s-connection
name: A Woman's Connection
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aadc-mpc
name: AADC/MPC
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aara
name: AARA
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aaron-e-henry-community-health-center
name: Aaron E. Henry Community Health Center
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aasaz
name: AASAZ
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: abbey-medical-associates-p-c
name: Abbey Medical Associates P.C.
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: abbott-northwestern-hospital
name: Abbott Northwestern Hospital
description: ''
category: hospital
states:
- MN
url: http://www.allinahealth.org/Customer-Service/Medical-records/MyChart/
view: true
download: true
transmit: true
- id: abilene-diagnostic-clinic
name: Abilene Diagnostic Clinic
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: abington-memorial-hospital
name: Abington Memorial Hospital
description: ''
category: hospital
states:
- PA
url: https://epp.ecwcloud.com/epp8/jsp/epp/epp_login.jsp
view: true
download: true
transmit: true
- id: abraham-lincoln-memorial-hospital
name: Abraham Lincoln Memorial Hospital
description: ''
category: hospital
states:
- IL
url: https://www.almh.org/
view: true
download: true
transmit: false
- id: abrom-kaplan-memorial-hospital
name: Abrom Kaplan Memorial Hospital
description: ''
category: hospital
states:
- LA
url: http://www.lafayettegeneral.com/patient_visitor_info.aspx
view: false
download: false
transmit: true
- id: acadiana-vascular-center
name: Acadiana Vascular Center
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: access-community-health-centers
name: Access Community Health Centers
description: As a not-for-profit charitable organization, we provide affordable and quality primary medical, dental, and behavioral health care and pharmacy services at five locations.
category: provider
states:
- CT
- WI
url: https://accesshealthmychart.org/mychart/
view: true
download: false
transmit: true
- id: acl
name: ACL
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: acmc
name: ACMC
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: acmh-hospital
name: ACMH Hospital
description: ''
category: hospital
states:
- PA
url: https://patientportal.acmh.org/
view: true
download: true
transmit: true
- id: adams-county-memorial-hospital
name: ADAMS COUNTY MEMORIAL HOSPITAL
description: ''
category: hospital
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: adena-pike-medical-center
name: Adena Pike Medical Center
description: ''
category: hospital
states:
- OH
url: http://www.adena.org/inside/page.dT/patient-portal
view: true
download: true
transmit: true
- id: adirondack-medical-center
name: Adirondack Medical Center
description: ''
category: hospital
states:
- NY
url: http://www.adirondackhealth.org/adirondack-medical-center/
view: false
download: false
transmit: false
- id: advanced-pain-care-medical-p-c
name: Advanced Pain Care Medical P.C.
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: advanced-surgical-associates
name: Advanced Surgical Associates
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: advanced-urologic-associates
name: Advanced Urologic Associates
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: advantage-health-solutions-inc
name: ADVANTAGE Health Solutions, Inc.
description: ADVANTAGE Health Solutions, Inc.℠, is an Indiana-based, provider-owned health plan and third party administrator (TPA) offering healthcare benefits and innovative care management and wellness programs to employer groups of all sizes.
category: insurance
states:
- IN
url: https://secure.healthx.com/publicservice/loginv1/login.aspx?bc=266da30d-a4ef-4f2d-a23d-45ad1a986dcb&serviceid=f9f857f8-5d7d-408f-a87e-684006ee8007
view: true
download: false
transmit: false
- id: adventist-medical-center-hanford
name: Adventist Medical Center - Hanford
description: ''
category: hospital
states:
- CA
url: https://www.adventisthealth.org/central-valley/pages/patients-and-visitors.aspx
view: true
download: false
transmit: false
- id: adventist-medical-center-reedley
name: Adventist Medical Center-Reedley
description: ''
category: hospital
states:
- CA
url: https://www.adventisthealth.org/pages/patients-and-visitors/myadventisthealth.aspx
view: true
download: false
transmit: false
- id: advocate-bromenn-medical-center
name: Advocate BroMenn Medical Center
description: ''
category: hospital
states:
- IL
url: http://www.advocatehealth.com/bromenn/patient-portal
view: true
download: true
transmit: true
- id: advocate-christ-medical-center
name: Advocate Christ Medical Center
description: ''
category: hospital
states:
- IL
url: http://amgdoctors.com/myadvocate-patient-portal/
view: true
download: true
transmit: true
- id: advocate-condell-medical-center
name: Advocate Condell Medical Center
description: ''
category: hospital
states:
- IL
url: http://www.advocatehealth.com/condell/
view: true
download: true
transmit: true
- id: advocate-eureka-hospital
name: Advocate Eureka Hospital
description: ''
category: hospital
states:
- IL
url: http://www.advocatehealth.com/eureka/patient-portal
view: true
download: true
transmit: true
- id: advocate-good-samaritan-hospital
name: Advocate Good Samaritan Hospital
description: ''
category: hospital
states:
- IL
url: http://advocatehealth.com/gsam/
view: true
download: true
transmit: true
- id: advocate-good-shepherd-hospital
name: Advocate Good Shepherd Hospital
description: ''
category: hospital
states:
- IL
url: http://amgdoctors.com/myadvocate-patient-portal/
view: true
download: true
transmit: true
- id: advocate-illinois-masonic-medical-center
name: Advocate Illinois Masonic Medical Center
description: ''
category: hospital
states:
- IL
url: http://amgdoctors.com/myadvocate-patient-portal/
view: true
download: true
transmit: true
- id: advocate-lutheran-general-hospital
name: Advocate Lutheran General Hospital
description: ''
category: hospital
states:
- IL
url: http://amgdoctors.com/myadvocate-patient-portal/
view: true
download: true
transmit: true
- id: advocate-sherman-hospital
name: Advocate Sherman Hospital
description: ''
category: hospital
states:
- IL
url: http://www.advocatehealth.com/hope/
view: true
download: true
transmit: true
- id: advocate-south-suburban-hospital
name: Advocate South Suburban Hospital
description: ''
category: hospital
states:
- IL
url: https://myadvocate.advocatehealth.com/patientApp/login.do?authfailedfinal=true
view: true
download: true
transmit: true
- id: advocate-trinity-hospital
name: Advocate Trinity Hospital
description: ''
category: hospital
states:
- IL
url: https://myadvocate.advocatehealth.com/patientApp/remoteLoginInternal.do
view: true
download: true
transmit: true
- id: aetna
name: Aetna
description: Aetna is dedicated to helping people achieve health and financial security by providing easy access to safe, cost-effective, high-quality health care and protecting their finances against health-related risks.
category: insurance
states:
- CT
url: https://member.aetna.com/appConfig/login/login.fcc?TYPE=33554433&REALMOID=06-36d8cb4d-4ac1-44c7-b12d-a80fba4b718e&GUID=&SMAUTHREASON=0&METHOD=GET&SMAGENTNAME=-SM-xU5km2Pz5%2f9A%2f2FCwUlXE48HlDkyH9ruz3da8Iqw6pwcy09mgHFN5RmlkMNqguY5&TARGET=-SM-HTTPS%3a%2f%2
view: true
download: true
transmit: true
- id: affiliated-clinics-of-grinnell-regional-medical-center
name: Affiliated Clinics of Grinnell Regional Medical Center
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: affiliates-of-family-medicine
name: Affiliates of Family Medicine
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: agnesian-healthcare
name: Agnesian HealthCare
description: ''
category: hospital
states:
- WI
url: https://cernerhealth.com/oauth/authenticate?client_id=0cf04f17c5ed4f24a44296ceee900133&redirect_uri=https://agnesian.iqhealth.com/login/cerner-health/authenticated&sign_in_only=on
view: true
download: true
transmit: true
- id: ahmc-anaheim-regional-medical-center
name: AHMC Anaheim Regional Medical Center
description: ''
category: hospital
states:
- CA
url: http://www.anaheimregionalmc.com/Patients-Visitors-Contractors/For-Patients/Patient-Portal.aspx
view: true
download: false
transmit: false
- id: aiea-pediatrics-llc
name: Aiea Pediatrics, LLC
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aiken-regional-medical-centers
name: Aiken Regional Medical Centers
description: ''
category: hospital
states:
- SC
url: https://cernerhealth.com/oauth/re-authenticate?client_id=7eab1f5d0ea54882b73c090c7572c272&redirect_uri=https://east.uhspatientportal.com/login/cerner-health/authenticated&sign_in_only=on
view: true
download: true
transmit: true
- id: akron-children-s-hospital
name: Akron Children's Hospital
description: ''
category: hospital
states:
- OH
url: https://www.akronchildrens.org/cms/your_visit/index.html
view: true
download: true
transmit: true
- id: akron-general-medical-center
name: Akron General Medical Center
description: ''
category: hospital
states:
- OH
url: https://app.relayhealth.com/
view: true
download: true
transmit: true
- id: akron-nephrology-associates
name: Akron Nephrology Associates
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alamance-regional-psychiatric-associates
name: Alamance Regional Psychiatric Associates
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alameda-county-medical-center
name: Alameda County Medical Center
description: ''
category: hospital
states:
- CA
url: http://www.alamedahealthsystem.org/patients-visitors
view: true
download: true
transmit: true
- id: alan-j-appley-md
name: Alan J Appley MD
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alan-n-oki-m-d-inc
name: Alan N. Oki, M.D., Inc.
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: albany-medical-center
name: Albany Medical Center
description: ''
category: hospital
states:
- NY
url: http://www.amc.edu/myalbanymed/
view: true
download: true
transmit: true
- id: albemarle-medical-clinic
name: Albemarle Medical Clinic
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alegent-creighton-health-bergan-mercy-medical-center
name: Alegent Creighton Health Bergan Mercy Medical Center
description: ''
category: hospital
states:
- NE
url: http://www.chihealth.com/chi-health-bergan-mercy
view: true
download: false
transmit: false
- id: alegent-creighton-health-community-memorial-hospital
name: Alegent Creighton Health Community Memorial Hospital
description: ''
category: hospital
states:
- IA
url: http://www.chihealth.com/chi-health-mychart
view: true
download: true
transmit: false
- id: alegent-creighton-health-immanuel-medical-center
name: Alegent Creighton Health Immanuel Medical Center
description: ''
category: hospital
states:
- NE
url: http://www.chihealth.com/chi-health-mychart
view: true
download: false
transmit: false
- id: alegent-creighton-health-lakeside-hospital
name: Alegent Creighton Health Lakeside Hospital
description: ''
category: hospital
states:
- NE
url: http://www.chihealth.com/chi-health-lakeside
view: true
download: false
transmit: false
- id: alegent-creighton-health-mercy-hospital
name: Alegent Creighton Health Mercy Hospital
description: ''
category: hospital
states:
- IA
url: https://epicmc.myalegent.com/mychart-prd/default.asp
view: true
download: false
transmit: false
- id: alegent-creighton-health-midlands-hospital
name: Alegent Creighton Health Midlands Hospital
description: ''
category: hospital
states:
- NE
url: http://www.chihealth.com/chi-health-mychart#utm_source=BPtoplink&utm_medium=link&utm_campaign=myChart
view: true
download: false
transmit: false
- id: alexandria-primary-care
name: Alexandria Primary Care
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alexian-brothers-medical-center
name: Alexian Brothers Medical Center
description: ''
category: hospital
states:
- IL
url: https://380-1.portal.athenahealth.com/
view: true
download: true
transmit: true
- id: alfred-i-dupont-hospital-for-children
name: Alfred I. duPont Hospital for Children
description: ''
category: hospital
states:
- DE
url: https://mynemours.nemours.org/MyNemours/
view: true
download: true
transmit: true
- id: alhambra-hospital-medical-center
name: Alhambra Hospital Medical Center
description: ''
category: hospital
states:
- CA
url: https://app.relayhealth.com/
view: true
download: true
transmit: true
- id: alice-hyde-medical-center
name: Alice Hyde Medical Center
description: ''
category: hospital
states:
- NY
url: http://alicehyde.com/About/MyHealthEView.asp
view: true
download: true
transmit: true
- id: allegan-general-hospital
name: Allegan General Hospital
description: ''
category: hospital
states:
- MI
url: https://www.aghosp.org/patients_visitors/patient_portal.aspx
view: true
download: true
transmit: false
- id: allegheny-general-hospital
name: Allegheny General Hospital
description: ''
category: hospital
states:
- PA
url: https://www.ahn.org/patients-visitors-information/mychart
view: false
download: false
transmit: false
- id: allegiance-health
name: Allegiance Health
description: ''
category: hospital
states:
- MI
url: http://www.allegiancehealth.org/patient-guide
view: true
download: true
transmit: false
- id: allen-county-regional-hospital
name: Allen County Regional Hospital
description: ''
category: hospital
states:
- KS
url: https://cernerhealth.com/oauth/re-authenticate?client_id=d11811ce38f94df9b30bdd3047241c23&redirect_uri=https://allencountyhospital.iqhealth.com/login/cerner-health/authenticated&sign_in_only=on
view: true
download: true
transmit: false
- id: alpena-regional-medical-center
name: Alpena Regional Medical Center
description: ''
category: hospital
states:
- MI
url: http://www.alpenaregionalmedicalcenter.org/Main/PatientPortals.aspx?srcaud=Main
view: true
download: true
transmit: true
- id: alt-hawaiian-dreams-clinic
name: ALT Hawaiian Dreams Clinic
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: alta-bates-summit-medical-center
name: Alta Bates Summit Medical Center
description: ''
category: hospital
states:
- CA
url: https://myhealthonline.sutterhealth.org/mho/default.asp?mode=stdfile&option=enroll
view: true
download: false
transmit: false
- id: alta-bates-summit-medical-center-summit-campus
name: Alta Bates Summit Medical Center - Summit Campus
description: ''
category: hospital
states:
- CA
url: http://www.altabatessummit.org/patientsandvisitors/index.html
view: true
download: false
transmit: false
- id: alta-view-hospital
name: Alta View Hospital
description: ''
category: hospital
states:
- UT
url: https://intermountainhealthcare.org/locations/alta-view-hospital/
view: true
download: true
transmit: true
- id: altius-health-plans
name: Altius Health Plans
description: From individuals and families to businesses of all sizes, we've got you covered in Utah, Wyoming, and Idaho with a wide range of products and services, including plans for Medicare beneficiaries.
category: insurance
states: []
url: https://member.cvty.com/memberPortalWeb/appmanager/memberPortal/member
view: true
download: false
transmit: false
- id: alton-memorial-hospital
name: Alton Memorial Hospital
description: ''
category: hospital
states:
- IL
url: http://www.altonmemorialhospital.org/Patients-Visitors
view: true
download: false
transmit: false
- id: altru-health-system
name: Altru Health System
description: ''
category: hospital
states:
- ND
url: http://www.altru.org/
view: true
download: true
transmit: true
- id: alvarado-hospital-medical-center
name: Alvarado Hospital Medical Center
description: ''
category: hospital
states:
- CA
url: http://www.alvaradohospital.com/Programs-and-Services/Patient-Portal.aspx
view: true
download: true
transmit: false
- id: amdc-physicians
name: AMDC Physicians
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: american-heart-center-pc
name: American Heart Center PC
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: amery-regional-medical-center
name: Amery Regional Medical Center
description: ''
category: hospital
states:
- WI
url: https://www.healthpartners.com/amery/
view: true
download: true
transmit: true
- id: amity-medical-associates
name: Amity Medical Associates
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: anderson-county-hospital
name: Anderson County Hospital
description: ''
category: hospital
states:
- KS
url: https://mysaintlukes.corp.saint-lukes.org/MyChartPRD/
view: true
download: true
transmit: false
- id: anderson-hospital
name: Anderson Hospital
description: ''
category: hospital
states:
- IL
url: http://www.andersonhospital.org/
view: true
download: true
transmit: true
- id: androscoggin-valley-hospital
name: Androscoggin Valley Hospital
description: ''
category: hospital
states:
- NH
url: http://www.avhnh.org/myhealthrecords
view: true
download: true
transmit: true
- id: ankle-and-foot-center
name: Ankle and Foot Center
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: anmed-health-medical-center
name: AnMed Health Medical Center
description: ''
category: hospital
states:
- SC
url: http://www.anmedhealth.org/home/patient-portal.aspx
view: true
download: true
transmit: true
- id: ann-robert-h-lurie-children-s-hospital-of-chicago
name: Ann & Robert H. Lurie Children's Hospital of Chicago
description: ''
category: hospital
states:
- IL
url: https://mychart.luriechildrens.org/MyChart/
view: true
download: false
transmit: false
- id: anna-jaques-hospital
name: Anna Jaques Hospital
description: ''
category: hospital
states:
- MA
url: http://myajhrecord.ajh.org/
view: true
download: true
transmit: true
- id: anne-arundel-medical-center
name: Anne Arundel Medical Center
description: ''
category: hospital
states:
- MD
url: http://www.aahs.org/
view: true
download: true
transmit: true
- id: annie-jeffrey-memorial-county-health-center
name: Annie Jeffrey Memorial County Health Center
description: ''
category: hospital
states:
- NE
url: http://www.ajhc.org/
view: true
download: true
transmit: true
- id: anniston-medical-clinic
name: Anniston Medical Clinic
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: anthem-blue-cross
name: Anthem Blue Cross
description: At Anthem Blue Cross we understand our health connects us to each other. What we all do impacts those around us. So Anthem is dedicated to delivering better care to our members, providing greater value to our customers and helping improve the health of our communities.
category: insurance
states:
- CA
- CO
- CT
- GA
- IN
- KY
- ME
- MO
- NH
- NV
- NY
- OH
- VA
- WI
url: https://www.anthem.com/
view: true
download: true
transmit: true
- id: anthony-decotis-md
name: Anthony Decotis MD
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: anthony-medical-center
name: Anthony Medical Center
description: ''
category: hospital
states:
- KS
url: https://anthonymedicalcenterks.iqhealth.com/
view: true
download: true
transmit: true
- id: appalachian-regional-healthcare-system
name: Appalachian Regional Healthcare System
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: appleton-area-health-services
name: Appleton Area Health Services
description: ''
category: hospital
states:
- MN
url: https://appletonareahealth.intelichart.com/PatientPortal/account/login?ReturnUrl=%2fPatientPortal%2f
view: true
download: true
transmit: true
- id: appleton-medical-center
name: Appleton Medical Center
description: ''
category: hospital
states:
- WI
url: https://my.thedacare.org/MyChart/default.asp
view: true
download: true
transmit: true
- id: apprhs-acute
name: APPRHS (Acute)
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: apwu-health-plan
name: APWU Health Plan
description: The American Postal Workers Union (APWU) Health Plan is a National Preferred Provider Organization (PPO) that offers both a fee-for-service High Option plan and a Consumer Driven Option Health Plan.
category: insurance
states: []
url: https://eh.apwuhp.com/eHEALTHsuiteWeb/
view: true
download: false
transmit: false
- id: arbor-family-medicine
name: Arbor Family Medicine
description: ''
category: provider
states: []
url: https://www.followmyhealth.com/
view: true
download: true
transmit: false
- id: aria-health
name: Aria Health
description: ''
category: hospital
states:
- PA
url: https://www.ariahealth.org/for-patients-guests
view: true
download: true
transmit: true
- id: arise-austin-medical-center
name: Arise Austin Medical Center
description: ''