-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal-entry.json
More file actions
4716 lines (4716 loc) · 223 KB
/
Copy pathglobal-entry.json
File metadata and controls
4716 lines (4716 loc) · 223 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
[ {
"id" : 5001,
"name" : "Hidalgo Enrollment Center",
"shortName" : "Hidalgo Enrollment Center",
"locationType" : "LND",
"locationCode" : "2305",
"address" : "Anzalduas International Bridge",
"addressAdditional" : "5911 S. Bryan Road",
"city" : "Mission",
"state" : "TX",
"postalCode" : "78572",
"countryCode" : "US",
"tzData" : "America/Chicago",
"phoneNumber" : "9562057929",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "9562057936",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "9562057935",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2017-10-03T05:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "The Enrollment Center is located at the Anzalduas Port of Entry (Anzalduas International Bridge). ",
"notes" : "Arriving more than 15 minutes late to your scheduled appointment may result in being rescheduled to the next available appointment. Please bring all necessary travel documents, proof of residency, solvency and if you have a vehicle included on your application, proof of current insurance and registration. Due to COVID-19 a facemask will be required to be worn to enter the facility. ",
"mapFileName" : "/locations/5001/image",
"accessCode" : "",
"lastUpdatedBy" : "DFDES0C",
"lastUpdatedDate" : "2021-02-20T11:45:04",
"createdDate" : "2010-03-25T07:57:21",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
}, {
"id" : 4,
"name" : "U.S. / Mexico FAST"
} ]
}, {
"id" : 5002,
"name" : "San Diego -Otay Mesa Enrollment Center",
"shortName" : "San Diego -Otay Mesa Enrollment Center",
"locationType" : "LND",
"locationCode" : "2506",
"address" : "2500 Paseo Internacional",
"addressAdditional" : "",
"city" : "San Diego",
"state" : "CA",
"postalCode" : "92154",
"countryCode" : "US",
"tzData" : "America/Los_Angeles",
"phoneNumber" : "6196907600",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "1995-12-01T08:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "\"DO NOT USE GPS\" instead from 805 or 5 north/south take 905 East. Exit on Siempre Viva Rd East (last USA Exit). Follow Siempre Viva Rd and make a right on Roll Drive (US Gas on Corner). You may park in any open public parking or paid parking lot. The SENTRI/Global Entry Office is located on the south side of the Pedestrian Bridge of the Port of Entry.\n\"NO USE GPS\" Sí usted viene manejando del norte ó del sur por la autopista 805 ó 5, tome la salida a la autopista 905 hacia el Este. Salga a la derecha en la última salida de EEUU (last USA exit) que es Siempre Viva Rd East. Continúe hasta la gasolinera (US GAS) y dé vuelta a la derecha en Roll Drive. Se puede estacionar en cualquier estacionamiento publico o estacionamiento de pago. La oficina SENTRI/Global Entry se encuentra localizada a un lado de la zona peatonal.\n",
"notes" : "This Enrollment Center DOES NOT accept walk-in appointments. **Please bring your Passport, Drivers License, Naturalization Certificate and Lawful Permanent Resident Card as applicable. If your residence is different from what is listed on your driver's license, please provide proof of residency. If you have ever been arrested, please bring court documents verifying the disposition of the arrest(s), regardless of the date of the arrest and the outcome.\n",
"mapFileName" : "/locations/5002/image",
"accessCode" : "",
"lastUpdatedBy" : "EFG8TG1",
"lastUpdatedDate" : "2020-10-28T12:41:30",
"createdDate" : "2015-11-23T07:48:18",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
} ]
}, {
"id" : 5003,
"name" : "Brownsville Enrollment Center",
"shortName" : "Brownsville Enrollment Center",
"locationType" : "LND",
"locationCode" : "2301",
"address" : "3300 South Expressway 77 83",
"addressAdditional" : "Veterans International Bridge - Los Tomates",
"city" : "Brownsville",
"state" : "TX",
"postalCode" : "78520",
"countryCode" : "US",
"tzData" : "America/Chicago",
"phoneNumber" : "9569835668",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "9569835669",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "9569835604",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2006-11-07T06:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "From the North:\nTake 77/83 south until expressway ends, continue south though the light at East Ave/University blvd. Make the 1st left (east) after the light (approx. 100 yds.) Pass the Border Patrol Station, Make a right turn (south) at the Customs gate (approx. 200 yds.) Go to end of the road at the gate and turn right into the parking lot.\n\nFrom the South:\nRequest assistance from the Officer. \n",
"notes" : "",
"accessCode" : "",
"lastUpdatedBy" : "DEAEUM5",
"lastUpdatedDate" : "2021-07-26T08:45:17",
"createdDate" : "2016-06-24T15:17:26",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
} ]
}, {
"id" : 5004,
"name" : "Laredo Enrollment Center",
"shortName" : "Laredo Enrollment Center",
"locationType" : "LND",
"locationCode" : "2304",
"address" : "0 Linclon Juarez Bridge Bldg.2",
"addressAdditional" : "",
"city" : "Laredo",
"state" : "TX",
"postalCode" : "780443130",
"countryCode" : "US",
"tzData" : "America/Chicago",
"phoneNumber" : "9565237399",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2009-06-01T05:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "GPS address: 400 San Eduardo Ave, Laredo, TX 78040\n\nGPS Coordinates: Latitude 27.503519 , Longitude -99.501918",
"notes" : "You will need to provide the following original documents for SENTRI: Your US citizenship or legal immigration status, A valid driver’s license, Your vehicle registration and US car insurance, A notarized letter authorizing your vehicles use if it is not owned by you, Proof of residence such as a utility bill, Court disposition papers for any prior arrests or convictions\nYou will need to provide the following original documents for GLOBAL ENTRY: A valid Passport. Book, A permanent resident card (if applicable), Court disposition papers for any prior arrests or convictions, If adding a vehicle: Your vehicle registration and US car insurance,\n\nEn Espanol: Usted tendrá que proporcionar los siguientes documentos originales para SENTRI: Su ciudadanía estadounidense o estatus migratorio legal, Una licencia de conducir válida, Su registro de vehículo y seguro de automóvil de EE. UU., Una carta notarizada que autorice a sus vehículos a usar si no es de su propiedad, Prueba de residencia como una factura de servicios públicos, documentos de disposición de la Corte para cualquier arresto o condena previa\nDeberá proporcionar los siguientes documentos originales para GLOBAL ENTRY: Un pasaporte válido. Libro, Una tarjeta de residente permanente (si corresponde), documentos de disposición de la Corte para cualquier arresto o condena previa, Si agrega un vehículo: Su registro de vehículo y seguro de automóvil de EE. UU., Una carta notarizada que autorice a sus vehículos a usar si no es de su propiedad.",
"mapFileName" : "/locations/5004/image",
"accessCode" : "",
"lastUpdatedBy" : "DFFJKNH",
"lastUpdatedDate" : "2021-01-11T14:21:08",
"createdDate" : "2009-08-11T12:32:06",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
} ]
}, {
"id" : 5005,
"name" : "El Paso Enrollment Center",
"shortName" : "El Paso Enrollment Center",
"locationType" : "LND",
"locationCode" : "2401",
"address" : "797 S. Zaragoza Rd. Bldg. A",
"addressAdditional" : "",
"city" : "El Paso",
"state" : "TX",
"postalCode" : "79907",
"countryCode" : "US",
"tzData" : "America/Denver",
"phoneNumber" : "9158723472",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "9158724707",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "9158724749",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-09-03T06:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Take Loop 375, exit Zaragoza Rd., travel south towards toll booths into Mexico. Entrance to parking lot will be to the left (before reaching toll booths). ",
"notes" : "“The Enrollment Center is accepting scheduled appointments. The Enrollment Center will institute the COVID-19 Guidelines issued by the County of El Paso in mandating the use of masks. The use of a facial mask will be required when you arrive for your appointment along with adherence to social distancing. Exact Change or Credit Cards are encouraged due to National coin shortage. Your cooperation is appreciated.”\n\nEl Paso Enrollment Center is located at the Area Port of Ysleta 797 S. Zaragoza Rd. (Zaragoza Bridge). Office hours are as follows: Monday through Friday - 8:00 a.m. - 4:00 p.m.; Saturday - Closed (may vary occasionally from 8:00 a.m. - 4:00 p.m.) - Please call the office for more information; Sunday - Closed.>>>>>>>>>>>>>>>>>>>>\n\n\n\n ",
"accessCode" : "",
"lastUpdatedBy" : "DEZ32T9",
"lastUpdatedDate" : "2020-11-27T12:58:06",
"createdDate" : "2013-12-18T08:33:47",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
}, {
"id" : 4,
"name" : "U.S. / Mexico FAST"
} ]
}, {
"id" : 5006,
"name" : "Calexico Enrollment Center",
"shortName" : "Calexico Enrollment Center",
"locationType" : "LND",
"locationCode" : "2507",
"address" : "1699 East Carr Road",
"addressAdditional" : "",
"city" : "Calexico",
"state" : "CA",
"postalCode" : "92231",
"countryCode" : "US",
"tzData" : "America/Los_Angeles",
"phoneNumber" : "7607682300",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "3",
"phoneAltNumber" : "7607682406",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "7607682502",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2009-08-06T07:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "From San Diego take I-8 East to I-7 South to the Port of Entry. Exit at Carr road (International Border/Cars) then turn right at top of the bridge. Turn left at last U.S. exit and proceed to the security booth. From Yuma take I-8 West to I-7 South to the Port of Entry. Exit at Carr road (International Border/Cars) then turn right at top of the bridge. Turn left at last U.S. exit and proceed to the security booth. Do not use Goggle maps\n",
"notes" : "Bring proof of income (pay-stub, bank deposit, and income tax), residency (mortgage, rental, utility bills), vehicle registration, insurance, marriage certificate, birth certificate, School record or classes, and machine readable entry document such as US passport, Resident Alien Card, Other foreign passport and Visa. All entry documents need to be machine readable. No copies please. notarized authorization letter to enroll vehicle belonging to company or other person. If you have ever been arrested, please bring court documents verifying the disposition of the arrest (s), regardless of the date of the arrest and the outcome.",
"accessCode" : "",
"lastUpdatedBy" : "EFGNBAA",
"lastUpdatedDate" : "2019-02-04T12:02:30",
"createdDate" : "2009-08-06T14:52:18",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
} ]
}, {
"id" : 5007,
"name" : "Nogales, AZ",
"shortName" : "Nogales Enrollment Center",
"locationType" : "LND",
"locationCode" : "2604",
"address" : "200 N. MARIPOSA RD STE. B700",
"addressAdditional" : "",
"city" : "NOGALES",
"state" : "AZ",
"postalCode" : "85621",
"countryCode" : "US",
"tzData" : "America/Denver",
"phoneNumber" : "5203972184",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2017-04-03T07:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Applicants traveling South on I-19 will exit on Mariposa Rd. Exit (Exit 4). Turn right onto Mariposa Rd. Travel West for approximately 2.5 miles. Turn left onto Port Access Drive (the last stop light on Mariposa Rd.) Visitor parking is 1 block from stop lights. \nVisitor parking is located to the right side of the Security Guard Booth. ",
"notes" : "*** WE ARE NOT IN DENVER TIME...All APPOINTMENTS ARE IN ARIZONA TIME***\nNOTE: Due to the COVID-19 travel restrictions, at this moment only United States Citizens and Legal Permanent Residents will be able scheduled for Global/Sentri interviews. If the minor is a US Citizen or Legal Permanent Resident, they must be accompanied by there parents. The parents must be US citizens or legal permanent resident, if the parents are Not. This interview is NOT considered Essential travel and for those reason appointment will be Cancel. \n*****NOTA: Debido a las restricciones de viaje de COVID19, en este momento solo los ciudadanos de los Estados Unidos y los residentes legales permanentes podrán programar entrevistas para Global / Sentri. Si el menor es ciudadano estadounidense o residente legal permanente, debe ser acompañado por sus padres. Los padres deben ser ciudadanos estadounidenses o residentes legales permanentes, si los padres NO lo son. Esta entrevista NO se considera un viaje esencial y por eso motivos la cita se cancelara. ",
"accessCode" : "",
"lastUpdatedBy" : "EBFLDDY",
"lastUpdatedDate" : "2021-07-29T18:04:52",
"createdDate" : "2017-05-13T13:34:57",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 3,
"name" : "SENTRI"
}, {
"id" : 4,
"name" : "U.S. / Mexico FAST"
} ]
}, {
"id" : 5021,
"name" : "Champlain Enrollment Center",
"shortName" : "Champlain Enrollment Center",
"locationType" : "LND",
"locationCode" : "0712",
"address" : "237 West Service Road",
"addressAdditional" : "NEXUS Enrollment Center",
"city" : "Champlain",
"state" : "NY",
"postalCode" : "12919",
"countryCode" : "US",
"tzData" : "America/New_York",
"phoneNumber" : "5182987950",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "5182987949",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2003-10-23T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Heading South on 15 enter USA, after inspection, take exit 43. Of ramp take a right onto West Service Road until you reach a parking lot, park in parking lot and follow crosswalk to sliding glass doors. (Cargo Building)\n\nHeading North get off Exit 43 take a right, then first right onto West Service Road. Go all the way to the end of West Service Road into a parking lot, follow yellow crosswalk line to sliding glass doors, EC on the left.",
"notes" : "Must bring to Interview original Birth Certificate or passport, Drivers License and vehicle registrations.",
"accessCode" : "",
"lastUpdatedBy" : "ZBEF3RE",
"lastUpdatedDate" : "2020-09-01T10:30:56",
"createdDate" : "2008-04-15T10:23:35",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
} ]
}, {
"id" : 5022,
"name" : "Buffalo-Ft. Erie Enrollment Center",
"shortName" : "Buffalo-Ft. Erie Enrollment Center",
"locationType" : "LND",
"locationCode" : "0901",
"address" : "10 CENTRAL AVE",
"addressAdditional" : "",
"city" : "FORT ERIE",
"state" : "ON",
"postalCode" : "L2A6G6",
"countryCode" : "CA",
"tzData" : "America/Toronto",
"phoneNumber" : "9059946521",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "9059946522",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2020-12-04T05:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "---*********COVID-19 UPDATE******-----\nCBP Trusted Traveler Programs Enrollment Centers will remain closed until further notice (at least until travel restrictions are lifted). This temporary closure includes all public access to Global Entry, NEXUS, SENTRI, and FAST enrollment locations. Applicants are encouraged to monitor their e-mail, Trusted Traveler Programs account for additional information and/or updates. CBP will continue to monitor federal response guidelines in order to resume enrollment center operations as soon as possible. \n\nCBP’s highest priority is to ensure the health, safety and security of our workforce and the American people. CBP agents, officers, and mission support personnel continue to support the whole-of-government response to the COVID-19 outbreak.\n\nPlease monitor our website, https://ttp.cbp.dhs.gov for updates and changes. \n\n\nCanadian Side of the Peace Bridge which connects Buffalo and Fort Erie, ON. \n\nFrom Canada - QEW to Ft. Erie - Central Ave exit. Right at light, left into parking lot.\nFrom USA - Peace Bridge to Ft. Erie - Central Ave exit (after toll). Right at stop sign. Left into parking light.\n\nPark in Parking lot off of central avenue and follow sidewalk to entrance marked \"Door 1\" that faces Canadian Border. ",
"notes" : "To limit any potential exposure to COVID-19 and to comply with CDC recommended guidelines the following procedures will be STRICTLY adhered to: \n1)\tOnly those with scheduled appointments will be allowed to enter the enrollment center.\n2)\tA surgical mask or other CDC approved face covering is MANDATORY to enter the Enrollment Center. \n3)\tYou MUST wait in your vehicle until your scheduled appointment time. NO EXCEPTIONS\n4)\tYou MUST bring proof of citizenship (NO COPIES) with you to your interview. For Global Entry applicants this MUST be a valid passport. \n5)\tYou must schedule an appointment for each applicant in your family or domicile. If there are not enough appointments available on a particular day to accommodate the members of your family, then you must select another day. Appointments are not required to be in sequential time slots, you may come in at any one of the appointment times. \n6)\tIf ever arrested, you must bring original court documentation for each arrest that clearly shows the charge and disposition of each charge. \n7)\tApplicants who require a visa must provide a valid I-94 at the time of interview, this includes those participating in the Visa Waiver Program. \n8)\tChildren under 18 must be accompanied by a parent or guardian. \n\nNOTE: If the interview is for a child under the age of 18 AND the child does not reside with both parents or legal guardians; then the other parent or legal guardian must sign a letter of consent agreeing to the minor’s enrollment in the Trusted Traveler Program. To expedite the interview process, please email BuffaloTTP@cbp.dhs.gov to obtain a copy of this consent in advance. In cases of sole custody or if only one parent is recorded on the minor's birth certificate, the parent or legal guardian does not require a consent letter but must provide proof of sole custody agreement or long form birth certificate.\n",
"mapFileName" : "/locations/5022/image",
"accessCode" : "",
"lastUpdatedBy" : "ZIIGHKE",
"lastUpdatedDate" : "2020-12-04T12:02:20",
"createdDate" : "2009-01-27T09:10:31",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5023,
"name" : "Detroit Enrollment Center",
"shortName" : "Detroit Enrollment Center",
"locationType" : "LND",
"locationCode" : "3801",
"address" : "2810 W. Fort Street Suite 124",
"addressAdditional" : "",
"city" : "Detroit",
"state" : "MI",
"postalCode" : "48216",
"countryCode" : "US",
"tzData" : "America/New_York",
"phoneNumber" : "3139647973",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2021-08-31T00:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Directions to Enrollment Center:\nThe Enrollment Center is located on the U.S. side of the Ambassador Bridge at the Fort Street Cargo Facility. Do not panic when you see the sign “no re-entry to the United States”. Most Navigation systems have not been updated for this area. The WAZE app will guide you to the facility by entering “Detroit Enrollment Center (FAST/NEXUS)” into the app. Download the WAZE app from your app store. You may also follow these directions:\nStep 1) Choose Your Starting Point \nFROM CANADA: Take the Ambassador Bridge. After the tollbooths, use the I-75 South ramp. Exit on Clark Street. Turn left on Clark Street. Turn left on Grand Blvd West. Follow the bridge to Canada sign. \nFROM I-75: Take the exit 47 B Bridge to Canada. Follow the bridge to Canada sign. \nFROM I-94: Take the exit 213 B to I-96E. Take the exit 192 B Bridge to Canada. Follow the bridge to Canada sign. \nFROM I-96: Take the exit 192 B Bridge to Canada. Follow the bridge to Canada sign. \nStep 2) Do not panic when you see the sign “No Re-Entry to the United States”. \nStep 3) Continue on the service route that leads to the Ambassador Bridge.\nStep 4) Merge left and you will see a blue sign on the left hand side of the road that says “Cargo Facility / Enrollment Center” and proceed underneath the bridge. \nStep 5) Under the bridge, you will find a key pad, please press button to be remotely greeted.\nStep 6) After you are released, approach the gate and wait for it to open. Turn right and continue to the second building on your left. Park in the designated Nexus/Fast parking area. \nStep 7) Please call (313)964-7868 to inform us of your arrival, before exiting your vehicle.\n",
"notes" : "Thank you for scheduling your appointment at the Detroit Enrollment Center (EC), Detroit, MI. Please print and follow the instructions to assist you during your visit.\n\nIn response to the threat of COVID-19, the EC is taking necessary precautions to keep its employees and the public safe and healthy by implementing safety measures to promote social distancing. CBP will continue to support the whole-of-government response to the outbreak and follow the State of Michigan mandated guidelines. \nAll applicants arriving to the Detroit Enrollment Center are required to wear face coverings and practice social distancing. \n\nDocuments to Bring: \nProof of Citizenship -(Passport is required for Global Entry, Birth Certificate is accepted for NEXUS and FAST) \nDriver License \nCertified Court Disposition for Arrest (If you were ever arrested). \nAny Other Supporting Documents you believe will assist with your application.\n\nSpecial instructions for applicants:\nFirearms and Weapons of any kind are not allowed anywhere within the Facility. \nIf using a Rideshare Service (Uber/Lyft) please ask your driver to wait for you until your interview is completed.\nFood or Drinks are not allowed in the Enrollment Center. \nElectronic Communications Devices must be turned off. \n\nDue to limited space, the Enrollment Center Office is strictly limited to the applicant/s being interviewed (excluding minor children). Additional guest may be asked to wait in the vehicle.\n\nFor more information, go to https://ttp.cbp.dhs.gov/\n\n\n\n",
"mapFileName" : "/locations/5023/image",
"accessCode" : "",
"lastUpdatedBy" : "CHA1YL5",
"lastUpdatedDate" : "2021-08-31T09:12:22",
"createdDate" : "2009-03-05T16:03:28",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
} ]
}, {
"id" : 5024,
"name" : "Port Huron Enrollment Center",
"shortName" : "Port Huron Enrollment Center",
"locationType" : "LND",
"locationCode" : "3802",
"address" : "2321 Pine Grove Avenue",
"addressAdditional" : "",
"city" : "Port Huron",
"state" : "MI",
"postalCode" : "48060",
"countryCode" : "US",
"tzData" : "America/New_York",
"phoneNumber" : "8109898831",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "8109898830",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "8109820318",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-07-06T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "********************Based on an assessment of local conditions, the Port Huron Enrollment Center will remain closed until further notice. This temporary closure includes all appointments for the Global Entry, NEXUS, and FAST-North interviews at Port Huron. We sincerely apologize for the inconvenience and appreciate your patience through this process.**********************************************************************************************************\n\n\nFROM DETROIT OR FLINT TAKE I-94 EAST INTO PORT HURON, at the light turn LEFT, stay in the LEFT turn lane. As soon as you go under the bridge, merge into the left turn lane, TURN LEFT into the CUSTOMS PARKING LOT (before the traffic light). FROM CANADA - TAKE DOWNTOWN EXIT (on right) OFF OF BRIDGE, go to the traffic signal and turn RIGHT (Hancock St), next traffic light is PINE GROVE, turn RIGHT, stay on right hand lane; and go past the traffic light (Bridge to Canada), turn RIGHT into the CUSTOMS PARKING LOT ON RIGHT(fenced in area before you go under bridge) after the light. \nEnrollment Center in on the 2nd Floor in the Bridge.\n*****We do not have room for extra people! Please only those with appointments should be present, do not bring extra people to your appointment. *****\n*****Do Not Be Late for your appointment, if you can't make it on time please reschedule. If you are late YOUR Appointment will be >CANCELLED<!! **BRING the following documents: Birth Certificate/Passport/Citizenship certificates/Permanent Resident Cards/other immigration documents/Drivers license or state ID card** \n We do not have room for extra people! Please only those with appointments should be present, do not bring extra people to your appointment. \nNEXUS ENROLLMENT CENTER IS ON THE 2ND FLOOR. \nHours: Monday, Tuesday, Friday & Saturday 0815-1530\nHours: Wednesday & Thursday 0815-1930",
"notes" : "********************Based on an assessment of local conditions, the Port Huron Enrollment Center will remain closed until further notice. This temporary closure includes all appointments for the Global Entry, NEXUS, and FAST-North interviews at Port Huron. We sincerely apologize for the inconvenience and appreciate your patience through this process.**********************************************************************************************************\nAll applicants can view appointment availability and schedule appointments at other locations by selecting “Schedule Interview” from their TTP account, and choosing from available locations. \n\n\n\n***Do Not Be Late for your appointment, if you can't make it on time please reschedule. If you are late YOUR Appointment will be >CANCELLED<!! **BRING the following documents: Birth Certificate/Passport/Citizenship certificates/Permanent Resident Cards/other immigration documents/Drivers license or state ID card** \n We do not have room for extra people! Please only those with appointments should be present, do not bring extra people to your appointment. \nNEXUS ENROLLMENT CENTER IS ON THE 2ND FLOOR. \nHours: Monday, Tuesday, Friday & Saturday 0815-1530\nHours: Wednesday & Thursday 0815-1930",
"mapFileName" : "/locations/5024/image",
"accessCode" : "",
"lastUpdatedBy" : "FZA6MXH",
"lastUpdatedDate" : "2021-01-22T13:20:45",
"createdDate" : "2008-12-02T09:03:05",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
} ]
}, {
"id" : 5025,
"name" : "Ottawa International Airport",
"shortName" : "Ottawa Enrollment Center",
"locationType" : "AIR",
"locationCode" : "7929",
"address" : "140 Thad Johnson Private",
"addressAdditional" : "Suite 102 Ottawa Cargo Services",
"city" : "Ottawa",
"state" : "ON",
"postalCode" : "K1V0R4",
"countryCode" : "CA",
"tzData" : "America/Toronto",
"phoneNumber" : "6139493472",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "6139493474",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2016-05-14T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "",
"notes" : "The NEXUS Enrollment Center is located in the CBSA cargo facility office suite 102",
"accessCode" : "",
"lastUpdatedBy" : "ABZGE4E",
"lastUpdatedDate" : "2020-08-18T09:53:10",
"createdDate" : "2016-05-14T11:44:40",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5026,
"name" : "Vancouver Enrollment Center",
"shortName" : "Vancouver Enrollment Center",
"locationType" : "LND",
"locationCode" : "7922",
"address" : "3211 Grant McConachie Way",
"addressAdditional" : "Vancouver International Airport",
"city" : "Richmond",
"state" : "BC",
"postalCode" : "V7B1Y9",
"countryCode" : "CA",
"tzData" : "America/Vancouver",
"phoneNumber" : "6046664598",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "6046661473",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-07-10T07:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Level Three of the International Terminal. Near Starbucks in the US departures terminal.",
"notes" : "*********COVID-19 UPDATE****** The Vancouver CBP Trusted Traveler Programs Enrollment Center for Global Entry, NEXUS, and FAST will remain closed until further notice. Applicants are encouraged to monitor their e-mail and Trusted Traveler Programs account for additional information and/or updates. CBP’s highest priority is to ensure everyone’s health, safety, and security. Thank you for your patience and understanding. \n \nPlease note**Current members have received an extension of their benefits for an additional 18 months, if the renewal application was made prior to expiry. Applicants that have received their conditional approval will have now have 730 days to complete the enrollment process. \n \nThe Vancouver Int'l Airport is an Enrollment on Arrival (EoA) port, if you are conditionally approved for GLOBAL ENTRY and travelling to the United States, you are able to request an enrollment interview when entering the U.S. Preclearance area (not the enrollment center).\n",
"accessCode" : "",
"lastUpdatedBy" : "DCBCKBY",
"lastUpdatedDate" : "2020-12-25T10:31:08",
"createdDate" : "2011-12-30T09:22:41",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5027,
"name" : "Toronto Enrollment Center",
"shortName" : "Toronto Enrollment Center",
"locationType" : "LND",
"locationCode" : "7926",
"address" : "6301 Silver Dart Drive ",
"addressAdditional" : "Terminal One-Depatures Level",
"city" : "Mississauga",
"state" : "ON",
"postalCode" : "L5P1B2",
"countryCode" : "CA",
"tzData" : "America/Toronto",
"phoneNumber" : "9056763477",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "9056768498",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2016-02-25T05:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "The Nexus Enrollment Center is located in the Toronto Pearson International Airport Terminal One (departures level) at aisle 8 between the PEEL Regional Police kiosk and Air Canada counters at the front of the terminal\n",
"notes" : "\"CBP Trusted Traveler Enrollment Centers will remain closed until at least October 08, 2021. This temporary closure includes all public access to NEXUS enrollment locations. Applicants are encouraged to monitor their e-mail and Trusted Traveler Programs account for additional information and/or updates. CBP will continue to monitor federal response guidelines in order to resume enrollment center operations as soon as possible. \n\nCBP's highest priority is to ensure the health, safety and security of our workforce and the American people. CBP agents, officers, and mission support personnel continue to support the whole-of-government response to the COVID-19 outbreak. We sincerely apologize for the inconvenience and appreciate your patience through this process. “\n\nRetinal scans are available at this location. \n\nToronto Pearson Int'l Airport is an Enrollment on Arrival (EoA) port, if you are conditionally approved for GLOBAL ENTRY and travelling to the U.S., you are able to request an enrollment interview when entering the U.S. Customs area (not the enrollment center) prior to your scheduled appointment.\nQuestions can be directed to ttptorontoinformation@cbp.dhs.gov ",
"accessCode" : "",
"lastUpdatedBy" : "CGBL1OF",
"lastUpdatedDate" : "2021-08-24T04:36:03",
"createdDate" : "2017-09-28T08:25:04",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5028,
"name" : "Montreal Enrollment Center",
"shortName" : "Montreal Enrollment Center",
"locationType" : "LND",
"locationCode" : "7925",
"address" : "1 Pierre E Trudeau International Airport ",
"addressAdditional" : "975 Blvd Romeo Vachon. Room T1476",
"city" : "Montreal",
"state" : "QC",
"postalCode" : "H2Y1H1",
"countryCode" : "CA",
"tzData" : "America/Toronto",
"phoneNumber" : "5144205151",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2007-10-08T00:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "P-E-Trudeau International Airport\n\nNEXUS office: Arrivals level (ground floor), international arrivals area (western side of terminal building). Room T-1476.\n\nBuro NEXUS: Niveau des arrivées (r-d-c), section des arrivées internationaux (coté ouest du terminal). Buro T-1476.",
"notes" : "Photo identification required at interview, in addition to proof of citizenship. \nOne applicant per time slot.\nThose who wear contact lenses must bring their lens cases and solution. The iris capture is performed without contact lenses, in order to ensure accuracy. Lenses may be worn for travel.\n\nIMPORTANT: If you have more than one citizenship, bring passports for each citizenship. \n\nPièce d'identité avec photo (permis de conduire / carte santé provinciale.\nUne personne par demi-heure.\nLes lentilles cornéennes ne peuvent pas être portées lors de la scanographie de l'iris. Si vous portez habituellement des lentilles cornéennes, veuillez s.v.p. porter vos lunettes ou apporter votre boîtier à lentilles et votre soluté. Les lentilles cornéennes peuvent être portées lors de vos voyages.\n\nAVIS: SI VOUS AVEZ PLUS QU'UNE CITOYENNETÉE, VEUILLEZ APPORTER LES DEUX PASSEPORTS. ",
"lastUpdatedBy" : "ZFEJ5IW",
"lastUpdatedDate" : "2013-10-18T13:22:14",
"createdDate" : "2013-10-18T13:22:14",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5029,
"name" : "Winnipeg Enrollment Center",
"shortName" : "Winnipeg Enrollment Center",
"locationType" : "LND",
"locationCode" : "7928",
"address" : "1970 Winnipeg NEXUS Office",
"addressAdditional" : "Wellington Room 1074",
"city" : "Winnipeg",
"state" : "MB",
"postalCode" : "R3H0E3",
"countryCode" : "CA",
"tzData" : "America/Winnipeg",
"phoneNumber" : "2049834354",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "2047863365",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2019-12-15T06:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Airport Arrivals Level. (Level One)\nNext to Harvey's",
"notes" : "Effective March 19, 2020, out of an abundance of caution and in the interest of minimizing exposure and controlling the spread of the Novel Coronavirus Disease (COVID-19) outbreak, all U.S. Customs and Border Protection (CBP) Trusted Traveler Program (TTP) Enrollment Centers will suspend operations until further notice. This temporary closure includes all public access to Global Entry, NEXUS, SENTRI, and FAST enrollment locations. We sincerely apologize for the inconvenience and appreciate your patience through these challenging times. We encourage all applicants to monitor our website CBP.GOV for any updates. ",
"mapFileName" : "/locations/5029/image",
"accessCode" : "",
"lastUpdatedBy" : "DEBJH4O",
"lastUpdatedDate" : "2021-06-15T14:03:21",
"createdDate" : "2017-09-25T13:01:41",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5030,
"name" : "Calgary Enrollment Center",
"shortName" : "Calgary Enrollment Center",
"locationType" : "LND",
"locationCode" : "7923",
"address" : "2000 Airport Rd N.E.",
"addressAdditional" : "",
"city" : "Calgary",
"state" : "AB",
"postalCode" : "T2E6W5",
"countryCode" : "CA",
"tzData" : "America/Edmonton",
"phoneNumber" : "5872322157",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "5872322157",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "",
"faxAreaCode" : "",
"faxCountryCode" : "",
"faxExtension" : "",
"effectiveDate" : "2007-08-20T06:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Departures Level left of USA departures (Concourse E). Hours of Operation: Sunday thru Saturday 8AM - 4PM.",
"notes" : "If you have been issued passports from any other country besides Canada and the United States, bring those passports to your Nexus interview.",
"accessCode" : "",
"lastUpdatedBy" : "EHDFT5D",
"lastUpdatedDate" : "2018-11-23T13:50:37",
"createdDate" : "2016-11-25T08:10:47",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5031,
"name" : "Halifax Enrollment Center",
"shortName" : "Halifax Enrollment Center",
"locationType" : "LND",
"locationCode" : "7931",
"address" : "U.S. Customs and Border Protection",
"addressAdditional" : "1666-747 Bell BLVD",
"city" : "Goffs",
"state" : "NS",
"postalCode" : "B2T1K2",
"countryCode" : "CA",
"tzData" : "America/Halifax",
"phoneNumber" : "9028737788",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : " ",
"phoneAltNumber" : "9028737788",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : " ",
"faxNumber" : "9028737781",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : " ",
"effectiveDate" : "2020-12-01T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Located at Halifax Stanfield International Airport. The office is located on the main level near the International Arrivals doors and inside Canada Border Services Office, which is located behind ground transportation. Look for the NEXUS sign.",
"notes" : "AS OF JUNE 21, 2021, our office is still closed with NO plan to reopen in 2021. Please do not arrive at the enrollment center for any interview as we are closed. If you need more information please contact us at Nexushalifax@cbp.dhs.gov or call is at 908-873-7780. As a note, we have NO idea when the office will re-open and will not be able to give you any guidance on that. All expiration dates and appointment requirements are extended an additional 18 months (545 days total). For specific account related questions or concerns, contact the CBP Information Center at https://help.cbp.gov.\n\n**There are no appointments at this location until at minimum when the US/Canadian land border opens to more than essential travel only due to Covid19, in an effort to assist in stopping the spread of this virus and encourage social distancing protocol as directed by both our governments health authorities. Thank you for your patience and understanding. We will see you at the end of this crisis. Stay safe and healthy.** \n\nNew enrollments by appointments only. ALL appointments must be made online in your Login.Gov account, the enrollment center does not have a cancellation list. If you need to add additional information to a current card, walk-ins are okay during Enrollment Center Hours 0820 a.m.-1130a.m. Monday thru Saturday. For all general questions we can be contacted via email at NEXUSHalifax@cbp.dhs.gov",
"mapFileName" : "/locations/5031/image",
"accessCode" : "",
"lastUpdatedBy" : "CGZ1HOS",
"lastUpdatedDate" : "2021-06-21T08:02:09",
"createdDate" : "2017-07-25T11:22:51",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5032,
"name" : "Edmonton Enrollment Center",
"shortName" : "Edmonton Enrollment Center",
"locationType" : "LND",
"locationCode" : "7924",
"address" : "1000 Airport Road",
"addressAdditional" : "Edmonton International Airport",
"city" : "Edmonton",
"state" : "AB",
"postalCode" : "T9E0V3",
"countryCode" : "CA",
"tzData" : "America/Edmonton",
"phoneNumber" : "7808904857",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "7808904858",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2007-08-09T06:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Across from the Eurocafe.\n\nNext to U.S. bound airline ticket counters. ",
"notes" : "Further down on this confirmation you will see a list of instructions for what to bring to your appointment. That list is not all inclusive. Please bring all of your original documents: All passports, driver's licenses, BIRTH CERTIFICATES, and marriage certificate. For minors, if both parents are not present, there should be a letter from the absent parent giving their consent for their child's enrollment in the NEXUS program. For iris scans, please be advised that you will need to remove your contact lenses. ",
"mapFileName" : "/locations/5032/image",
"accessCode" : "",
"lastUpdatedBy" : "ZIAG0FA",
"lastUpdatedDate" : "2019-07-11T14:28:55",
"createdDate" : "2015-10-10T11:53:34",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5041,
"name" : "Vancouver Urban Enrollment Center",
"shortName" : "Vancouver Urban Enrollment Center",
"locationType" : "LND",
"locationCode" : "7922",
"address" : "1611 Main Street",
"addressAdditional" : "4th Floor",
"city" : "VANCOUVER",
"state" : "BC",
"postalCode" : "V6A2W5",
"countryCode" : "CA",
"tzData" : "America/Vancouver",
"phoneNumber" : "0000000",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "0000000",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-07-10T07:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Effective July 1, 2020, the Vancouver Urban Enrollment Center will be closed permanently. Please go online and reschedule your interview at either the Vancouver Airport or Birch Bay enrollment center. ",
"notes" : "Effective July 1, 2020, the Vancouver Urban Enrollment Center will be closed permanently. Please go online and reschedule your interview at either the Vancouver Airport or Birch Bay enrollment center. ",
"accessCode" : "",
"lastUpdatedBy" : "DFZDC00",
"lastUpdatedDate" : "2020-07-10T06:12:48",
"createdDate" : "2014-04-07T16:59:27",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
} ]
}, {
"id" : 5060,
"name" : "Warroad Enrollment Center ",
"shortName" : "Warroad Enrollment Center ",
"locationType" : "LND",
"locationCode" : "3423",
"address" : "41059 Warroad Enrollment Center",
"addressAdditional" : "State Hwy 313 N",
"city" : "Warroad",
"state" : "MN",
"postalCode" : "56763",
"countryCode" : "US",
"tzData" : "America/Chicago",
"phoneNumber" : "2183862796",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "",
"phoneAltExtension" : "",
"faxNumber" : "2183862854",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-07-06T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "From Warroad, MN, turn north at the intersection of MN Hwy 11 and MN Hwy 313. Drive 5 miles to the Warroad Port of Entry.",
"notes" : "Park in visitor parking on the East side of main building. Bring your \"Conditionally Approved\" letter, forms of identification (passport, birth certificate, driver's license, etc). \nIf you have tested positive for COVID 19 or been in contact with someone who has tested positive in the last 2 weeks then reschedule your appt for a later date.\nCall the Warroad Port at 218-386-2796 when you arrive to be escorted in. And you must wear a mask.\nNEXUS is currently on hold until CBSA reopens. No NEXUS interviews will be conducted at this time.",
"accessCode" : "",
"lastUpdatedBy" : "ZBEF3RE",
"lastUpdatedDate" : "2020-10-14T14:41:45",
"createdDate" : "2013-05-13T10:27:51",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
} ]
}, {
"id" : 5080,
"name" : "Sault Ste Marie Enrollment Center",
"shortName" : "Sault Ste Marie EC",
"locationType" : "LND",
"locationCode" : "3803",
"address" : "900 International Bridge Plaza",
"addressAdditional" : "",
"city" : "Sault Ste. Marie",
"state" : "MI",
"postalCode" : "49783",
"countryCode" : "US",
"tzData" : "America/New_York",
"phoneNumber" : "9066323837",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "2026",
"phoneAltNumber" : "9066323837",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "2068",
"faxNumber" : "9066326171",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2020-06-25T04:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Driving in the U.S.: I-75 north to exit 394. Left on Easterday Ave. Right on Portage St. Travel approximately 1/2 mile to CBP building. Parking lot on right side of road. \nWhen you arrive in the parking lot, call 906-632-8822 ext. 2026 or ext. 2068 and report your arrival providing your cell number so an officer can call you when it is time for you to enter the building. \n\nDriving in from Canada: Take first exit immediately after paying at toll booth. Turn right onto Portage. CBP building parking lot is on right side of road. \nWhen you arrive in the parking lot, call 906-632-8822 ext. 2026 or ext.2068 and report your arrival providing your cell number so an officer can call you when it is time for you to enter the building. \n",
"notes" : "Documents needed for your interview: a Birth Certificate or legible copy, Drivers License, valid Passport, Citizenship Certificate, Proof of Citizenship or Permanent Resident Card. \n\n•\tALL persons need to bring/wear a protective covering (mask) when entering the building. Do not enter the building until you are instructed to.\n\n•\tPlease limit the number of persons attending interviews as much as possible.\n\n•\tPlease be prompt and timely adhering to your appointment time.\n\n•\tWhen you arrive in the parking lot, call 906-632-8822 ext. 2027 and report your arrival providing your cell number so an officer can call you when it is time for you to enter the building. \n\n•\tAgain, face coverings/masks are required upon entry to the CBP building.\n\n•\tWhen it is time for you to enter the building an Officer will meet you at the elevator and escort you to the EC office. Hand sanitizer will be used in the vestibule prior to getting in the elevator. \n\n•\tNo Walk-ins allowed at this time. Appointments Only.\n",
"accessCode" : "",
"lastUpdatedBy" : "BIHFDTJ",
"lastUpdatedDate" : "2021-07-16T09:58:26",
"createdDate" : "2012-03-29T14:02:10",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
} ]
}, {
"id" : 5100,
"name" : "Pembina Enrollment Center",
"shortName" : "Pembina Enrollment Center",
"locationType" : "LND",
"locationCode" : "3401",
"address" : "10980 Interstate 29",
"addressAdditional" : "Suite 2",
"city" : "Pembina",
"state" : "ND",
"postalCode" : "58271",
"countryCode" : "US",
"tzData" : "America/Chicago",
"phoneNumber" : "7018255878",
"phoneAreaCode" : "",
"phoneCountryCode" : "1",
"phoneExtension" : "",
"phoneAltNumber" : "7018255849",
"phoneAltAreaCode" : "",
"phoneAltCountryCode" : "1",
"phoneAltExtension" : "",
"faxNumber" : "7018256567",
"faxAreaCode" : "",
"faxCountryCode" : "1",
"faxExtension" : "",
"effectiveDate" : "2007-09-24T05:00",
"temporary" : false,
"inviteOnly" : false,
"operational" : true,
"directions" : "Located on the US/Canadian Border in the US Customs and Border Protection building. Turn Left immediately after the blue \"Enrollment Center\" sign. Park in the Employee parking lot. ",
"notes" : "When you arrive at the US Port of Entry, please stay in your vehicle and call 701-825-5847 to report your arrival. When we are ready for your interview we will call you back, and give further instructions. Please bring your own mask to your appointment, as it will be mandatory for you to wear one while you are at the Enrollment Center. If you are going to be late for your scheduled appointment, call ahead to notify the Enrollment Center Staff. If you do not phone ahead, you may have to reschedule for another day..",
"mapFileName" : "/locations/5100/image",
"accessCode" : "",
"lastUpdatedBy" : "EZALI14",
"lastUpdatedDate" : "2020-09-08T08:05:05",
"createdDate" : "2007-09-24T13:56:37",
"remoteInd" : false,
"services" : [ {
"id" : 1,
"name" : "Global Entry"
}, {
"id" : 2,
"name" : "NEXUS"
}, {
"id" : 5,
"name" : "U.S. / Canada FAST"
} ]
}, {
"id" : 5101,
"name" : "Houlton POE/Woodstock",
"shortName" : "Houlton Enrollment Center",
"locationType" : "LND",