-
Notifications
You must be signed in to change notification settings - Fork 0
/
countries.json
6343 lines (6343 loc) · 276 KB
/
countries.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
[
{
"id": "1",
"iso": "IND",
"alpha_2": "IN",
"country_name": "India",
"flag_url": "https://flagcdn.com/in.svg",
"short_description": "India, a vibrant and diverse nation in South Asia, is known for its rich history, cultural tapestry, and a rapidly growing economy. Home to iconic landmarks like the Taj Mahal, it embraces a multitude of languages, religions, and traditions, creating a unique mosaic of unity in diversity.",
"known_for": [
{ "title": "🌶️ Spices", "color": "red" },
{ "title": "🎵 Bollywood music", "color": "green" },
{ "title": "🕌 Taj Mahal", "color": "pink" },
{ "title": "🥘 Curry", "color": "blue" },
{ "title": "🧘 Yoga", "color": "yellow" }
],
"capital": "New Delhi",
"major_cities": [
"Ahmadabad",
"Bengaluru",
"Chennai",
"Hyderabad",
"Jaipur",
"Kolkata",
"Lucknow",
"Mumbai",
"Nagpur",
"New Delhi",
"Pune",
"Surat"
],
"official_language": ["Hindi", "English"],
"currency": { "title": "Indian rupee", "symbol": "₹" },
"major_religions": "Hinduism",
"national_day": { "title": "Republic Day", "date": "26 January" },
"phone": {
"digital_code": "+91",
"phone_operators": ["Airtel", "BSNL & MTNL", "Jio", "Vodafone Idea Ltd"]
},
"plug_types": ["C", "D", "M"],
"transport": {
"driving_side": "left",
"taxi": [
{ "title": "Uber", "url": "https://www.uber.com/" },
{ "title": "LyftIndia", "url": "https://lyftindia.co.in/#Download" },
{ "title": "maxim", "url": "https://taximaxim.com/in/en/" },
{ "title": "InDrive", "url": "https://indrive.com/en/home/" },
{ "title": "Ola", "url": "https://www.olacabs.com/" }
],
"metro": [
{ "title": "Ahmedabad", "url": "https://www.urbanrail.net/as/in/ahmedabad/ahmedabad-metro-map.png" },
{ "title": "Bangalore", "url": "https://www.urbanrail.net/as/in/banl/bangalore-metro-map.png" },
{ "title": "Chennai", "url": "https://www.urbanrail.net/as/in/chen/chennai-map.png" },
{ "title": "Delhi", "url": "https://www.urbanrail.net/as/in/delhi/delhi-map.png" },
{ "title": "Hyderabad", "url": "https://www.urbanrail.net/as/in/hydr/hyderabad-metro-map.png" },
{ "title": "Jaipur", "url": "https://www.urbanrail.net/as/in/jaip/jaipur-map.png" },
{ "title": "Kochi", "url": "https://www.urbanrail.net/as/in/kochi/kochi-metro-map.png" },
{ "title": "Kolkata", "url": "https://www.urbanrail.net/as/in/kolk/kolkata-metro-map.png" },
{ "title": "Lucknow", "url": "https://www.urbanrail.net/as/in/lucknow/lucknow-metro-map.png" },
{ "title": "Mumbai", "url": "https://www.urbanrail.net/as/in/mumb/mumbai-rail-map-centre.png" },
{ "title": "Nagpur", "url": "https://www.urbanrail.net/as/in/nagpur/nagpur-metro-map.png" }
]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "18-25 years old",
"alcohol_parchase_age": "18-25 years old",
"alcohol_info": [
"Purchase age is 18 in Goa, Himachal Pradesh, Karnataka, Sikkim, and Puducherry",
"Purchase age is 21 in Andhra Pradesh, Arunachal Pradesh, Assam, Chhattisgarsh, Jammu and Kashmir, Jharkhand, Kerala, Madhya Pradesh, Maharashta, Mizoram, Orissa (Odisha), Rajasthan, Tamil Nadu, Telandana, Tripura, Uttarakhad, Uttar Pradesh, West Bengal and Delhi",
"Purchase age is 25 in Haryna",
"Maghalaya, Punjab",
"Cunsumption of alcohol is prohibited in the states of Bihar, Gujart, Lakshadweep, Maripur, and Nagaland"
]
},
"money": {
"tipping": {
"hotels": "Tip porters 20-50 rupees per bag and a small gratuity to housekeeping is also appreciated",
"guides": "Aim for 100-300 rupees per day for a private tour and 30-50 rupees for a group tour",
"restaurants": "Larger restaurants should include gratuity but if not add 10% to your bill",
"Taxis": "Taxi drivers don't expect tips but you can round up the fare as a kind gesture"
}
},
"weather": {
"title": "India experiences a varied climate ranging from tropical in the south to more temperate in the north. With distinct seasons like monsoon rains in summer and cooler temperatures in winter, the weather showcases the country's geographical diversity, offering everything from snow-capped mountains in the north to sun-soaked beaches in the south.",
"when_to_visit": [
{
"icon": "🏔️",
"title": "Mountain exploration",
"time_period": "Summer (April to June)",
"short_description": "Mountainous areas in the north experience freezing winter weather, making summer the best time for visiting region"
},
{
"icon": "🕌",
"title": "Sightseeing",
"time_period": "Winter (November to February)",
"short_description": "Most parts of India experiance pleasant and mild weather during this period. Great time to explore cities like Delhi, Jaipur and Mumbai as well as cultural sites like Taj Mahal"
},
{
"icon": "🌧️",
"title": "Rainy season",
"time_period": "June to September",
"short_description": "Increased rainfall and humidity. June and July are the wettest months in this period"
}
],
"best_time": "The best time to visit India depends on the region, but generally, the months of October to March offer pleasant temperatures and lower chances of rainfall in most parts of the country"
},
"emergency": [
{
"title": "Police",
"number": "100"
},
{
"title": "Ambulance",
"number": "102"
},
{
"title": "Fire",
"number": "101"
}
]
},
{
"id": "2",
"iso": "CHN",
"alpha_2": "CN",
"country_name": "China",
"flag_url": "https://raw.githubusercontent.com/hampusborgos/country-flags/main/png100px/cn.png",
"short_description": "China, the world's most populous nation, boasts a rich tapestry of ancient history and modern progress. With a diverse landscape encompassing the Great Wall, bustling cities like Beijing and Shanghai, and a thriving economy, China stands as a global powerhouse with a unique blend of tradition and innovation.",
"known_for": [
{ "title": "🍜 Chinese cuisine", "color": "orrange" },
{ "title": "⚪️ Terracotta Army", "color": "green" },
{ "title": "🏞️ Zhangjiajie National Forest Park", "color": "pink" },
{ "title": "🏯 Great Wall", "color": "blue" },
{ "title": "🐼 Giant pandas", "color": "yellow" }
],
"capital": "Beijing",
"major_cities": [
"Beijing",
"Changsha",
"Chengdu",
"Chongqing",
"Dongguan",
"Guazhou",
"Hangzhou, Nanhing",
"Shanghai",
"Shenyang",
"Shenzhen",
"Taipei",
"Tianjin",
"Wuhan",
"Wuzhou",
"Zhengzhou"
],
"official_language": ["Mandarin Chinese"],
"currency": { "title": "Chinese yuan", "symbol": "¥" },
"major_religions": "Chinese folk religion",
"national_day": { "title": "National Day of the People's Republic of China", "date": "01 October" },
"phone": {
"digital_code": "+86",
"phone_operators": ["China Mobile", "China Telecom", "China Unicom"]
},
"plug_types": ["A", "C", "I"],
"transport": {
"driving_side": "right",
"taxi": [{ "title": "DiDi", "url": "https://www.didiglobal.com/" }],
"metro": [
{ "title": "Beijing", "url": "https://www.urbanrail.net/as/cn/beij/beijing-metro-map.png" },
{ "title": "Changchun", "url": "https://www.urbanrail.net/as/cn/chan/changchun-map.png" },
{ "title": "Changsha", "url": "https://www.urbanrail.net/as/cn/changsha/changsha-metro-map.png" },
{ "title": "Changzhou", "url": "https://www.urbanrail.net/as/cn/changzhou/changzhou-metro-map.png" },
{ "title": "Chengdu", "url": "https://www.urbanrail.net/as/cn/chdu/chengdu-metro-map.png" },
{ "title": "Chongqing", "url": "https://www.urbanrail.net/as/cn/chon/chongqing-map-centre.png" },
{ "title": "Dalian", "url": "https://www.urbanrail.net/as/cn/dalian/dalian-metro-tram-map.png" },
{ "title": "Dongguan", "url": "https://www.urbanrail.net/as/cn/dongguan/dongguan-metro-map.png" },
{ "title": "Fuzhou", "url": "https://www.urbanrail.net/as/cn/fuzhou/fuzhou-metro-map.png" },
{ "title": "Guangzhou", "url": "https://www.urbanrail.net/as/cn/guan/guangzhou-metro-map.png" },
{ "title": "Guiyang", "url": "https://www.urbanrail.net/as/cn/guiyang/guiyang-metro-map.png" },
{ "title": "Hangzhou", "url": "https://www.urbanrail.net/as/cn/hang/hangzhou-metro-map.png" },
{ "title": "Harbin", "url": "https://www.urbanrail.net/as/cn/harbin/harbin-metro-map.png" },
{ "title": "Hefei", "url": "https://www.urbanrail.net/as/cn/hefei/hefei-metro-map.png" },
{ "title": "Jinan", "url": "https://www.urbanrail.net/as/cn/jinan/jinan-metro-map.png" },
{ "title": "Kunming", "url": "https://www.urbanrail.net/as/cn/kunming/kunming-metro-map.png" },
{ "title": "Lanzhou", "url": "https://www.urbanrail.net/as/cn/lanzhou/lanzhou-metro-map.png" },
{ "title": "Nanchang", "url": "https://www.urbanrail.net/as/cn/nanchang/nanchang-metro-map.png" },
{ "title": "Nanjing", "url": "https://www.urbanrail.net/as/cn/nanj/nanjing-metro-map.png" },
{ "title": "Nanning", "url": "https://www.urbanrail.net/as/cn/nanning/nanning-metro-map.png" },
{ "title": "Ningbo", "url": "https://www.urbanrail.net/as/cn/ningbo/ningbo-metro-map.png" },
{ "title": "Qingdao", "url": "https://www.urbanrail.net/as/cn/qing/qingdao-metro-map.png" },
{ "title": "Shanghai", "url": "https://www.urbanrail.net/as/cn/shan/shanghai-centre-map.png" },
{ "title": "Shenyang", "url": "https://www.urbanrail.net/as/cn/shny/shenyang-map.png" },
{ "title": "Shenzhen", "url": "https://www.urbanrail.net/as/cn/shen/shenzhen-centre-map.png" },
{ "title": "Shijiazhuang", "url": "https://www.urbanrail.net/as/cn/shijiazhuang/shijiazhuang-metro-map.png" },
{ "title": "Suzhou", "url": "https://www.urbanrail.net/as/cn/suzh/suzhou-map.png" },
{ "title": "Taiyuan", "url": "https://www.urbanrail.net/as/cn/taiyuan/taiyuan-metro-map.png" },
{ "title": "Ürümqi", "url": "https://www.urbanrail.net/as/cn/urumqi/urumqi-metro-map.png" },
{ "title": "Wenzhou", "url": "https://www.urbanrail.net/as/cn/wenzhou/wenzhou-metro-map.png" },
{ "title": "Wuhan", "url": "https://www.urbanrail.net/as/cn/wuhan/wuhan-metro-map.png" },
{ "title": "Wuxi", "url": "https://www.urbanrail.net/as/cn/wuxi/wuxi-metro-map.png" },
{ "title": "Xi'an", "url": "https://www.urbanrail.net/as/cn/xian/xian-map.png" },
{ "title": "Xiamen", "url": "https://www.urbanrail.net/as/cn/xiamen/xiamen-metro-map.png" },
{ "title": "Zhengzhou", "url": "https://www.urbanrail.net/as/cn/zheng/zhengzhou-metro-map.png" }
]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "None",
"alcohol_parchase_age": "18 years old",
"alcohol_info": [""]
},
"money": {
"tipping": {
"hotels": "Tipping is not required or expected in hotels",
"guides": "Tours guides are rare case where tipping is expected at USD 10 per person",
"restaurants": "Most restaurants refuse tips but some high end restaurants may add 10-15% service charge",
"Taxis": "Drivers won't expect nor ask for a tip"
}
},
"weather": {
"title": "China has a diverse climate due to its vast size and varied topography. Generally, it experiences cold and dry winters in the north, while the south has a subtropical to tropical climate with hot and humid summers",
"when_to_visit": [
{
"icon": "📸",
"title": "Sightseeing",
"time_period": "Spring (April to May) Autumn (September to October)",
"short_description": "China has a diverse climate due to its vast size and varied topography. Generally, it experiences cold and dry winters in the north, while the south has a subtropical to tropical climate with hot and humid summers"
},
{
"icon": "🌸",
"title": "Peach blossom season",
"time_period": "March to April",
"short_description": "Experience thousands of peach blossoms in bloom around the time of Chinese New Year"
},
{
"icon": "☀️",
"title": "Peak season",
"time_period": "Summer (June to August)",
"short_description": "Can be hot and humid in many parts of China, particularly in southern regions. Expect crowds during this period for sites such as the Great Wall, Yangtze River and Zhangjiajie National Forest Park"
},
{
"icon": "🥶",
"title": "Winter",
"time_period": "December to February",
"short_description": "Can get particularly cold in northern provincs like Beijing and Harbin. Great time to experience winter activities like skiing in Yabuli or ice sculptures at the Harbin Ice and Snow Festival"
}
],
"best_time": "The best time to visit China is during spring (April to May) and autumn (September to October) when the weather is pleasant, and you can avoid extreme temperatures and crowds"
},
"emergency": [
{
"title": "Police",
"number": "110"
},
{
"title": "Ambulance",
"number": "120"
},
{
"title": "Fire",
"number": "119"
}
]
},
{
"id": "3",
"iso": "USA",
"alpha_2": "US",
"country_name": "United States",
"flag_url": "https://raw.githubusercontent.com/hampusborgos/country-flags/main/png100px/us.png",
"short_description": "Embark on a road trip of a lifetime in the United States of America, where diverse landscapes, iconic landmarks, and vibrant culture await. Drive the iconic Route 66, visit the stunning national parks like Yellowstone and Grand Canyon, or explore the bustling cities like New York and Los Angeles",
"known_for": [
{ "title": "🌃 New York", "color": "pink" },
{ "title": "🍔 Fast Food", "color": "green" },
{ "title": "🎬 Hollywood", "color": "purple" },
{ "title": "🏈 American Sports", "color": "blue" },
{ "title": "🏞️ Nation parks", "color": "yellow" },
{ "title": "🚗 Roadtrips", "color": "orange" }
],
"capital": "Washington, D.C.",
"major_cities": [
"Austin",
"Boston",
"Charlotte",
"Chicago",
"Columbus",
"Dallas",
"Denver",
"Detroit",
"El Paso",
"Fort Worth",
"Houston",
"Indianapolis",
"Jacksonville",
"Las Vegas",
"Los Angeles",
"Memphis",
"Nashville",
"New York",
"Oklahoma City",
"Philadelphia",
"Phoenix",
"Portland",
"San Antonio",
"San Diego",
"San Francisco",
"San Jose",
"Seattle",
"Washington, D.C."
],
"official_language": ["English"],
"currency": { "title": "US Dollar", "symbol": "$" },
"major_religions": "Christianity",
"national_day": { "title": "Independence Day", "date": "04 July" },
"phone": {
"digital_code": "+1",
"phone_operators": ["AT&T", "T-Mobile US", "Verizon Wireless"]
},
"plug_types": ["A", "B"],
"transport": {
"driving_side": "right",
"taxi": [
{ "title": "Uber", "url": "https://www.uber.com/" },
{ "title": "Lyft", "url": "https://www.lyft.com/" },
{ "title": "Curb", "url": "https://www.gocurb.com/" }
],
"metro": [
{ "title": "Atlanta", "url": "https://www.urbanrail.net/am/atla/atlanta-map.gif" },
{ "title": "Baltimore", "url": "https://www.urbanrail.net/am/balt/baltimore-map.gif" },
{ "title": "Boston", "url": "https://www.urbanrail.net/am/bost/boston-map.png" },
{ "title": "Chicago", "url": "https://www.urbanrail.net/am/chic/chicago-centre-map.png" },
{ "title": "Cleveland", "url": "https://www.urbanrail.net/am/clev/cleveland-map.gif" },
{ "title": "Los Angeles", "url": "https://www.urbanrail.net/am/lsan/los-angeles-map.png" },
{ "title": "Miami", "url": "https://www.urbanrail.net/am/miam/miami-map.png" },
{ "title": "New York", "url": "https://www.urbanrail.net/am/nyrk/new-york-map.png" },
{ "title": "Philadelphia", "url": "https://www.urbanrail.net/am/phil/philadelphia-rail-map.png" },
{ "title": "San Francisco", "url": "https://www.urbanrail.net/am/snfr/sf-bay-area-map.png" },
{ "title": "Washington, D.C.", "url": "https://www.urbanrail.net/am/wash/washington-map.png" }
]
},
"health": {
"tap_water_safety": "Safe to drink",
"alcohol_consumption_age": "21 years old",
"alcohol_parchase_age": "21 years old",
"alcohol_info": [
"The National Minimum Drinking Age Act(established in 1984) requires all states and territorites to have a minimum purchasing age of 21",
"Only two U. S. Territorites have a drinking age of 18, those being Puerto Rico and the U. S. Virgin Islands",
"Some states do not allow those under the legal drinking age to be present in liquor stores or in bars"
]
},
"money": {
"tipping": {
"hotels": "Tipping at hotels is expected, aim for USD 1-2 per bag for porters, USD 2-3 per night for housekeeping and 15% for any room service",
"guides": "You are expected to tip your tour guide, between 15% and 20% depending on the quality of service, friendliness and knowledge",
"restaurants": "You should always tip between 10-25% at restaurants in America according to the level of service",
"Taxis": "It's customary to tip your driver a 10-15% of the overall fare or round the amount to the nearest dollar"
}
},
"weather": {
"title": "",
"when_to_visit": [
{
"icon": "",
"title": "",
"time_period": "",
"short_description": ""
},
{
"icon": "",
"title": "",
"time_period": "",
"short_description": ""
},
{
"icon": "",
"title": "",
"time_period": "",
"short_description": ""
}
],
"best_time": ""
},
"emergency": [
{
"title": "Police",
"number": "911"
},
{
"title": "Ambulance",
"number": "911"
},
{
"title": "Fire",
"number": "911"
}
]
},
{
"id": "4",
"iso": "IDN",
"alpha_2": "ID",
"country_name": "Indonesia",
"cover_image": "https://images.unsplash.com/photo-1577717903315-1691ae25ab3f?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "With over 17,000 islands, Indonesia is a destination that offers something for everyone. Explore the ancient temples of Bali, dive into the stunning coral reefs of Raja Ampat, and indulge in the delicious local cuisine",
"known_for": [
{ "title": "🍛 Nasi Goreng", "color": "pink" },
{ "title": "🎨 Balinese art", "color": "green" },
{ "title": "🏝️ Bali", "color": "purple" },
{ "title": "🏞️ Komodo National Park", "color": "blue" },
{ "title": "🐒 Orangutans", "color": "orange" }
],
"capital": "Jakarta",
"major_cities": ["Bandung", "Bekasi", "Jakarta", "Makassar", "Medan", "Palembang", "Samarang", "Surabaya"],
"official_language": ["Indonesian"],
"currency": { "title": "Indonesian rupiah", "symbol": "Rp" },
"major_religions": "Islam",
"national_day": { "title": "Independence Day", "date": "17 August" },
"phone": {
"digital_code": "+62",
"phone_operators": ["3", "Indosat Ooredoo", "Telkomsel", "XL Axiata"]
},
"plug_types": ["C", "F"],
"transport": {
"driving_side": "Left",
"taxi": [
{ "title": "Grab", "url": "https://www.grab.com/sg/" },
{ "title": "InDrive", "url": "https://indrive.com/en/home/" },
{ "title": "Gojek", "url": "https://www.gojek.com/en-id" },
{ "title": "maxim", "url": "https://taximaxim.com/id/en/2093-jakarta/order-a-taxi-online" }
],
"metro": [{ "title": "Jakarta", "url": "https://www.urbanrail.net/as/id/jaka/jakarta-rail-map.png" }]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "21 years old",
"alcohol_parchase_age": "21 years old",
"alcohol_info": ["Alcohol is prohibited in Aceh and Papua"]
},
"money": {
"tipping": {
"hotels": "Tipping is never mandatory as the hotels charge a 21% tax but you can offer a small gratuity to works if you see fit",
"guides": "You are not obligated to tip your tour guides in Indonesia but a small gratuity will always be appreciated",
"restaurants": "Check if your bill includes a service charge. If not you can add around 10% to your bill",
"Taxis": "Taxis are metered but many people tip to the nearest Rp"
}
},
"weather": {
"title": "Indonesia has a tropical climate with high temperatures and humidity year-round. It experiences a wet season from October to April, with heavy rainfall, and a dry season from May to September, characterized by drier conditions",
"when_to_visit": [
{
"icon": "😎",
"title": "Off peak season",
"time_period": "April and May, September and October",
"short_description": "Shoulder seasons offer favorable weather but with fewer crowds than the peak of dry season between June and August"
},
{
"icon": "🏝️",
"title": "Dry season",
"time_period": "April to October",
"short_description": "Less rainfall, lower humidity and more sunshine. Perfect for outdoor activities and beaches across key destinations like Bali, Yogyakarta and Komodo Island. Note that June to August are the most crowded peak months"
},
{
"icon": "⛈️",
"title": "Rainy season",
"time_period": "November to March",
"short_description": "Higher humidity and frequent rain showers, occuring in bursts. Travel still possible during this period but be prepared for disruption"
}
],
"best_time": "The best time to visit Indonesia is during the dry season from April to October when you can enjoy sunny weather, calm seas for diving, and easier access to various island and cultural sites"
},
"emergency": [
{
"title": "Police",
"number": "110"
},
{
"title": "Ambulance",
"number": "118"
},
{
"title": "Fire",
"number": "112"
}
]
},
{
"id": "5",
"iso": "PAK",
"country_name": "Pakistan",
"alpha_2": "PK",
"cover_image": "https://images.unsplash.com/photo-1601399681546-ff2983a355c3?q=80&w=2348&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "With a rich history, stunning landscapes, and hospitable people, Pakistan offers a unique blend of adventure and culture. From the ancient ruins of Mohenjo-Daro to the majestic mountains of the Himalayas, there's no shortage of experiences to discover",
"known_for": [
{ "title": "🍲 Biryani", "color": "pink" },
{ "title": "🎶 Pakistani music", "color": "green" },
{ "title": "🗻 Karakoram Highway", "color": "purpule" },
{ "title": "🐘 Elephant safari", "color": "blue" },
{ "title": "🕌 Badshahi Mosque", "color": "orange" }
],
"capital": "Islamabad",
"major_cities": [
"Faisalabad",
"Hyderabad City",
"Islamabad",
"Karachi",
"Lahore",
"Peshawar",
"Quetta",
"Rahimyar Khan",
"Rawalpindi"
],
"official_language": ["Urdu", "English"],
"currency": { "title": "Pakistani rupee", "symbol": "Rs" },
"major_religions": "Islam",
"national_day": { "title": "", "date": "" },
"phone": {
"digital_code": "+92",
"phone_operators": ["Jazz", "Telenor", "Ufone", "Zong"]
},
"plug_types": ["C", "D"],
"transport": {
"driving_side": "Left",
"taxi": [
{ "title": "Uber", "url": "https://www.uber.com/" },
{ "title": "Bykea", "url": "https://bykea.com/" },
{ "title": "InDrive", "url": "https://indrive.com/en/home/" },
{ "title": "Careem", "url": "https://www.careem.com/" }
],
"metro": [{ "title": "Lahore", "url": "https://www.urbanrail.net/as/lahore/lahore-metro-map.png" }]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "21 years old",
"alcohol_parchase_age": "21 years old",
"alcohol_info": ["Prohibited for Muslims", "Purchase age for Non-Muslims is 21"]
},
"money": {
"tipping": {
"hotels": "Government tax of 17.5% is usually applied to hotels but you can tip staff 30-40 rupees additional for their services",
"guides": "Tip your guide 200-300 rupees per day for a private tour or 30-50 rupees for a group tour",
"restaurants": "High end restaurants add 10% service charge to bills and in other restaurants you can tip 30-50 rupees",
"taxis": "Tipping isn't expected but 20-30 rupees if the driver was helpful would be appreciated"
}
},
"weather": {
"title": "Pakistan has a varied climate due to its diverse topography. The northern regions have a temperate and alpine climate with cold winters and mild summers. The southern and coastal areas have a hot desert climate with low rainfall",
"when_to_visit": [
{
"icon": "🗻",
"title": "Best of hiking",
"time_period": "Spring (March to May), Autumn (September to November)",
"short_description": "Mild, dry and pleasant weather, making it perfect for trekking and enjoying natural areas like Hunza and Swat Valley"
},
{
"icon": "🌤️",
"title": "Summer",
"time_period": "June to August",
"short_description": "Hot weather with monsoon rains in July and August. Humidity is increased during this period"
},
{
"icon": "❄️",
"title": "Winter",
"time_period": "December to February",
"short_description": "Cool and dry but never too cold. Some heavy but short rain showers during this period"
}
],
"best_time": "The best time to visit Pakistan depends on the region, but generally, the spring months of March to May and the autumn months of September to November offer mild temperatures and ideal weather for trekking, mountaineering, and exploring cultural sites"
},
"emergency": [
{
"title": "Police",
"number": "15"
},
{
"title": "Ambulance",
"number": "115"
},
{
"title": "Fire",
"number": "16"
}
]
},
{
"id": "6",
"iso": "NGA",
"country_name": "Nigeria",
"alpha_2": "NG",
"cover_image": "https://images.unsplash.com/photo-1594538756542-8c88bda491c5?q=80&w=2274&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "Africa's most populous country is a vibrant and colorful destination, with a rich cultural heritage and bustling cities. Visit the UNESCO-listed Osun-Osogbo Sacred Grove, explore the markets of Lagos, and relax on the beaches of Lagos Island",
"known_for": [
{ "title": "🌉 Third Mainland Bridge", "color": "red" },
{ "title": "🍲 Jollof rice", "color": "green" },
{ "title": "🎶 Afrobeat music", "color": "blue" },
{ "title": "🏙️ Lagos", "color": "yellow" },
{ "title": "🐘 Yankari National Park", "color": "purple" }
],
"capital": "Abuja",
"major_cities": ["Benin City", "Ibadan", "Kaduna", "Kano", "Lagos", "Maiduguri", "Port harcourt"],
"official_language": ["English"],
"currency": { "title": "Nigerian naira", "symbol": "₦" },
"major_religions": "Islam",
"national_day": { "title": "Independence Day", "date": "01 October" },
"phone": {
"digital_code": "+234",
"phone_operators": ["9mobile", "Airtel", "Glo Mobile", "MTN"]
},
"plug_types": ["D", "G"],
"transport": {
"driving_side": "Right",
"taxi": [
{ "title": "InDrive", "url": "https://indrive.com/en/home/" },
{ "title": "Bolt", "url": "https://bolt.eu/" },
{ "title": "Uber", "url": "https://www.uber.com/" }
]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "None",
"alcohol_parchase_age": "None",
"alcohol_info": [""]
},
"money": {
"tipping": {
"hotels": "None",
"guides": "None",
"restaurants": "None",
"taxis": "None"
}
},
"weather": {
"title": "Nigeria has a tropical climate with high temperatures and humidity year-round. It experiences a wet season from April to October, with heavy rainfall, while the dry season from November to March offers drier conditions",
"when_to_visit": [
{
"icon": "☀️",
"title": "Dry season",
"time_period": "November to February",
"short_description": "Cooler temperatures and less rainfall. Most enjoyable period for sightseeing and outdoor adventures"
},
{
"icon": "🌧️",
"title": "Wet season",
"time_period": "April to October",
"short_description": "Higher temperatures, high humidity, and heavy rainfall. Most frequent thunderstorms happen between June and September"
}
],
"best_time": "The best time to visit Nigeria depends on the region, but generally, the months of November to March offer milder temperatures and lower chances of rainfall, making it suitable for exploring the country's cultural heritage and wildlife reserves"
},
"emergency": [
{
"title": "Police",
"number": "112"
},
{
"title": "Ambulance",
"number": "112"
},
{
"title": "Fire",
"number": "112"
}
]
},
{
"id": "7",
"iso": "BRA",
"alpha_2": "BR",
"country_name": "Brazil",
"cover_image": "https://images.unsplash.com/photo-1516306580123-e6e52b1b7b5f?q=80&w=2126&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "From the vibrant cities of Rio de Janeiro and Sao Paulo to the stunning Amazon rainforest and the beaches of Bahia, Brazil is a country of contrasts and wonders. Dance to samba music, indulge in delicious food, and experience the warmth and hospitality of the Brazilian people",
"known_for": [
{ "title": "⚽️ Football", "color": "pink" },
{ "title": "🌳 Amazon Rainforest", "color": "green" },
{ "title": "🎶 Samba", "color": "purple" },
{ "title": "🏖️ Beaches", "color": "blue" },
{ "title": "🥩 Churrasco", "color": "red" }
],
"capital": "Brasilia",
"major_cities": [
"Belem",
"Belo Horizonte",
"Brasilia",
"Curitiba",
"Fortaleza",
"Goiana",
"Manaus",
"Porto Alegre",
"Recife",
"Reo de Janeiro",
"Salvador",
"Sao Paulo"
],
"official_language": ["Portuguese"],
"currency": { "title": "Brazilian real", "symbol": "R$" },
"major_religions": "Roman Catholic",
"national_day": { "title": "Independence Day", "date": "07 September" },
"phone": {
"digital_code": "+55",
"phone_operators": ["Algar Telecom", "Claro", "Oi", "Sercomtel", "TIM", "Vivo"]
},
"plug_types": ["C", "N"],
"transport": {
"driving_side": "Right",
"taxi": [
{ "title": "Uber", "url": "https://www.uber.com/" },
{ "title": "Cabify", "url": "https://cabify.com/" },
{ "title": "InDrive", "url": "https://indrive.com/en/home/" },
{ "title": "maxim", "url": "https://taximaxim.com/br/en/10329-rio%20branco/order-a-taxi-online" },
{ "title": "99", "url": "https://99app.com/" }
],
"metro": [
{ "title": "Belo Horizonte", "url": "https://www.urbanrail.net/am/belo/belo-horizonte-map.png" },
{ "title": "Brasília", "url": "https://www.urbanrail.net/am/bras/brasilia-metro-map.png" },
{ "title": "Porto Alegre", "url": "https://www.urbanrail.net/am/ptal/porto-alegre-map.gif" },
{ "title": "Recife", "url": "https://www.urbanrail.net/am/reci/recife-rail-map.png" },
{ "title": "Rio de Janeiro", "url": "https://www.urbanrail.net/am/rioj/rio-de-janeiro-metro-map.png" },
{ "title": "Salvador", "url": "https://www.urbanrail.net/am/salv/salvador-metro-map.png" },
{ "title": "São Paulo", "url": "https://www.urbanrail.net/am/spau/sao-paulo-map.png" }
]
},
"health": {
"tap_water_safety": "Exercive Caution",
"alcohol_consumption_age": "18 years old",
"alcohol_parchase_age": "18 years old",
"alcohol_info": [
"It is prohibited to sell, serve or supply any alcohol beverage to a person under 18 years of age. The presidential law enacted on 17 March 2015 made any violation of the law a criminal offence",
"Any adult person selling, serving, giving or supplying alcohol beverages to a minor is punished with imprisonment of 2 to 4 years, a fine of R$3.000 to R$10.000 and a ban to operate any business selling or serving alcohol"
]
},
"money": {
"tipping": {
"hotels": "None",
"guides": "None",
"restaurants": "None",
"taxis": "None"
}
},
"weather": {
"title": "Brazil has a diverse climate due to its vast size and geographical features. It generally experiences a tropical climate, with variations across different regions, including hot and humid conditions in the Amazon rainforest, pleasant coastal temperatures, and a subtropical climate in the southern regions",
"when_to_visit": [
{
"icon": "🎉",
"title": "Party time",
"time_period": "November to February",
"short_description": "Peak summer season with warm temperatures and major celebration from New Year to Carnival"
},
{
"icon": "🌃",
"title": "Southeastern region",
"time_period": "April to June, Aughust to October",
"short_description": "Shoulder seasons offer more comfortable temperatures, less humidity and less crowds than summer months. Ideal for exploring citis like Rio de Janeiro and Sao Paulo"
},
{
"icon": "🌊",
"title": "Northeastern regions",
"time_period": "September to February",
"short_description": "Dry season in coastal areas such Selvador and Fortaleza. This period offers plenty of sunshine, warm temperatures and less rain"
},
{
"icon": "🦎",
"title": "For nature lovers",
"time_period": "Amazon (June to November), Pantanal wetlands (April to September)",
"short_description": "Both the Amazon and Pantanal wetlands remain hot and humid during these periods but water levels are lower, making wildlife discovery and navigation easier"
}
],
"best_time": "The best time to visit Brazil is during the months of April to June and August to October, when many regions experience milder temperatures, lower humidity, and less rainfall, offering favorable conditions for outdoor activities and sightseeing"
},
"emergency": [
{
"title": "Police",
"number": "190"
},
{
"title": "Ambulance",
"number": "192"
},
{
"title": "Fire",
"number": "193"
}
]
},
{
"id": "8",
"iso": "BGD",
"alpha_2": "BD",
"country_name": "Bangladesh",
"cover_image": "https://images.unsplash.com/photo-1577624060070-ca1afe89ddad?q=80&w=2226&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "Experience the vibrant culture, stunning landscapes, and delicious cuisine of Bangladesh, a country with a rich history and welcoming people. Visit bustling markets, explore ancient temples, and relax on beautiful beaches",
"known_for": [
{ "title": "🍛 Bangladeshi cuisine", "color": "red" },
{ "title": "🎨 Nakshi Kantha embroidery", "color": "green" },
{ "title": "🐅 Royal Bengal Tiger", "color": "pink" },
{ "title": "💰 Textile industry", "color": "blue" },
{ "title": "🛕 Temples", "color": "yellow" }
],
"capital": "Dhaka",
"major_cities": [
"Barisal",
"Chittagong",
"Comilla",
"Dhaka",
"Khulna",
"Mymensingh",
"Narayanganj",
"Rajshahi",
"Rangpur",
"Sylhet"
],
"official_language": ["Bangali"],
"currency": { "title": "Bangladeshi taka", "symbol": "৳" },
"major_religions": "Islam",
"national_day": { "title": "Independence Day", "date": "26 March" },
"phone": {
"digital_code": "+880",
"phone_operators": ["Banglalink", "Gremeeenphone", "Robi", "Teletalk"]
},
"plug_types": ["A", "C", "D", "G"],
"transport": {
"driving_side": "Left",
"taxi": [
{ "title": "Uber", "url": "https://www.uber.com/" },
{ "title": "Pathao", "url": "https://pathao.com/" }
]
},
"health": {
"tap_water_safety": "Exercise Caution",
"alcohol_consumption_age": "18 years old",
"alcohol_parchase_age": "18 years old",
"alcohol_info": [""]
},
"money": {
"tipping": {
"hotels": "Tipping hotel staff isn't customary but you can give 20-30 rupees as a gesture to porters or housekeeping",
"guides": "Tipping tour guides is not a custom but a kind gesture. For a full day privatetour tip 100-200 rupees and 30-50 rupees for a group tour",
"restaurants": "Tip 5-10% of the bill where service charge isn't included",
"taxis": "Most taxis use a meter and you can simply round up the fare"
}
},
"weather": {
"title": "Bangladesh has a subtropical monsoon climate characterized by hot, humid summers (March to June) and cooler, drier winters (November to February). The country experiences heavy rainfall during the monsoon season (June to October) and occasional cyclones, while the spring (March to May) brings higher temperatures and humidity",
"when_to_visit": [
{
"icon": "🦅",
"title": "For nature lovers",
"time_period": "Spring (March to May)",
"short_description": "Nature is in full bloom and it's the perfect time if you are interested in observing wildlife or birdwatching"
},
{
"icon": "🏞️",
"title": "Sightseeing",
"time_period": "Winter (November to February)",
"short_description": "Best time to visit with a pleasant climate for sightseeing and enjoying the country's natural beauty. Lowest rainfall and humidity in this period"
},
{
"icon": "🌦️",
"title": "Summer",
"time_period": "March to June",
"short_description": "Higher temperatures, humidity and the possibility of heavy rainfall"
},
{
"icon": "💧",
"title": "Monsoon season",
"time_period": "June to October",
"short_description": "Frequent rain showers and occasional cyclones"
}
],
"best_time": "The best time to visit Bangladesh is during the winter season (November to February) when the weather is cooler and drier, providing comfortable conditions for exploring the country's attractions and enjoying outdoor activities"
},
"emergency": [
{
"title": "Police",
"number": "999"
},
{
"title": "Ambulance",
"number": "999"
},
{
"title": "Fire",
"number": "999"
}
]
},
{
"id": "9",
"iso": "RUS",
"alpha_2": "RU",
"country_name": "Russia",
"cover_image": "https://images.unsplash.com/photo-1513326738677-b964603b136d?q=80&w=2249&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"flag_url": "",
"short_description": "The largest country in the world, Russia offers a wealth of cultural and historical treasures. Marvel at the colorful onion domes of St. Basil's Cathedral in Moscow, visit the Hermitage Museum in St. Petersburg, or journey on the Trans-Siberian Railway",
"known_for": [
{ "title": "❄️ Winter Sports", "color": "red" },
{ "title": "🍺 Vodka", "color": "green" },
{ "title": "🎨 Art", "color": "pink" },
{ "title": "🎭 Ballet", "color": "blue" },
{ "title": "🏛️ Architecture", "color": "orange" }
],
"capital": "Moscow",
"major_cities": [
"Chelyabinsk",
"Kazan",
"Moscow",
"Novosibirsk",
"Omsk",
"Rostov",
"Saint Petersburg",
"Samara",
"Ufa",
"Volgograd",
"Yekaterinburg"
],
"official_language": ["Russian"],
"currency": { "title": "Russian ruble", "symbol": "₽" },
"major_religions": "Christianity",
"national_day": { "title": "Russia Day", "date": "12 June" },
"phone": {
"digital_code": "+7",
"phone_operators": ["Beeline", "MTS", "MegaFon", "Tele2 Russia"]
},
"plug_types": ["C", "F"],
"transport": {
"driving_side": "Right",
"taxi": [
{ "title": "DiDi", "url": "https://russia.didiglobal.com/" },
{ "title": "Yandex Go", "url": "https://go.yandex/ru_ru/" },
{ "title": "InDrive", "url": "https://indrive.com/en/home/" }
],
"metro": [
{ "title": "Kazan'", "url": "https://www.urbanrail.net/eu/ru/kaz/kazan-map.png" },
{ "title": "Moscow", "url": "https://www.urbanrail.net/eu/ru/mos/moscow-rail-map.png" },
{ "title": "Nizhniy Novgorod", "url": "https://www.urbanrail.net/eu/ru/niz/nizhniy-novgorod-metro-map.png" },
{ "title": "Novosibirsk", "url": "https://www.urbanrail.net/eu/ru/novosib/novosibirsk-metro-map.png" },
{ "title": "Samara", "url": "https://www.urbanrail.net/eu/ru/sam/samara-metro-map.png" },
{ "title": "St. Petersburg", "url": "https://www.urbanrail.net/eu/ru/pet/st-petersburg-metro-map.png" },
{ "title": "Volgograd", "url": "https://www.urbanrail.net/eu/ru/vol/volgograd-centre-map.png" },
{ "title": "Yekaterinburg", "url": "https://www.urbanrail.net/eu/ru/yekatarin/yekaterinburg-metro-map.png" }
]
},
"health": {
"tap_water_safety": "Safe to drink",
"alcohol_consumption_age": "16 years old",
"alcohol_parchase_age": "18 years old",
"alcohol_info": [
"Penalties apply to parents of those under 16 years of age who consume alcohol beverages in public places"
]
},
"money": {
"tipping": {
"hotels": "Tipping is common in hotels so aim for 30-90 Rubbles for porters, 60-120 Rubbles per day for housekeeping and 300 Rubbles for concierge",
"guides": "Tip up to 300 Rubbles to the guide and/or driver direcltly",
"restaurants": "It is customary to tip 10-15% of the bill in cash",
"taxis": "You can round up the fare or tip no more that 10%"
}
},
"weather": {
"title": "Russia has a diverse climate due to its vast size and varied topography. The European part has a range of climates, including humid continental and subarctic. Siberia has a severe continental climate with extremely cold winters. The country experiences significant temperature variations and varied precipitation patterns",
"when_to_visit": [
{
"icon": "📸",
"title": "Sightseeing",
"time_period": "Spring (April to May), Autumn (September to October)",
"short_description": "Shoulder seasons offer warm weather without the crowds of summer. Perfect time to visit tourist hotspots like Moscow and St Petersburg"
},
{
"icon": "☀️",
"title": "Summer",
"time_period": "May to October",
"short_description": "Warm temperatures and busy with tourists. Great opportunity to visit some of Russia's less known areas on the Black Sea, in Siberia and the Far East"
},
{
"icon": "🤍",
"title": "White Nights",
"time_period": "July",
"short_description": "Visit St Petersburg in July to enjoy the annual festival where the skies remain light all day for two days"
},
{
"icon": "🥶",
"title": "Winter",
"time_period": "November to March",
"short_description": "Following the wet months of October and November, winter is often cold and harsh. Avoid remote northern regions during this period unless necessary"
}
],
"best_time": "The best time to visit Russia depends on the region and activities you plan to engage in. Generally, the summer months from June to August offer milder temperatures, longer daylight hours, and access to cultural and natural attractions"
},
"emergency": [
{
"title": "Police",
"number": "112"
},
{
"title": "Ambulance",
"number": "112"
},
{
"title": "Fire",