-
Notifications
You must be signed in to change notification settings - Fork 0
/
northern-station.json
1926 lines (1926 loc) · 78.7 KB
/
northern-station.json
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
{
"station": "Terminal Norte",
"location": "Del Centro Comercial Erwin 30 metros hacia el sur",
"location_description": "La Terminal Norte o mejor conocida como <em>Cotrán Norte</em> está ubicada <a href=\"/terminal-norte-esteli#mapa\">Del Centro Comercial Erwin 30 metros hacia el sur</a>, contiguo a la Carretera Panamericana.",
"location_map": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3886.2767920870906!2d-86.3543146846077!3d13.081636290783834!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte!5e0!3m2!1ses-419!2sni!4v1645728089801!5m2!1ses-419!2sni",
"phone": "2713-2529",
"station_image": "/src/img/terminal-norte-estelibuses-felix-icaza.jpg",
"station_image_mobile": "/src/img/terminal-norte-estelibuses-mobile-felix-icaza.jpg",
"social_media_image": "/img/og/cotran-norte-estelibuses.jpg",
"theme_color": "#34d399",
"header_color": "bg-gradient-to-t from-[#eeffeb] to-[#dbffdc] dark:from-[#1b2d1f] dark:to-[#1b2d1f]",
"title_color": "text-[#0D3B12] dark:text-emerald-50",
"text_color": "text-emerald-500",
"link_color": "transition-colors active:text-emerald-600 any-hover:text-emerald-600",
"link_color_group": "transition-colors group-active:text-emerald-600 group-any-hover:text-emerald-600",
"breadcrumb_active": "text-emerald-600 font-bold text-base",
"slug": "terminal-norte-esteli",
"title": "Horarios de Buses de la COTRÁN Norte de Estelí",
"description": "Conoce fácilmente todos los horarios de la Terminal Norte de Estelí y elige la ciudad a la que deseas viajar desde Estelí hacia el norte de Nicaragua.",
"schema_FAQs": [
{
"name": "¿Cuál es el número de teléfono de la Terminal Norte de Estelí?",
"text": "El número de teléfono de la Terminal Norte de Estelí es el <a href='tel:+50527132529'>2713-2529</a> extensión 102. <a href='https://estelibuses.web.app/terminal-norte-esteli?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
},
{
"name": "¿Dónde está ubicada la Terminal Norte de Estelí?",
"text": "La Terminal Norte o mejor conocida como Cotrán Norte, está ubicada del Centro Comercial Erwin 30 metros hacia el sur, contiguo a la carretera panamericana. <a href='https://estelibuses.web.app/terminal-norte-esteli?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
},
{
"name": "¿Cómo puedo conocer los horarios de los buses de la Terminal Norte de Estelí?",
"text": "Para conocer todos los horarios de la Terminal Norte de Estelí, puedes hacer uso de la plataforma Estelí Buses. <a href='https://estelibuses.web.app/terminal-norte-esteli?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
}
],
"cities": [
{
"name": "Managua",
"slug": "horarios-esteli-managua",
"image": "/src/img/terminal-norte/horarios-esteli-managua-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-managua-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Managua - Terminal Norte | Estelí Buses",
"description": "Conoce Todos los Horarios de los Buses EXPRESOS que salen desde Estelí hacia Managua desde la Terminal Norte.",
"schema_FAQs": [
{
"name": "¿Cuál es la hora del primer bus Expreso hacia Managua?",
"text": "El primer bus expreso hacia Managua desde la terminal norte sale a las 05:15 am. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Mira más horarios.</a>"
},
{
"name": "¿Cuánto cuesta el pasaje hacia Managua?",
"text": "Para viajar a Managua los buses expresos cuestan C$ 110 córdobas y salen desde la terminal norte. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información.</a>"
},
{
"name": "¿Cuál es la manera más barata de llegar de Estelí a Managua?",
"text": "La forma más barata de ir desde Estelí hacia Managua es abordando un bus ruteado que salen desde la terminal sur y el pasaje vale C$ 90 córdobas. <a href='https://estelibuses.web.app/terminal-sur-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>"
},
{
"name": "¿Cuál es la manera más rápida de llegar desde Estelí hasta Managua?",
"text": "La forma más rápida de ir desde Estelí hacia Managua es abordando un bus expreso, estos salen desde la terminal norte y el viaje dura apróximadamente 2.4 horas. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
},
{
"name": "¿Hay un bus directo de Estelí a Managua?",
"text": "Sí, los buses directos que salen desde Estelí y llegan a Managua, son los buses expresos, estos salen desde la terminal norte y dura 2.4 horas el viaje. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
},
{
"name": "¿A cuánta distancia está Estelí de Managua?",
"text": "La distancia por carretera es de 141 Km. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén indicaciones para viajar</a>."
},
{
"name": "¿Cómo viajo desde Estelí a Managua sin un coche?",
"text": "La mejor manera de ir desde Estelí a Managua sin un coche es abordando los buses que salen desde la terminal norte. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Mira los Horarios</a>."
},
{
"name": "¿Cuánto se tarda en llegar desde Estelí a Managua?",
"text": "Los buses expresos desde Estelí hacia Managua duran 2.4 horas de viaje y los buses ruteados duran 3 horas de viaje apróximadamente. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
},
{
"name": "¿Dónde tomo el bus de Estelí a Managua?",
"text": "Los buses que salen desde Estelí hacia Managua, se pueden abordar desde la terminal norte o cotrán norte. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Conoce los horarios</a>."
},
{
"name": "¿A dónde llega el autobús de Estelí a Managua?",
"text": "Los buses que viajan desde Estelí hacia Managua llegan a la terminal del Mercado El Mayoreo de Managua. <a href='https://estelibuses.web.app/terminal-norte-esteli/horarios-esteli-managua?utm_source=google&utm_content=faq&utm_medium=organic&utm_campaign=faqgoogle'>Obtén más información</a>."
}
],
"destination": "Terminal del mercado El Mayoreo",
"trip_distance": "141 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d498408.7033435293!2d-86.63682125334572!3d12.594243864820466!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f71560dd907880b%3A0x6c5ef4a2144f4c6a!2sManagua!3m2!1d12.114992599999999!2d-86.2361744!5e0!3m2!1ses-419!2sni!4v1645817335575!5m2!1ses-419!2sni",
"timetables": [
{
"transport_pic": "",
"departure_time": "05:15",
"waiting_area_departure": "Frente a la Cotrán Norte",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Jerry",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.4 horas"
},
{
"transport_pic": "",
"departure_time": "06:15",
"waiting_area_departure": "Frente a la Cotrán Norte",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Leiva",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.4 horas"
},
{
"transport_pic": "",
"departure_time": "07:45",
"waiting_area_departure": "Frente a la Cotrán Norte",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Molina",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.4 horas"
},
{
"transport_pic": "",
"departure_time": "11:15",
"waiting_area_departure": "Frente a la Cotrán Norte",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Esquipulas",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.4 horas"
}
]
},
{
"name": "Ocotal",
"slug": "horarios-esteli-ocotal",
"image": "/src/img/terminal-norte/horarios-esteli-ocotal-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-ocotal-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Ocotal | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia Ocotal.",
"schema_FAQs": [],
"destination": "Terminal de Ocotal",
"trip_distance": "80.6 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248439.74577833415!2d-86.56386614361054!3d13.358294655262233!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f6e1b957ceb1eb1%3A0xe52002201e5329bf!2sOcotal!3m2!1d13.6289038!2d-86.4844914!5e0!3m2!1ses-419!2sni!4v1645741703628!5m2!1ses-419!2sni",
"filter": true,
"timetables": [
{
"transport_pic": "",
"departure_time": "06:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Arellano",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "07:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Ernesto José",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "08:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Águila del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "09:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Mi Bus",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "10:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Águila del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "/src/img/ocotal/transporte-gamez.jpg",
"departure_time": "11:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Gámez",
"license_plate": "NS 96",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.45 horas"
},
{
"transport_pic": "",
"departure_time": "13:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Arellano",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "14:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Ernesto José",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "14:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Águila del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "15:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Mi Bus",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "16:20",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Águila del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "17:40",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Gámez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
}
]
},
{
"name": "Somoto",
"slug": "horarios-esteli-somoto",
"image": "/src/img/terminal-norte/horarios-esteli-somoto-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-somoto-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Somoto | Estelí Buses",
"description": "Conoce Todos los Horarios de los Buses EXPRESOS y RUTEADOS que salen desde Estelí hacia Somoto desde la Terminal Norte.",
"schema_FAQs": [],
"destination": "Terminal de Somoto",
"trip_distance": "70.7 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248505.9517898789!2d-86.60464159605874!3d13.293843577427252!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f71dfd51c7f6601%3A0x31ff008786e0a67b!2sSomoto!3m2!1d13.482965!2d-86.5829699!5e0!3m2!1ses-419!2sni!4v1645740591796!5m2!1ses-419!2sni",
"filter": true,
"timetables": [
{
"transport_pic": "",
"departure_time": "05:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Caballero",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "06:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Caballero",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "07:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Chamirra",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "08:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Pichón",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "09:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Mi Fé",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "10:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Molina",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "11:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Caballero",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "12:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Gutiérrez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "13:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Caballero",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "14:20",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "González Acuña",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "15:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Chamirra",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "15:25",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Águila del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "16:05",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Pichón",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "16:40",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Mi Fé",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "17:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Gutiérrez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "17:20",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Gavilán",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.5 horas"
},
{
"transport_pic": "",
"departure_time": "18:10",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Expreso",
"transport_name": "Molina",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
}
]
},
{
"name": "Jinotega",
"slug": "horarios-esteli-jinotega",
"image": "/src/img/terminal-norte/horarios-esteli-jinotega-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-jinotega-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Jinotega | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia Jinotega.",
"schema_FAQs": [],
"destination": "Terminal de Jinotega",
"trip_distance": "65.2 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248777.82909308956!2d-86.31404010611266!3d13.025890195267914!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f723e88cc57ff89%3A0xb9bb1035556496ca!2sJinotega!3m2!1d13.0883907!2d-85.9993997!5e0!3m2!1ses-419!2sni!4v1645739097237!5m2!1ses-419!2sni",
"timetables": [
{
"transport_pic": "",
"departure_time": "05:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Castillo",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"transport_pic": "",
"departure_time": "08:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Gonzáles Aguilera \"El Confite\"",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"transport_pic": "",
"departure_time": "09:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Gavilán \"Chepita\"",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"note": "Este bus llega a <a href=\"/terminal-norte-esteli/horarios-esteli-san-rafael-del-norte\">San Rafael del Norte</a> y luego transborda hacia Jinotega.",
"transport_pic": "",
"departure_time": "12:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Ubeda",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"transport_pic": "",
"departure_time": "14:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Ubeda",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"transport_pic": "",
"departure_time": "15:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Agüero",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
},
{
"transport_pic": "",
"departure_time": "16:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Santa Inés",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2.3 horas"
}
]
},
{
"name": "San Juan de Limay",
"slug": "horarios-esteli-san-juan-de-limay",
"image": "/src/img/terminal-norte/horarios-esteli-san-juan-de-limay-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-san-juan-de-limay-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia San Juan de Limay | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia San Juan de Limay.",
"schema_FAQs": [],
"destination": "Terminal Roberto Rodríguez",
"trip_distance": "48.9 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d124328.82174400949!2d-86.55601615644754!3d13.145002919536607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f71c0680422ae6b%3A0xf61a244cb6ea5b37!2sSan%20Juan%20de%20Limay!3m2!1d13.177742199999999!2d-86.6132317!5e0!3m2!1ses-419!2sni!4v1645748465779!5m2!1ses-419!2sni",
"timetables": [
{
"transport_pic": "",
"departure_time": "05:30",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Paquita",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "07:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "López Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "/src/img/san-juan-de-limay/transporte-el-fugitivo.jpg",
"departure_time": "10:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Fugitivo",
"license_plate": "ES 016",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "12:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Sandoval",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "14:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "15:00",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "López Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
},
{
"transport_pic": "",
"departure_time": "17:05",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Ángel",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "2 horas"
}
]
},
{
"name": "Pueblo Nuevo",
"slug": "horarios-esteli-pueblo-nuevo",
"image": "/src/img/terminal-norte/horarios-esteli-pueblo-nuevo-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-pueblo-nuevo-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Pueblo Nuevo | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia Pueblo Nuevo.",
"schema_FAQs": [],
"destination": "Terminal de Pueblo Nuevo",
"trip_distance": "60.1 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248543.5052773049!2d-86.55534819744736!3d13.257148775535!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f71e5cad23e4b75%3A0x9c6473be69feaa2!2sPueblo%20Nuevo!3m2!1d13.379133!2d-86.48069989999999!5e0!3m2!1ses-419!2sni!4v1645814214405!5m2!1ses-419!2sni",
"timetables": [
{
"transport_pic": "",
"departure_time": "07:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Jerry",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "08:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Toruño",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "09:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Pitón",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "10:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Soza",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "11:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Toruño",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "13:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "15:10",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "16:50",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Karoll y Moisés",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
},
{
"transport_pic": "",
"departure_time": "17:50",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "El Pitón",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "1.1 horas"
}
]
},
{
"name": "Quilalí",
"slug": "horarios-esteli-quilali",
"image": "/src/img/terminal-norte/horarios-esteli-quilali-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-quilali-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Quilalí | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia Quilalí.",
"schema_FAQs": [],
"destination": "Terminal de Quilalí",
"trip_distance": "116 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248463.29375447065!2d-86.35808064448135!3d13.33540591638154!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f6df68b0126e2ab%3A0x989d42fc66bc640b!2zUXVpbGFsw60!3m2!1d13.5671491!2d-86.02491169999999!5e0!3m2!1ses-419!2sni!4v1645747326769!5m2!1ses-419!2sni",
"timetables": [
{
"transport_pic": "",
"departure_time": "05:45",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Castigador del Norte",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
},
{
"transport_pic": "",
"departure_time": "11:05",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Laguna",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
},
{
"transport_pic": "",
"departure_time": "12:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Rodríguez",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
},
{
"transport_pic": "",
"departure_time": "13:40",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Laguna",
"license_plate": "",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
}
]
},
{
"name": "Yalí",
"slug": "horarios-esteli-yali",
"image": "/src/img/terminal-norte/horarios-esteli-yali-estelibuses-felix-icaza-card.jpg",
"social_media_image": "/img/og/horarios-esteli-yali-cotran-norte-estelibuses.jpg",
"title": "Horarios de los Buses de Estelí hacia Yalí - Terminal Norte | Estelí Buses",
"description": "Conoce todos los horarios de los buses que salen desde Estelí hacia Yalí.",
"schema_FAQs": [],
"destination": "Terminal de Yalí",
"trip_distance": "61.4 km",
"map": "https://www.google.com/maps/embed?pb=!1m28!1m12!1m3!1d248554.1585172447!2d-86.3955022978413!3d13.246720953426426!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m13!3e6!4m5!1s0x8f718c6c8f2298e7%3A0x855d282eb62cfeed!2sCotran%20Norte%2C%20Estel%C3%AD!3m2!1d13.0816363!2d-86.352126!4m5!1s0x8f721c99b5db1c39%3A0x442ab63560c952a0!2sSan%20Sebasti%C3%A1n%20de%20Yal%C3%AD!3m2!1d13.304214499999999!2d-86.18280469999999!5e0!3m2!1ses-419!2sni!4v1645831701924!5m2!1ses-419!2sni",
"timetables": [
{
"note": "Este bus llega a Yalí y luego transborda hacia <a href=\"/terminal-norte-esteli/horarios-esteli-la-rica\">La Rica</a>.",
"transport_pic": "/src/img/terminal-norte/transporte-lanuza.jpg",
"departure_time": "04:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Lanuza",
"license_plate": "ES 088",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
},
{
"transport_pic": "/src/img/terminal-norte/transporte-davila.jpg",
"departure_time": "05:15",
"waiting_area_departure": "",
"return_time": "",
"waiting_area_return": "",
"transport_type": "Ruteado",
"transport_name": "Dávila",
"license_plate": "ES 133",
"transport_phone": "",
"transport_price": "",
"trip_duration": "3 horas"
},
{
"note": "El recorrido de este bus pasa por Miraflor.",
"transport_pic": "",
"departure_time": "06:00",
"waiting_area_departure": "",