-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathus_embassies_consulates.json
More file actions
1817 lines (1817 loc) · 95.9 KB
/
us_embassies_consulates.json
File metadata and controls
1817 lines (1817 loc) · 95.9 KB
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
[
{
"country": "Pakistan",
"city": "Islamabad",
"code": "ISL",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ISL-Islamabad.html",
"continent": "Asia",
"full_name": "U.S. Embassy Islamabad",
"address": "Diplomatic Enclave, Ramna 5 Islamabad, Pakistan",
"telephone": "(+92) 51-201-4000 (+92) 51-201-5000",
"fax": "",
"email": "support-pakistan@ustraveldocs.com",
"website": "https://pk.usembassy.gov/",
"cancel_reschedule": "Contact Us",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6636.842708240127!2d73.117995!3d33.723919!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x1d2ee714d236ce12!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1521469285172"
},
{
"country": "Albania",
"city": "Tirana",
"code": "TIA",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/TIA-Tirana.html",
"continent": "",
"full_name": "U.S. Embassy Tirana",
"address": "Rruga e Elbasanit 103 Tirana",
"telephone": "",
"fax": "",
"email": "TiranaUSConsulate@state.gov",
"website": "https://al.usembassy.gov/",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2996.610126530924!2d19.830607115423653!3d41.3173443792706!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x135031204e49dda9%3A0xef7923fe189ff879!2sRruga+e+Elbasanit+103%2C+Tirana%2C+Albania!5e0!3m2!1sen!2sus!4v1518020767606"
},
{
"country": "Algeria",
"city": "Algiers",
"code": "ALG",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ALG-Algiers.html",
"continent": "Africa",
"full_name": "U.S. Embassy Algiers",
"address": "05 Chemin Cheikh Bachir Ibrahimi El-Biar 16030 Alger, Algerie",
"telephone": "Call Center",
"fax": "",
"email": "IV-DVAlgiers@state.gov",
"website": "http://www.ustraveldocs.com/dz/dz-main-contactus.asp",
"cancel_reschedule": "IV-DVAlgiers@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3196.6155416623287!2d3.036925815288629!3d36.755798279957716!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x128fb26d17e21bf3%3A0x37f0c940bffed190!2sUS+Embassy+in+Algeria!5e0!3m2!1sen!2sus!4v1518635818957"
},
{
"country": "Spain",
"city": "Madrid",
"code": "MDD",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/MDD-Madrid.html",
"continent": "Europe",
"full_name": "U.S. Embassy Madrid",
"address": "Calle Serrano, 75 28006 Madrid",
"telephone": "",
"fax": "",
"email": "ivmadrid@state.gov",
"website": "https://es.usembassy.gov/embassy-consulates/madrid/",
"cancel_reschedule": "ivmadrid@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6073.67319518483!2d-3.686748!3d40.434617!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcb38bddc2afd3f08!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1521479469966"
},
{
"country": "Angola",
"city": "Luanda",
"code": "LUA",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/LUA-Luanda.html",
"continent": "",
"full_name": "U.S. Embassy Luanda",
"address": "Rua Presidente Houari Boumedienne #32 Miramar, Luanda Angola",
"telephone": "Call Center",
"fax": "",
"email": "consularluanda@state.gov",
"website": "https://ais.usvisa-info.com/en-ao/iv/information/contact_us",
"cancel_reschedule": "consularluanda@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d1971.3719890011514!2d13.245653!3d-8.810106!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1a51f2379b39236f%3A0x4554d16517cda92c!2sR.+Houari+Boumediene+32%2C+Luanda%2C+Angola!5e0!3m2!1sen!2sus!4v1521479189494"
},
{
"country": "Barbados",
"city": "Bridgetown",
"code": "BGN",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BGN-Bridgetown.html",
"continent": "North America",
"full_name": "U.S. Embassy Bridgetown",
"address": "Wildey Business Park Wildey St. Michael BB 14006 Bridgetown Barbados, W.I.",
"telephone": "(246) 227-4000",
"fax": "",
"email": "bridgetowniv@state.gov",
"website": "https://bb.usembassy.gov",
"cancel_reschedule": "Visa Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3886.0982892476636!2d-59.58720978468307!3d13.092956915745063!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8c43f692fae8871f%3A0xcbad083d3fd71115!2sUnited+States+Embassy!5e0!3m2!1sen!2sus!4v1521051010377"
},
{
"country": "Argentina",
"city": "Buenos Aires",
"code": "BNS",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BNS-Buenos-Aires.html",
"continent": "South America",
"full_name": "U.S. Embassy Buenos Aires",
"address": "Avenida Columbia 4300 (C1425GMN) Buenos Aires Argentina",
"telephone": "Call Center",
"fax": "",
"email": "Buenosaires-IV@state.gov",
"website": "https://ais.usvisa-info.com/en-ar/iv/information/contact_us",
"cancel_reschedule": "https://ais.usvisa-info.com/en-ar/iv",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3285.0893768753626!2d-58.42101138477097!3d-34.57660498046657!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95bcb59dc1e3cb8f%3A0x6e349de4b4b49a0!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1526486746673"
},
{
"country": "Armenia",
"city": "Yerevan",
"code": "YRV",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/YRV-Yerevan.html",
"continent": "",
"full_name": "U.S. Embassy Yerevan",
"address": "1 American Avenue Yerevan 0082, Republic of Armenia",
"telephone": "(+37410) 464-700",
"fax": "",
"email": "",
"website": "https://docs.google.com/forms/d/e/1FAIpQLSeTZcspb88FJZ1LE5QlHFqqc8TtAnrdR70K5BYbaqCs7uFfpw/viewform",
"cancel_reschedule": "Visa Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3048.9681304919313!2d44.47929001538841!3d40.16526327939517!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x406abc342adc4b83%3A0x7c1b35f4cf9be1b0!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1522436833645"
},
{
"country": "Colombia",
"city": "Bogota",
"code": "BGT",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BGT-Bogota.html",
"continent": "South America",
"full_name": "U.S. Embassy Bogotá",
"address": "Calle 24 Bis No. 48-50 Bogotá, D.C. Colombia",
"telephone": "Call Center",
"fax": "",
"email": "ivbogota@state.gov",
"website": "https://ais.usvisa-info.com/en-co/iv/information/contact_us",
"cancel_reschedule": "Cancel and Reschedule",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3976.7596756553944!2d-74.0971868852379!3d4.636909796631615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8e3f9bdb588dba2f%3A0x2a5d0629cc799ddb!2sUS+Embassy!5e0!3m2!1sen!2sus!4v1519318525533"
},
{
"country": "Australia",
"city": "Sydney",
"code": "SYD",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SYD-Sydney.html",
"continent": "Oceania",
"full_name": "U.S. Consulate General Sydney",
"address": "Suite 2, 50 Miller Street, North Sydney, NSW 2060",
"telephone": "In Australia: +61-1-300-139399 In the U.S.: 703-520-2230",
"fax": "",
"email": "support-australia@usvisascheduling.com",
"website": "https://au.usembassy.gov/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3313.93139558784!2d151.20416721516943!3d-33.83987982498969!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b12aef24d4784a1%3A0x9ed95f4f1b8ff4a6!2s50%20Miller%20St%2C%20North%20Sydney%20NSW%202060%2C%20Australia!5e0!3m2!1sen!2sus!4v1634656773131!5m2!1sen!2sus"
},
{
"country": "Austria",
"city": "Vienna",
"code": "VNN",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/VNN-Vienna.html",
"continent": "Europe",
"full_name": "U.S. Embassy Vienna",
"address": "Parkring 12a 1010 Vienna",
"telephone": "(+43-1) 31339-0",
"fax": "",
"email": "ViennaImmigrantVisas@state.gov",
"website": "https://at.usembassy.gov/",
"cancel_reschedule": "ViennaImmigrantVisas@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d10634.470483020059!2d16.358231141117827!3d48.21398071767202!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x476d07c80b1e9d33%3A0x659037951713a488!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1522930545395"
},
{
"country": "Georgia",
"city": "Tbilisi",
"code": "TBL",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/TBL-Tbilisi.html",
"continent": "",
"full_name": "U.S. Embassy Tbilisi",
"address": "29 Georgian-American Friendship Avenue Didi Dighomi Tbilisi 0131 Georgia",
"telephone": "(995 32) 2471 160",
"fax": "",
"email": "support-georgia@ustraveldocs.com",
"website": "https://ge.usembassy.gov/",
"cancel_reschedule": "ustraveldocs.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2974.8134689132526!2d44.77319791543826!3d41.78923347922934!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40446ddb836fcdf9%3A0xeb5a2609795ba197!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518021470893"
},
{
"country": "France",
"city": "Paris",
"code": "PRS",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/PRS-Paris.html",
"continent": "Europe",
"full_name": "U.S. Embassy Paris",
"address": "18 avenue Gabriel 75008 Paris",
"telephone": "+339 74482728, or +1 734 228 4258 (from the U.S.)",
"fax": "",
"email": "france@usvisaappt.com",
"website": "https://fr.usembassy.gov/",
"cancel_reschedule": "https://usvisaappt.com/visa/",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2624.4709893942527!2d2.3148854156747185!3d48.86829727928844!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47e66fce74664f57%3A0xc65d346fe9537902!2s18+Avenue+Gabriel%2C+75008+Paris%2C+France!5e0!3m2!1sen!2sus!4v1518556246211"
},
{
"country": "Bahamas",
"city": "Nassau",
"code": "NSS",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/NSS-Nassau.html",
"continent": "North America",
"full_name": "U.S. Embassy Nassau",
"address": "235 Shirley Street Nassau, The Bahamas",
"telephone": "",
"fax": "",
"email": "ivnassau@state.gov",
"website": "https://bs.usembassy.gov/",
"cancel_reschedule": "Visa Information Center",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7227.525865250531!2d-77.347218!3d25.076023000000003!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xae0b951d829f3bba!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1521484837725"
},
{
"country": "Bahrain",
"city": "Manama",
"code": "MNA",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/MNA-Manama.html",
"continent": "",
"full_name": "U.S. Embassy Manama",
"address": "Bldg 979, Road 3119, Block 331 Zinj Manama",
"telephone": "+973 17 242700",
"fax": "",
"email": "ManamaConsular@state.gov",
"website": "https://bh.usembassy.gov/",
"cancel_reschedule": "ManamaConsular@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3579.7533182064817!2d50.568643915437086!3d26.204701696516604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3e49af173617cb1f%3A0xd4e246d7135e5927!2sUnited+States+Embassy!5e0!3m2!1sen!2sus!4v1521481501365"
},
{
"country": "Bangladesh",
"city": "Dhaka",
"code": "DHK",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/DHK-Dhaka.html",
"continent": "Asia",
"full_name": "U.S. Embassy Dhaka",
"address": "Madani Avenue Baridhara, Dhaka-1212 Bangladesh",
"telephone": "From Bangladesh: (880) (2) 09610202040 From the U.S. 703-988-3466",
"fax": "",
"email": "support-bangladesh@usvisascheduling.com",
"website": "https://www.ustraveldocs.com/bd/en/",
"cancel_reschedule": "support-bangladesh@usvisascheduling.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3650.613137006702!2d90.4198703149822!3d23.796786684566488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c7bacaf03fcf%3A0x57883cc96930af8e!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1520946351014"
},
{
"country": "Poland",
"city": "Warsaw",
"code": "WRW",
"url": "https://travel.state.gov/content/travel/en/us-visas/visa-information-resources/content/travel/en/us-visas/Supplements/Supplements_by_Post/WRW-Warsaw.html",
"continent": "Europe",
"full_name": "",
"address": "",
"telephone": "",
"fax": "",
"email": "",
"website": "",
"cancel_reschedule": "",
"google_map": ""
},
{
"country": "Belgium",
"city": "Brussels",
"code": "BRS",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BRS-Brussels.html",
"continent": "Europe",
"full_name": "U.S. Embassy Brussels",
"address": "Boulevard du Régent 25 Regentlaan 25 Brussels 1000",
"telephone": "(32) 2/ 811.4000",
"fax": "",
"email": "brusselsiv@state.gov",
"website": "http://be.usembassy.gov/",
"cancel_reschedule": "Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2519.2746215288016!2d4.3651578159368984!3d50.84459866676648!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c3c483aa58d3cd%3A0x386e4a12a227b9ea!2sUS+Embassy!5e0!3m2!1sen!2sus!4v1521051408703"
},
{
"country": "Belize",
"city": "Belmopan",
"code": "BLZ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BLZ-Belmopan.html",
"continent": "",
"full_name": "U.S. Embassy Belmopan",
"address": "Consular Section 4 Floral Park Road Belmopan, Belize",
"telephone": "0 800 017 2599",
"fax": "",
"email": "consulbelize@state.gov",
"website": "https://bz.usembassy.gov/",
"cancel_reschedule": "consulbelize@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7620.406563909268!2d-88.7776842!3d17.2573975!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8f5dd56c02df3339%3A0xbc6dab3f3462a23e!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1518545913813"
},
{
"country": "Benin",
"city": "Cotonou",
"code": "COT",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/COT-Cotonou.html",
"continent": "",
"full_name": "U.S. Embassy Cotonou",
"address": "Rue 914 Cotonou, Benin",
"telephone": "(229) 21 30 06 50",
"fax": "",
"email": "IVCotonou@state.gov",
"website": "https://bj.usembassy.gov/",
"cancel_reschedule": "IVCotonou@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d63445.290320027874!2d2.402116!3d6.351221!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x550c790ea14fb13f!2sAmerican+Cultural+Center!5e0!3m2!1sen!2sus!4v1521467784510"
},
{
"country": "Bermuda",
"city": "Hamilton",
"code": "HML",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/HML-Hamilton.html",
"continent": "",
"full_name": "U.S. Consulate General Hamilton",
"address": "\"Crown Hill\" 16 Middle Road Devonshire DV 03 Hamilton, Bermuda",
"telephone": "(441)-295-1342",
"fax": "",
"email": "HamiltonConsulate@state.gov",
"website": "https://bm.usconsulate.gov/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3372.612320250038!2d-64.77029438447099!3d32.29539951569197!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8a2d147c66684bef%3A0x976b021acf07e439!2sConsulate+General+of+the+United+States!5e0!3m2!1sen!2sus!4v1521045756314"
},
{
"country": "India",
"city": "Mumbai",
"code": "BMB",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BMB-Mumbai.html",
"continent": "Asia",
"full_name": "U.S. Consulate General Mumbai",
"address": "C-49, G-Block Bandra Kurla Complex Bandra East Mumbai 400051 India",
"telephone": "91 20 69020000 From the U.S.: +1 (332) 220-1866",
"fax": "",
"email": "support-india@usvisascheduling.com",
"website": "https://in.usembassy.gov/embassy-consulates/mumbai/",
"cancel_reschedule": "support-india@usvisascheduling.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1885.4604955541486!2d72.86814995808625!3d19.06721109677324!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c8e940512057%3A0x3e32a8e25a189bf4!2sUS+Consulate+General%2C+Mumbai!5e0!3m2!1sen!2sus!4v1550165760796"
},
{
"country": "Bolivia",
"city": "La Paz",
"code": "LPZ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/LPZ-La-Paz.html",
"continent": "",
"full_name": "U.S. Embassy La Paz",
"address": "Avenida Arce 2780 La Paz Bolivia",
"telephone": "Call Center",
"fax": "",
"email": "consularlapazIV@state.gov",
"website": "https://ais.usvisa-info.com/en-bo/iv/information/contact_us",
"cancel_reschedule": "Cancel and Reschedule",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3825.2656159920703!2d-68.12348968511469!3d-16.512682788608277!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x915f208a8f7728a9%3A0x40f970c24d094516!2sUnited+States+Embassy!5e0!3m2!1sen!2sus!4v1521750705090"
},
{
"country": "Bosnia & Herzegovina",
"city": "Sarajevo",
"code": "SAR",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SAR-Sarajevo.html",
"continent": "",
"full_name": "U.S. Embassy Sarajevo",
"address": "1 Robert C. Frasure Street 71000 Sarajevo",
"telephone": "+387 33 943 955",
"fax": "",
"email": "SarajevoVisas@state.gov",
"website": "https://ba.usembassy.gov/",
"cancel_reschedule": "SarajevoVisas@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2876.9596748353156!2d18.39820511550435!3d43.8566644791149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4758c9212532b899%3A0xe5eb18200e511e50!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1518037217739"
},
{
"country": "South Africa",
"city": "Johannesburg",
"code": "JHN",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/JHN-Johannesburg.html",
"continent": "Africa",
"full_name": "U.S. Consulate GeneralJohannesburg",
"address": "1 Sandton Drive Sandhurst (opposite Sandton City) Johannesburg, South Africa",
"telephone": "Call Center",
"fax": "",
"email": "JohannesburgIV@state.gov",
"website": "https://ais.usvisa-info.com/en-za/iv/information/contact_us",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3582.612899295267!2d28.04948506561611!3d-26.1115520665557!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e950ccd3d6dc019%3A0xa6926312c65c8b99!2sU.S.+Consulate%2C+1+Sandton+Dr%2C+Sandhurst%2C+Sandton%2C+2196%2C+South+Africa!5e0!3m2!1sen!2sus!4v1521046442526"
},
{
"country": "Brazil",
"city": "Rio de Janeiro",
"code": "RDJ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/RDJ-Rio-de-Janeiro.html",
"continent": "South America",
"full_name": "U.S. Consulate General Rio de Janeiro",
"address": "Av. Presidente Wilson, 147 Castelo Rio de Janeiro, RJ 20030-020",
"telephone": "Call Center",
"fax": "",
"email": "ImmigrationRio@state.gov",
"website": "https://ais.usvisa-info.com/en-br/iv/information/contact_us",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3675.0481449898753!2d-43.1760086850344!3d-22.91159498500932!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9981df4426cdfd%3A0xc8858376b2aaa727!2sConsulado!5e0!3m2!1sen!2sus!4v1518450982559"
},
{
"country": "Malaysia",
"city": "Kuala Lumpur",
"code": "KLL",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/KLL-Kuala-Lumpur.html",
"continent": "Asia",
"full_name": "U.S. Embassy Kuala Lumpur",
"address": "376 Jalan Tun Razak 50400 Kuala Lumpur",
"telephone": "60-3-2168-5000",
"fax": "",
"email": "Kliv@state.gov",
"website": "https://my.usembassy.gov/",
"cancel_reschedule": "Kliv@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7967.521131575323!2d101.7194745!3d3.1577073!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31cc37ccb3d75de5%3A0x35ef9bae897fc68d!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1521834874827"
},
{
"country": "Singapore",
"city": "Singapore",
"code": "SGP",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SGP-Singapore.html",
"continent": "Asia",
"full_name": "U.S. Embassy Singapore",
"address": "27 Napier Road Singapore 258508",
"telephone": "(65) 6476-9100 From U.S.: 703-520-2238",
"fax": "",
"email": "",
"website": "https://sg.usembassy.gov/visa-navigator/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.7830109136107!2d103.81827831475398!3d1.3052855990479848!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da1a208b0e4eb3%3A0x1c464db9da514925!2sUnited+States+Embassy!5e0!3m2!1sen!2sus!4v1525112880337"
},
{
"country": "Bulgaria",
"city": "Sofia",
"code": "SOF",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SOF-Sofia.html",
"continent": "",
"full_name": "U.S. Embassy Sofia",
"address": "16, Kozyak Street Sofia 1408, Bulgaria",
"telephone": "+359 2 937 5100",
"fax": "",
"email": "iv_sofia@state.gov",
"website": "https://bg.usembassy.gov/",
"cancel_reschedule": "iv_sofia@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2933.742762563721!2d23.30982551546606!3d42.66680627916759!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40aa84f8f429dea7%3A0x91568c8c47eb9797!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518036555469"
},
{
"country": "Togo",
"city": "Lome",
"code": "LOM",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/LOM-Lome.html",
"continent": "",
"full_name": "U.S. Embassy Lome",
"address": "Boulevard Eyadema B.P. 852, Lomé, Togo",
"telephone": "(+228) 2261 5470",
"fax": "",
"email": "ConsularLome@state.gov",
"website": "https://tg.usembassy.gov/",
"cancel_reschedule": "ConsularLome@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3966.590925358685!2d1.2120463147689555!3d6.185463395521996!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1023e27853d2bf0b%3A0x17f381257f6a5a9d!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1533300592306"
},
{
"country": "Burma",
"city": "Rangoon",
"code": "RNG",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/RNG-Rangoon.html",
"continent": "",
"full_name": "U.S. Embassy Rangoon",
"address": "110 University Avenue Kamayut Township Rangoon, Burma",
"telephone": "(95-1) 536509",
"fax": "",
"email": "IVRangoon@state.gov",
"website": "https://mm.usembassy.gov/",
"cancel_reschedule": "ConsularRangoon@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3819.019905171692!2d96.14222551486857!3d16.82536858841774!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30c194ac33161695%3A0x74899cac54a23d60!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1518038304082"
},
{
"country": "Kenya",
"city": "Nairobi",
"code": "NRB",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/NRB-Nairobi.html",
"continent": "Africa",
"full_name": "U.S. Embassy Nairobi",
"address": "United Nations Avenue Nairobi P. O. Box 606 Village Market 00621 Nairobi Kenya",
"telephone": "Call Center",
"fax": "",
"email": "immigrationvisanairobi@state.gov",
"website": "https://ais.usvisa-info.com/en-ke/iv/information/contact_us",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d31910.850378365838!2d36.79838701715445!3d-1.2582372412643523!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x182f17b8bd72444f%3A0x3cc5ca25184f3d89!2sU.S.+Embassy!5e0!3m2!1sen!2sus!4v1519236882254"
},
{
"country": "Cabo Verde",
"city": "Praia",
"code": "PIA",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/PIA-Praia.html",
"continent": "",
"full_name": "U.S. Embassy Praia",
"address": "Rua Abilio Macedo 6 Praia, Cabo Verde",
"telephone": "+238 2608900",
"fax": "",
"email": "praiaconsular@state.gov",
"website": "https://cv.usembassy.gov/",
"cancel_reschedule": "praiaconsular@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3855.2863719226175!2d-23.508590685155912!3d14.921130389598996!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x93598e191706365%3A0x1a4a3161a1a8b841!2sUnited+States+Embassy!5e0!3m2!1sen!2sus!4v1518449686058"
},
{
"country": "Cambodia",
"city": "Phnom Penh",
"code": "PHP",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/PHP-Phnom-Penh.html",
"continent": "",
"full_name": "U.S. Embassy Phnom Penh",
"address": "#1, Street 96 Sangkat Wat Phnom Khan Daun Penh Phnom Penh, Cambodia",
"telephone": "Visa Service Information",
"fax": "",
"email": "",
"website": "https://kh.usembassy.gov",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15634.987518593307!2d104.91332747757905!3d11.569994718575465!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3109514361a6a399%3A0x2b9cd1845e900364!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1525873804042"
},
{
"country": "Cameroon",
"city": "Yaounde",
"code": "YDE",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/YDE-Yaounde.html",
"continent": "",
"full_name": "U.S. Embassy Yaounde",
"address": "Avenue Rosa Parks Yaoundé, Cameroon",
"telephone": "222201500 or 222201603",
"fax": "",
"email": "cameroon@usvisaappt.com",
"website": "https://www.usvisaappt.com/visaapplicantui/login",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3980.577931359247!2d11.497400714759518!3d3.9002284971631456!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x108bcf37b216732b%3A0x9e5f2d6cd31fb6eb!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1517942737049"
},
{
"country": "Canada",
"city": "Montreal",
"code": "MTL",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/MTL-Montreal.html",
"continent": "North America",
"full_name": "U.S. Consulate General Montreal",
"address": "1134, Rue Ste-Catherine West Montreal, QC H3B1H4 Canada",
"telephone": "Call Center",
"fax": "",
"email": "canada_contactus+ca+info+en@visaops.net",
"website": "https://ais.usvisa-info.com/en-CA/iv/information/contact_us",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2796.528251572946!2d-73.57542628487742!3d45.49944373911276!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cc91a43cd5e2389%3A0xc5ac831f51913e0!2s1134%20Saint-Catherine%20St%20W%2C%20Montreal%2C%20QC%20H3B%205K2%2C%20Canada!5e0!3m2!1sen!2sus!4v1662057176088!5m2!1sen!2sus"
},
{
"country": "Jamaica",
"city": "Kingston",
"code": "KNG",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/KNG-Kingston.html",
"continent": "North America",
"full_name": "U.S. Embassy Kingston",
"address": "142 Old Hope Road Kingston 6 Jamaica, West Indies",
"telephone": "\"Email preferred\"",
"fax": "",
"email": "KingstonIV@state.gov",
"website": "https://jm.usembassy.gov/",
"cancel_reschedule": "Visa Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7588.290609404991!2d-76.764851!3d18.018459!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc7dc2562bdcb1b32!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1521470724110"
},
{
"country": "Chile",
"city": "Santiago",
"code": "SNT",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SNT-Santiago.html",
"continent": "South America",
"full_name": "U.S. Embassy Santiago",
"address": "Av. Andrés Bello 2800 Las Condes, Santiago Chile",
"telephone": "Call Center",
"fax": "",
"email": "santiagoimmigration@state.gov",
"website": "https://ais.usvisa-info.com/en-cl/iv/information/contact_us",
"cancel_reschedule": "Visa Appointment Service:",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3330.43719793156!2d-70.60658278480163!3d-33.41184438078497!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9662cf43fa34b825%3A0x177861b6ea2f7700!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518037619825"
},
{
"country": "China",
"city": "Guangzhou",
"code": "GUZ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/GUZ-Guangzhou.html",
"continent": "Asia",
"full_name": "U.S. Consulate General Guangzhou",
"address": "#43 Hua Jiu Road Zhujiang New Town Tianhe District Guangzhou 510623",
"telephone": "",
"fax": "",
"email": "support-china@usvisascheduling.com",
"website": "https://china.usembassy-china.org.cn/visas/immigrant-visas/",
"cancel_reschedule": "Online help center",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7338.920411407292!2d113.320423!3d23.116848!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xfdea0b149565b86f!2sConsulate+General+of+the+United+States+of+America+in+Guangzhou!5e0!3m2!1sen!2sus!4v1521826436787"
},
{
"country": "China",
"city": "S.A.R. Hong Kong",
"code": "HNK",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/HNK-Hong-Kong.html",
"continent": "Asia",
"full_name": "U.S. Consulate General Hong Kong",
"address": "26 Garden Road Central Hong Kong",
"telephone": "Call Center",
"fax": "",
"email": "",
"website": "https://www.ustraveldocs.com/hk/en/contact-us",
"cancel_reschedule": "Visa Appointment Schedule",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3691.997964764465!2d114.15646236495431!3d22.27806693533516!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3404006577ae4379%3A0x6114f93ed1f2fc3c!2sConsulate+General+Of+The+United+States+Of+America%2C+26+Garden+Rd%2C+Central%2C+Hong+Kong!5e0!3m2!1sen!2sus!4v1521553415766"
},
{
"country": "Madagascar",
"city": "Antananarivo",
"code": "ANT",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ANT-Antananarivo.html",
"continent": "",
"full_name": "U.S. Embassy Antananarivo",
"address": "Lot 207 A, Point Liberty Andranoro Antehiroka, 105 Antananarivo",
"telephone": "(261-20) 23 480 00",
"fax": "",
"email": "AntanVisa@state.gov",
"website": "https://mg.usembassy.gov/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d123628.71692069448!2d47.49567704707148!3d-18.84519203841336!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x6ee65fc83c48e1d0!2sUS+Embassy+Andranomena!5e0!3m2!1sen!2sus!4v1522869524577"
},
{
"country": "New Zealand",
"city": "Auckland",
"code": "ACK",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ACK-Auckland.html",
"continent": "Oceania",
"full_name": "U.S. Consulate General Auckland",
"address": "3rd Floor Citigroup Building 23 Customs Street Auckland, New Zealand 1010",
"telephone": "64 9 303-2724 x2810",
"fax": "",
"email": "AucklandIV@State.gov",
"website": "https://nz.usembassy.gov/",
"cancel_reschedule": "aucklandiv@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3192.888067881873!2d174.76536901529116!3d-36.84515667993926!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6d0d47fbfae92733%3A0xc8bfebdb5ef0e046!2sUnited+States+Consulate+General!5e0!3m2!1sen!2sus!4v1518547695478"
},
{
"country": "Costa Rica",
"city": "San Jose",
"code": "SNJ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SNJ-San-Jose.html",
"continent": "",
"full_name": "U.S. Embassy San Jose",
"address": "Calle 98 Via 104, Pavas, San Jose Costa Rica",
"telephone": "Call Center",
"fax": "",
"email": "support-costarica@ustraveldocs.com",
"website": "https://www.ustraveldocs.com/cr/en/",
"cancel_reschedule": "support-costarica@ustraveldocs.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.8955690323955!2d-84.12636188520631!3d9.942646492890468!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8fa0fb60f6537d7f%3A0x2d35097ff426a22c!2sUS+Embassy+San+Jose%2C+Costa+Rica!5e0!3m2!1sen!2sus!4v1518038070090"
},
{
"country": "Côte d’Ivoire",
"city": "Abidjan",
"code": "ABJ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ABJ-Abidjan.html",
"continent": "",
"full_name": "U.S. Embassy Abidjan",
"address": "Cocody Riviéra Golf, 01 BP 1712 Abidjan 01 Abidjan, Côte d'Ivoire",
"telephone": "(+225) 22-49-40-00",
"fax": "",
"email": "AbjVisa@state.gov",
"website": "https://ci.usembassy.gov/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3972.53451389287!2d-3.978233385235058!3d5.335039896129966!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xfc1ec6371129169%3A0xb19910b25c796b66!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1522242569607"
},
{
"country": "Germany",
"city": "Frankfurt",
"code": "FRN",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/FRN-Frankfurt.html",
"continent": "Europe",
"full_name": "U.S. Consulate General Frankfurt",
"address": "Immigrant Visa Unit Gießener Str. 30, 60435 Frankfurt am Main",
"telephone": "",
"fax": "",
"email": "",
"website": "https://docs.google.com/forms/d/e/1FAIpQLScEvNF5RK-2bvqW7SicenUtdxrPxl-4XfdyfR6FWoC3uNRk4g/viewform",
"cancel_reschedule": "Frankfurt UStraveldocs Website",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2557.0923919650763!2d8.691812615918218!3d50.140703417515695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x41731248d7a8607f%3A0xa956baa2e52887f9!2sConsulate+General+of+the+United+States!5e0!3m2!1sen!2sus!4v1521045488408"
},
{
"country": "Cuba",
"city": "Havana",
"code": "HAV",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/HAV-Havana.html",
"continent": "",
"full_name": "U.S. Embassy Havana",
"address": "Calzada between L & M, Vedado Havana, Cuba",
"telephone": "+53-7-839-4100",
"fax": "",
"email": "HavanaConsularInfo@state.gov",
"website": "https://cu.usembassy.gov",
"cancel_reschedule": "https://tinyurl.com/VisasHavana",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3668.6659205939686!2d-82.38982028464451!3d23.145883517515404!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88cd79d5f1d6817b%3A0xa66689f666e933e!2sEmbassy%20of%20the%20United%20States%20of%20America!5e0!3m2!1sen!2sus!4v1655136439940!5m2!1sen!2sus"
},
{
"country": "Czech Republic",
"city": "Prague",
"code": "PRG",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/PRG-Prague.html",
"continent": "Europe",
"full_name": "U.S. Embassy Prague",
"address": "Tržiště 15 118 01 Prague 1",
"telephone": "+420-257-022-000",
"fax": "",
"email": "pragueivp@state.gov",
"website": "https://cz.usembassy.gov/",
"cancel_reschedule": "ustraveldocs.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2559.94802982379!2d14.398914815718273!3d50.08725987942696!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x470b94e274ba7f6f%3A0xf323e529dc0c25e6!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518625963573"
},
{
"country": "Democratic Republic of the Congo",
"city": "Kinshasa",
"code": "KIN",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/KIN-Kinshasa.html",
"continent": "",
"full_name": "U.S. Embassy Kinshasa",
"address": "310, Avenue des Aviateurs Kinshasa, Gombe (Entrance to the consular section is on Avenue Dumi)",
"telephone": "+097-261-6143 +243 973 77 40 50 Monday - Friday, 9:00pm to 6:00pm",
"fax": "",
"email": "",
"website": "https://cd.usembassy.gov",
"cancel_reschedule": "usvisaappt.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7957.16792766137!2d15.313660000000002!3d-4.30068!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xf708866c5dbc481f!2sUS+Embassy!5e0!3m2!1sen!2sus!4v1521471599435"
},
{
"country": "Sweden",
"city": "Stockholm",
"code": "STK",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/STK-Stockholm.html",
"continent": "Europe",
"full_name": "U.S. Embassy Stockholm",
"address": "Dag Hammarskjölds Väg 31 115 89 Stockholm Sweden",
"telephone": "",
"fax": "",
"email": "Support-sweden@usvisascheduling.com",
"website": "https://se.usembassy.gov/",
"cancel_reschedule": "stkivinfo@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2034.9576137057334!2d18.103296216072465!3d59.33366148166035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x465f82b2a20a693f%3A0x1a141a4866deba1c!2sEmbassy+of+the+United+States+of+America+in+Sweden!5e0!3m2!1sen!2sus!4v1518036316500"
},
{
"country": "Djibouti",
"city": "Djibouti",
"code": "DJI",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/DJI-Djibouti.html",
"continent": "",
"full_name": "U.S. Embassy Djibouti",
"address": "Lot 350-B Haramouss B.P. 185 Djibouti",
"telephone": "",
"fax": "",
"email": "ConsularDjibouti@state.gov",
"website": "https://dj.usembassy.gov/",
"cancel_reschedule": "DjiboutiNoSHow@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7817.66896371311!2d43.1640473!3d11.5637207!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1623075b73d1a37f%3A0x3176d325281df309!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518548425854"
},
{
"country": "Dominican Republic",
"city": "Santo Domingo",
"code": "SDO",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SDO-Santo-Domingo.html",
"continent": "",
"full_name": "U.S. Embassy Santo Domingo",
"address": "Av. Republica de Colombia #57 Santo Domingo",
"telephone": "(829) 947-6370 In the U.S. (703) 988-7087",
"fax": "",
"email": "DominicanRepublic.Visas@gdit-gss.com",
"website": "https://do.usembassy.gov/",
"cancel_reschedule": "Visa Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3783.4396497659077!2d-69.9658421351074!3d18.509024237415737!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8eaf8a2c55bb3589%3A0x128a44472edf804!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518037406163"
},
{
"country": "Ecuador",
"city": "Guayaquil",
"code": "GYQ",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/GYQ_Guayaquil.html",
"continent": "",
"full_name": "U.S. Consulate General Guayaquil",
"address": "Santa Ana St. and Jose Rodriguez Bonin Avenue Guayaquil, Guayas",
"telephone": "Call Center",
"fax": "",
"email": "IVguayaquil@state.gov",
"website": "https://ais.usvisa-info.com/en-ec/iv/information/contact_us",
"cancel_reschedule": "Visa Appointment Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15947.60084506885!2d-79.939978!3d-2.191484!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xf76c41f57ecfd44c!2sConsulate+General+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1548442868778"
},
{
"country": "Egypt",
"city": "Cairo",
"code": "CRO",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/CRO-Cairo.html",
"continent": "Africa",
"full_name": "U.S. Embassy Cairo",
"address": "Consular Section, IV Unit 5Tawfik Diab Street Garden City, Cairo Egypt",
"telephone": "(20-2) 2797 3300",
"fax": "",
"email": "consularcairoiv@state.gov",
"website": "https://eg.usembassy.gov/embassy-consulate/cairo/",
"cancel_reschedule": "Visa Customer Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d13815.403197978781!2d31.233631!3d30.041138!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x2a6c0ff4afa6decc!2sEmbassy+Of+The+United+States+Of+America%2C+Cairo!5e0!3m2!1sen!2sus!4v1520518319958"
},
{
"country": "El Salvador",
"city": "San Salvador",
"code": "SNS",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SNS-San-Salvador.html",
"continent": "",
"full_name": "U.S. Embassy San Salvador",
"address": "Boulevard Santa Elena Antiguo Cuscatlan San Salvador, El Salvador",
"telephone": "From El Salvador: 2113-9025 From the U.S.: (703) 988-3615",
"fax": "",
"email": "ELSalvador.Visas@gdit-gss.com",
"website": "https://sv.usembassy.gov/",
"cancel_reschedule": "Visa Information and Appointment Services",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3876.888032540176!2d-89.26022228517049!3d13.664571690403937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8f632e3b5ae0e5e5%3A0x445a18bdfecac8d4!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518037835056"
},
{
"country": "Ethiopia",
"city": "Addis Ababa",
"code": "ADD",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ADD-Addis-Ababa.html",
"continent": "Africa",
"full_name": "U.S. Embassy Addis Ababa",
"address": "Algeria St Addis Ababa, Ethiopia",
"telephone": "+251 11 558 2424 From U.S.: +1-703-543-9339",
"fax": "",
"email": "AddisIV@state.gov",
"website": "https://et.usembassy.gov/",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3940.057738835268!2d38.76164051478684!3d9.058498193500439!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x164b8f16cb8609a5%3A0x6cbb6455394d8ff9!2sEmbassy+of+the+United+States+of+America%2C+Algeria+St%2C+Addis+Ababa%2C+Ethiopia!5e0!3m2!1sen!2sus!4v1518549416150"
},
{
"country": "United Kingdom",
"city": "London",
"code": "LND",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/LND-London.html",
"continent": "Europe",
"full_name": "U.S. Embassy London",
"address": "Nine Elms Lane London, SW11 7US United Kingdom",
"telephone": "Use our Contact Form",
"fax": "",
"email": "",
"website": "https://uk.usembassy.gov/visas/visa-information-services/contact-us-immigrant-visas/",
"cancel_reschedule": "ais.usvisa-info.com/en-gb/iv",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3564.885272575122!2d-0.13625501283328528!3d51.48358033023344!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48760532743b90e1%3A0x790260718555a20c!2sU.S.+Embassy%2C+London!5e0!3m2!1sen!2sus!4v1526929909839"
},
{
"country": "Philippines",
"city": "Manila",
"code": "MNL",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/MNL-Manila.html",
"continent": "Asia",
"full_name": "U.S. Embassy Manila",
"address": "1201 Roxas Boulevard Manila, Philippines 1000",
"telephone": "(02) 85488223 (02) 77928988",
"fax": "",
"email": "supportphilippines@usvisascheduling.com",
"website": "https://www.ustraveldocs.com/",
"cancel_reschedule": "www.ustraveldocs.com/",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3861.384446921489!2d120.97548011483995!3d14.5771561898174!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3397ca2e484343e9%3A0xc83875debaab237b!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1521727148839"
},
{
"country": "Fiji",
"city": "Suva",
"code": "SUV",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/SUV-Suva.html",
"continent": "Oceania",
"full_name": "U.S. Embassy Suva",
"address": "158 Princes Road, Tamavua Suva, Fiji",
"telephone": "(+679) 331-4466",
"fax": "",
"email": "SuvaIV@state.gov",
"website": "https://fj.usembassy.gov/",
"cancel_reschedule": "SuvaIV@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3792.018510674361!2d178.43740131488676!3d-18.116936387645353!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6e1bde8a6dcf2811%3A0x433486fb291c2678!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1518036101864"
},
{
"country": "Guyana",
"city": "Georgetown",
"code": "GEO",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/GEO-Georgetown.html",
"continent": "",
"full_name": "U.S. Embassy Georgetown",
"address": "100 Young and Duke Streets Kingston, Georgetown, Guyana",
"telephone": "225-7965/6",
"fax": "",
"email": "visageorge@state.gov",
"website": "https://gy.usembassy.gov",
"cancel_reschedule": "ais.usvisa-info",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3961.5606886039072!2d-58.163313785310926!3d6.82316079506869!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8dafef13c5000001%3A0x47e7aa4bca78ab3a!2sEmbassy+of+the+United+States!5e0!3m2!1sen!2sus!4v1527173628745"
},
{
"country": "Gabon",
"city": "Libreville",
"code": "LIB",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/LIB-Libreville.html",
"continent": "",
"full_name": "U.S. Embassy Libreville",
"address": "Sablière B.P. 4000 Libreville, Gabon",
"telephone": "(241) 01-45-71-00",
"fax": "",
"email": "USVisaLibreville@state.gov",
"website": "https://ga.usembassy.gov/",
"cancel_reschedule": "USVisaLibreville@state.gov",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7979.352850821813!2d9.395061!3d0.48322100000000007!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc52aa337ce24c469!2sEducationUSA+Advising+Center!5e0!3m2!1sen!2sus!4v1521470672736"
},
{
"country": "Ghana",
"city": "Accra",
"code": "ACC",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ACC-Accra.html",
"continent": "Africa",
"full_name": "U.S. Embassy Accra",
"address": "No.19 Fifth Link Road Cantonments Accra, Ghana",
"telephone": "",
"fax": "",
"email": "ConsularAccra@state.gov",
"website": "https://gh.usembassy.gov/",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d31767.379570619232!2d-0.169974!3d5.578483!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x14168836e2e3552e!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1518549767233"
},
{
"country": "Morocco",
"city": "Casablanca",
"code": "CSB",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/CSB-Casablanca.html",
"continent": "Africa",
"full_name": "U.S. Embassy Casablanca",
"address": "8, Blvd. Moulay Youssef Casablanca 20250",
"telephone": "+212 520 485013",
"fax": "",
"email": "support-morocco@ustraveldocs.com",
"website": "https://ma.usembassy.gov/embassy-consulate/casablanca/",
"cancel_reschedule": "Visa Inquiry Service",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d830.8896256522275!2d-7.6268831!3d33.5908106!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xda7d2916a27ba59%3A0x53c683fd533a8796!2sConsulate+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1521204411070"
},
{
"country": "Greece",
"city": "Athens",
"code": "ATH",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/ATH-Athens.html",
"continent": "",
"full_name": "U.S. Embassy Athens",
"address": "91 Vasilisis Sophias Avenue 10160 Athens, Greece",
"telephone": "30-210-721-2951",
"fax": "",
"email": "athensconsul@state.gov",
"website": "https://gr.usembassy.gov",
"cancel_reschedule": "ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3144.723933564365!2d23.75264491532363!3d37.98357147972194!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14a1bd53d03776d7%3A0x81124fc943fe897!2sAthinaiki%20General%20Clinic%20S.A.!5e0!3m2!1sen!2sus!4v1568819056812!5m2!1sen!2sus"
},
{
"country": "Guatemala",
"city": "Guatemala City",
"code": "GTM",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/GTM-Guatemala-City.html",
"continent": "",
"full_name": "U.S. Embassy Guatemala City",
"address": "Boulevard Austriaco 11-51 Zone 16 Guatemala City Guatemala 01016",
"telephone": "(502) 2268-1294",
"fax": "",
"email": "Guatemala.Visas@gdit-gss.com",
"website": "https://ais.usvisa-info.com",
"cancel_reschedule": "https://ais.usvisa-info.com",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15442.559198320665!2d-90.4791829!3d14.6195837!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8589a3eb98cc6391%3A0xcc5312aef70ba706!2sNueva%20Embajada%20de%20los%20Estados%20Unidos%20de%20Am%C3%A9rica%20en%20Guatemala!5e0!3m2!1sen!2sus!4v1675695342360!5m2!1sen!2sus"
},
{
"country": "Senegal",
"city": "Dakar",
"code": "DKR",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/DKR-Dakar.html",
"continent": "Africa",
"full_name": "U.S. Embassy Dakar",
"address": "Route des Almadies Dakar, Senegal",
"telephone": "Contact Center",
"fax": "",
"email": "senegal@usvisaappt.com",
"website": "https://www.usvisaappt.com/visa/page?country=SN&apiPageName=locationsHours&locale=en",
"cancel_reschedule": "AVITS",
"google_map": "https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14871580.209958361!2d35.508964944468076!3d24.493878990818256!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x7ebddd12042db46d!2sEmbassy+of+the+United+States+of+America!5e0!3m2!1sen!2sus!4v1518547288782"
},
{
"country": "Honduras",
"city": "Tegucigalpa",
"code": "TGG",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/TGG-Tegucigalpa.html",
"continent": "",
"full_name": "U.S. Embassy Tegucigalpa",
"address": "Avenida La Paz Apartado Postal No. 3453 Tegucigalpa, Honduras",
"telephone": "Call Center",
"fax": "",
"email": "Honduras.Visas@gdit-gss.com",
"website": "https://ais.usvisa-info.com/en-hn/niv/information/contact_us",
"cancel_reschedule": "",
"google_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3869.5609950549515!2d-87.19214498516553!3d14.103073190120911!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8f6fa2dc58aeca5b%3A0x80d68c99c099658e!2sEmbajada+de+Estados+Unidos+Tegucigalpa!5e0!3m2!1sen!2sus!4v1518021142239"
},
{
"country": "Hungary",
"city": "Budapest",
"code": "BDP",
"url": "https://travel.state.gov/content/travel/en/us-visas/Supplements/Supplements_by_Post/BDP-Budapest.html",
"continent": "Europe",
"full_name": "U.S. Embassy Budapest",
"address": "Szabadság tér 12 H-1054 Budapest",
"telephone": "(36-1) 475-4400",