-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsuicide-hotlines.json
More file actions
1941 lines (1941 loc) · 164 KB
/
Copy pathsuicide-hotlines.json
File metadata and controls
1941 lines (1941 loc) · 164 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
{
"Algeria": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:34342\" rel=\"nofollow\">34342</a> and <a class=\"external text\" href=\"tel:43\" rel=\"nofollow\">43</a> are the national emergency numbers for police and ambulances in Algeria.</b></li>\n<li><b>Suicide Hotline Algeria:</b> <a class=\"external text\" href=\"tel:00213983200058\" rel=\"nofollow\">0021 3983 2000 58</a></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:34342",
"tel:43"
],
"description": "34342 and 43 are the national emergency numbers for police and ambulances in Algeria."
},
{
"phones": [
"tel:00213983200058"
],
"description": "Suicide Hotline Algeria: 0021 3983 2000 58"
}
]
},
"Argentina": {
"raw_html": "<ul><li><b><a class=\"mw-redirect\" href=\"/wiki/911_(emergency_telephone_number)\" title=\"911 (emergency telephone number)\">911</a> is the national emergency number in Argentina.</b></li>\n<li><b>Centro de Asistencia al Suicida</b> by calling <a class=\"external text\" href=\"tel:135\" rel=\"nofollow\">135</a> (Greater Buenos Aires) or <a class=\"external text\" href=\"tel:52751135\" rel=\"nofollow\">5275-1135</a> (rest of the country).<sup class=\"reference\" id=\"cite_ref-4\"><a href=\"#cite_note-4\">[4]</a></sup></li>\n<li><b>SOS Un Amigo Anonimo</b> is available seven days a week from 10 AM to 7 PM by calling <a class=\"external text\" href=\"tel:47838888\" rel=\"nofollow\">4783\u20138888</a>.<sup class=\"reference\" id=\"cite_ref-5\"><a href=\"#cite_note-5\">[5]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "911 is the national emergency number in Argentina."
},
{
"phones": [
"tel:135",
"tel:52751135"
],
"description": "Centro de Asistencia al Suicida by calling 135 (Greater Buenos Aires) or 5275-1135 (rest of the country).[4]"
},
{
"phones": [
"tel:47838888"
],
"description": "SOS Un Amigo Anonimo is available seven days a week from 10 AM to 7 PM by calling 4783\u20138888.[5]"
}
]
},
"Armenia": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> and <a class=\"mw-redirect\" href=\"/wiki/911_(emergency_telephone_number)\" title=\"911 (emergency telephone number)\">911</a> are the national emergency numbers in Armenia.</b></li>\n<li><b>Trust Social Work and Sociological Research Centre:</b> can be reached at (2) <a class=\"external text\" href=\"tel:538194\" rel=\"nofollow\">538194</a> or (2) <a class=\"external text\" href=\"tel:538197\" rel=\"nofollow\">538197</a></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 and 911 are the national emergency numbers in Armenia."
},
{
"phones": [
"tel:538194",
"tel:538197"
],
"description": "Trust Social Work and Sociological Research Centre: can be reached at (2) 538194 or (2) 538197"
}
]
},
"Australia": {
"raw_html": "<ul><li><b><a href=\"/wiki/000_(emergency_telephone_number)\" title=\"000 (emergency telephone number)\">000</a> is the national emergency number in Australia.</b></li>\n<li><b><a href=\"/wiki/Lifeline_(crisis_support_service)\" title=\"Lifeline (crisis support service)\">Lifeline</a></b> is a 24-hour nationwide service that provides access to crisis support, suicide prevention and mental health support services.<sup class=\"reference\" id=\"cite_ref-6\"><a href=\"#cite_note-6\">[6]</a></sup> It can be reached at <b><a class=\"external text\" href=\"tel:131114\" rel=\"nofollow\">13 11 14</a></b>. They also offer an online chat service from 7pm to midnight Sydney time every day.<sup class=\"reference\" id=\"cite_ref-7\"><a href=\"#cite_note-7\">[7]</a></sup><sup class=\"reference\" id=\"cite_ref-8\"><a href=\"#cite_note-8\">[8]</a></sup></li>\n<li><b><a href=\"/wiki/Kids_Helpline\" title=\"Kids Helpline\">Kids Helpline</a></b> is a 24-hour nationwide service that provides access to crisis support, suicide prevention and counselling services for Australians aged 5\u201325. It can be reached at <b><a class=\"external text\" href=\"tel:1800551800\" rel=\"nofollow\">1800 55 1800</a></b>. In addition the Kids Helpline does also provide online chat services.<sup class=\"reference\" id=\"cite_ref-9\"><a href=\"#cite_note-9\">[9]</a></sup></li>\n<li><b><a class=\"mw-redirect\" href=\"/wiki/Beyond_Blue_(organization)\" title=\"Beyond Blue (organization)\">Beyond Blue</a></b> provides nationwide information and support regarding anxiety, depression, and suicide. It has a helpline which can be reached by calling <b><a class=\"external text\" href=\"tel:1300224636\" rel=\"nofollow\">1300 22 4636</a></b>. The helpline is available 24 hours a day, 7 days a week. In addition, the organisation also provides online chat from 3 pm to 12 am every day.<sup class=\"reference\" id=\"cite_ref-10\"><a href=\"#cite_note-10\">[10]</a></sup></li>\n<li>The <b>Suicide Call Back Service</b> is a nationwide service that provides professional 24/7 telephone and online counselling to people who are affected by suicide. It has a helpline which can be reached by calling <b><a class=\"external text\" href=\"tel:1300659467\" rel=\"nofollow\">1300 659 467</a></b>. The organisation also offers online chat and video chat services.<sup class=\"reference\" id=\"cite_ref-11\"><a href=\"#cite_note-11\">[11]</a></sup></li>\n<li><b>MensLine Australia</b> is a 24/7 telephone and online counselling service for men with emotional health, mental health and relationship concerns. It has a helpline which can be reached by calling <b><a class=\"external text\" href=\"tel:1300789978\" rel=\"nofollow\">1300 78 99 78</a></b>. The organisation also online counselling.<sup class=\"reference\" id=\"cite_ref-12\"><a href=\"#cite_note-12\">[12]</a></sup></li>\n<li><b><a class=\"external text\" href=\"https://suicidepreventionpathways.org.au\" rel=\"nofollow\">Talk Suicide</a></b> offers free support from a counsellor who can meet you at your home, a local park or coffee shop. Their counsellors specialise in talking with people who may be experiencing thoughts of suicide and they can keep in touch with you as often as you need. They can also provide support to family and friends. The link to make a self-referral is <b><a class=\"external free\" href=\"https://suicidepreventionpathways.org.au/make-a-referral\" rel=\"nofollow\">https://suicidepreventionpathways.org.au/make-a-referral</a></b> or they can be contacted by phoning <b><a class=\"external text\" href=\"tel:1800008255\" rel=\"nofollow\">1800 008 255</a></b><sup class=\"reference\" id=\"cite_ref-13\"><a href=\"#cite_note-13\">[13]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "000 is the national emergency number in Australia."
},
{
"phones": [
"tel:131114"
],
"description": "Lifeline is a 24-hour nationwide service that provides access to crisis support, suicide prevention and mental health support services.[6] It can be reached at 13 11 14. They also offer an online chat service from 7pm to midnight Sydney time every day.[7][8]"
},
{
"phones": [
"tel:1800551800"
],
"description": "Kids Helpline is a 24-hour nationwide service that provides access to crisis support, suicide prevention and counselling services for Australians aged 5\u201325. It can be reached at 1800 55 1800. In addition the Kids Helpline does also provide online chat services.[9]"
},
{
"phones": [
"tel:1300224636"
],
"description": "Beyond Blue provides nationwide information and support regarding anxiety, depression, and suicide. It has a helpline which can be reached by calling 1300 22 4636. The helpline is available 24 hours a day, 7 days a week. In addition, the organisation also provides online chat from 3 pm to 12 am every day.[10]"
},
{
"phones": [
"tel:1300659467"
],
"description": "The Suicide Call Back Service is a nationwide service that provides professional 24/7 telephone and online counselling to people who are affected by suicide. It has a helpline which can be reached by calling 1300 659 467. The organisation also offers online chat and video chat services.[11]"
},
{
"phones": [
"tel:1300789978"
],
"description": "MensLine Australia is a 24/7 telephone and online counselling service for men with emotional health, mental health and relationship concerns. It has a helpline which can be reached by calling 1300 78 99 78. The organisation also online counselling.[12]"
},
{
"phones": [
"tel:1800008255"
],
"description": "Talk Suicide offers free support from a counsellor who can meet you at your home, a local park or coffee shop. Their counsellors specialise in talking with people who may be experiencing thoughts of suicide and they can keep in touch with you as often as you need. They can also provide support to family and friends. The link to make a self-referral is https://suicidepreventionpathways.org.au/make-a-referral or they can be contacted by phoning 1800 008 255[13]"
}
]
},
"Austria": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Austria.</b></li>\n<li><b><a class=\"external text\" href=\"tel:142\" rel=\"nofollow\">142</a></b> is the number of <b>Telefonseelsorge</b> in Austria. Free of charge, operating 24 hours a day.<sup class=\"reference\" id=\"cite_ref-14\"><a href=\"#cite_note-14\">[14]</a></sup></li>\n<li><b><a class=\"external text\" href=\"tel:147\" rel=\"nofollow\">147</a></b> is the number of <b>Rat auf Draht</b>, a crisis number especially for children, juveniles and their attachment figures. Free of charge, operating 24 hours a day.<sup class=\"reference\" id=\"cite_ref-15\"><a href=\"#cite_note-15\">[15]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Austria."
},
{
"phones": [
"tel:142"
],
"description": "142 is the number of Telefonseelsorge in Austria. Free of charge, operating 24 hours a day.[14]"
},
{
"phones": [
"tel:147"
],
"description": "147 is the number of Rat auf Draht, a crisis number especially for children, juveniles and their attachment figures. Free of charge, operating 24 hours a day.[15]"
}
]
},
"Azerbaijan": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Azerbaijan.</b></li>\n<li><b><a class=\"external text\" href=\"tel:5106636\" rel=\"nofollow\">510-66-36</a></b> is the official youth crisis hotline operated by Initiative for Development.<sup class=\"reference\" id=\"cite_ref-16\"><a href=\"#cite_note-16\">[16]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Azerbaijan."
},
{
"phones": [
"tel:5106636"
],
"description": "510-66-36 is the official youth crisis hotline operated by Initiative for Development.[16]"
}
]
},
"United States": {
"raw_html": "<ul><li><b><a href=\"/wiki/9-1-1\" title=\"9-1-1\">911</a> is the national emergency number in the United States.</b></li>\n<li><b><a href=\"/wiki/2-1-1\" title=\"2-1-1\">211</a></b> is a phone number in the United States for people in crisis who need emergency referrals to social and community services but are not experiencing an immediate life-threatening emergency. Services available vary by state.<sup class=\"reference\" id=\"cite_ref-46\"><a href=\"#cite_note-46\">[46]</a></sup></li>\n<li>The <b><a href=\"/wiki/National_Suicide_Prevention_Lifeline\" title=\"National Suicide Prevention Lifeline\">National Suicide Prevention Lifeline</a></b> (<a class=\"external free\" href=\"http://suicidepreventionlifeline.org/\" rel=\"nofollow\">http://suicidepreventionlifeline.org/</a>) is a 24-hour, toll-free, confidential suicide prevention hotline available to anyone in suicidal crisis or emotional distress.<sup class=\"reference\" id=\"cite_ref-47\"><a href=\"#cite_note-47\">[47]</a></sup><sup class=\"reference\" id=\"cite_ref-Johnson_2010_48-0\"><a href=\"#cite_note-Johnson_2010-48\">[48]</a></sup> It provides Spanish-speaking counselors, as well as options for deaf and hard of hearing individuals. It is only available in the United States.<sup class=\"reference\" id=\"cite_ref-49\"><a href=\"#cite_note-49\">[49]</a></sup> A 24-hour <a class=\"external text\" href=\"https://suicidepreventionlifeline.org/chat/\" rel=\"nofollow\">Online Chat</a> in partnership with Contact USA<sup class=\"reference\" id=\"cite_ref-50\"><a href=\"#cite_note-50\">[50]</a></sup> is also available.\n<ul><li>The National Suicide Prevention Lifeline can be reached at <b><a class=\"external text\" href=\"tel:1-800-273-8255\" rel=\"nofollow\">1-800-273-8255</a></b>. In July 2022, 988 will become the national three-digit dialing code for the National Suicide Prevention Lifeline, replacing the current phone number of <a class=\"mw-redirect\" href=\"/wiki/1-800-273-8255\" title=\"1-800-273-8255\">1-800-273-TALK (8255)</a>. Americans needing support should continue to call 1-800-273-TALK (8255) until then.</li>\n<li><a href=\"/wiki/T-Mobile_US\" title=\"T-Mobile US\">T-Mobile US</a> Customers can dial <b><a class=\"external text\" href=\"tel:988\" rel=\"nofollow\">988</a></b> to reach to the National Suicide Prevention Lifeline.<sup class=\"reference\" id=\"cite_ref-51\"><a href=\"#cite_note-51\">[51]</a></sup></li>\n<li><a class=\"mw-redirect\" href=\"/wiki/Verizon_Wireless\" title=\"Verizon Wireless\">Verizon Wireless</a> Customers can dial <b><a class=\"external text\" href=\"tel:988\" rel=\"nofollow\">988</a></b> to reach the National Suicide Prevention Lifeline.<sup class=\"reference\" id=\"cite_ref-52\"><a href=\"#cite_note-52\">[52]</a></sup></li>\n<li>Nacional de Prevenci\u00f3n del Suicidio: <a class=\"external text\" href=\"Tel:1-888-628-9454\" rel=\"nofollow\"><b>1-888-628-9454</b></a></li>\n<li>Deaf or Hard of Hearing: Use your preferred relay service or dial 711 then 1-800-273-8255<sup class=\"reference\" id=\"cite_ref-53\"><a href=\"#cite_note-53\">[53]</a></sup></li></ul></li>\n<li>The <b><a class=\"new\" href=\"/w/index.php?title=Veterans_Crisis_Line&action=edit&redlink=1\" title=\"Veterans Crisis Line (page does not exist)\">Veterans Crisis Line</a></b> (<a class=\"external free\" href=\"https://www.veteranscrisisline.net/\" rel=\"nofollow\">https://www.veteranscrisisline.net/</a>) is a 24-hour, toll-free hotline that provides phone, webchat, and text options available to military veterans and their families. It provides options for deaf and hard of hearing individuals.\n<ul><li>The Veterans Crisis Line can be reached at <b><a class=\"external text\" href=\"tel:1-800-273-8255\" rel=\"nofollow\">1-800-273-8255</a>, followed by Pressing 1</b>.</li>\n<li>The hotline will be available to be reached by dialing <a class=\"external text\" href=\"tel:988\" rel=\"nofollow\">988</a> by July 2022. The <a class=\"external text\" href=\"tel:988\" rel=\"nofollow\">988</a> number is currently activated on <a href=\"/wiki/T-Mobile_US\" title=\"T-Mobile US\">T-Mobile US</a>. Like calling the other phone number, the Veterans Crisis Line can be reached by pressing 1 after calling the <a class=\"external text\" href=\"tel:988\" rel=\"nofollow\">988</a> phone number.</li>\n<li>The hotline can also be reached by texting to <a class=\"external text\" href=\"sms:838255\" rel=\"nofollow\">838255</a>.</li></ul></li>\n<li><b>IMAlive Crisis Chatine</b> (<a class=\"external text\" href=\"https://www.imalive.org/\" rel=\"nofollow\">www.imalive.org</a>) is a non-profit, worldwide 24/7, anonymous chatline to help anyone in crisis via instant messaging.</li>\n<li>The <b><a href=\"/wiki/Crisis_Text_Line\" title=\"Crisis Text Line\">Crisis Text Line</a></b> (<a class=\"external text\" href=\"http://crisistextline.org/\" rel=\"nofollow\">crisistextline.org</a>) is the only 24/7, nationwide crisis-intervention text-message hotline.<sup class=\"reference\" id=\"cite_ref-54\"><a href=\"#cite_note-54\">[54]</a></sup>\n<ul><li>The Crisis Text Line can be reached by texting <b>HOME</b> to <a class=\"external text\" href=\"sms:741-741\" rel=\"nofollow\"><b>741-741</b></a>.</li></ul></li>\n<li><b><a href=\"/wiki/Samaritans_(charity)\" title=\"Samaritans (charity)\">Samaritans USA</a></b> (<a class=\"external free\" href=\"http://www.samaritansusa.org/\" rel=\"nofollow\">http://www.samaritansusa.org/</a>) is a registered <a class=\"mw-redirect\" href=\"/wiki/Charitable_organisation\" title=\"Charitable organisation\">charity</a> aimed at providing emotional support to anyone in distress or at risk of <a href=\"/wiki/Suicide\" title=\"Suicide\">suicide</a> throughout the <a href=\"/wiki/United_States\" title=\"United States\">United States</a>.<sup><a href=\"/wiki/List_of_suicide_crisis_lines#cite_note-9\" title=\"List of suicide crisis lines\">[9]</a></sup></li>\n<li><span class=\"flagicon\"><img alt=\"\" class=\"thumbborder\" data-file-height=\"316\" data-file-width=\"512\" decoding=\"async\" height=\"14\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/4/48/Gay_Pride_Flag.svg/23px-Gay_Pride_Flag.svg.png\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/4/48/Gay_Pride_Flag.svg/35px-Gay_Pride_Flag.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/48/Gay_Pride_Flag.svg/46px-Gay_Pride_Flag.svg.png 2x\" width=\"23\"/></span> <b><a href=\"/wiki/The_Trevor_Project\" title=\"The Trevor Project\">The Trevor Project</a></b> (<a class=\"external free\" href=\"http://www.thetrevorproject.org/\" rel=\"nofollow\">http://www.thetrevorproject.org/</a>) is a nationwide organization that provides a 24-hour phone hotline, as well as 24-hour webchat and text options, for lesbian, gay, bisexual, transgender and questioning youth.<sup class=\"reference\" id=\"cite_ref-55\"><a href=\"#cite_note-55\">[55]</a></sup>\n<ul><li>The TrevorLifeline can be reached at <a class=\"external text\" href=\"tel:1-866-488-7386\" rel=\"nofollow\"><b>1-866-488-7386</b></a>.</li>\n<li>TrevorChat can be found at <b><a class=\"external free\" href=\"https://www.thetrevorproject.org/get-help-now/\" rel=\"nofollow\">https://www.thetrevorproject.org/get-help-now/</a></b></li>\n<li>TrevorText can be reached by texting <b>START</b> to <b><a class=\"external text\" href=\"sms:678-678\" rel=\"nofollow\">678-678</a></b></li></ul></li>\n<li>The <b><a href=\"/wiki/Trans_Lifeline\" title=\"Trans Lifeline\">Trans Lifeline</a></b> (<a class=\"external free\" href=\"https://www.translifeline.org/\" rel=\"nofollow\">https://www.translifeline.org/</a>) is a nonprofit organization that is created by and for the transgender community, providing crisis intervention hotlines, staffed by transgender individuals, available in the United States and Canada.\n<ul><li>The Trans Lifeline can be reached at <a class=\"external text\" href=\"tel:18775658860\" rel=\"nofollow\"><b>1-877-565-8860</b></a>.<sup class=\"reference\" id=\"cite_ref-blog_23-1\"><a href=\"#cite_note-blog-23\">[23]</a></sup></li></ul></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "911 is the national emergency number in the United States."
},
{
"phones": [],
"description": "211 is a phone number in the United States for people in crisis who need emergency referrals to social and community services but are not experiencing an immediate life-threatening emergency. Services available vary by state.[46]"
},
{
"phones": [
"tel:1-800-273-8255",
"tel:988",
"tel:988"
],
"description": "The National Suicide Prevention Lifeline (http://suicidepreventionlifeline.org/) is a 24-hour, toll-free, confidential suicide prevention hotline available to anyone in suicidal crisis or emotional distress.[47][48] It provides Spanish-speaking counselors, as well as options for deaf and hard of hearing individuals. It is only available in the United States.[49] A 24-hour Online Chat in partnership with Contact USA[50] is also available.\nThe National Suicide Prevention Lifeline can be reached at 1-800-273-8255. In July 2022, 988 will become the national three-digit dialing code for the National Suicide Prevention Lifeline, replacing the current phone number of 1-800-273-TALK (8255). Americans needing support should continue to call 1-800-273-TALK (8255) until then.\nT-Mobile US Customers can dial 988 to reach to the National Suicide Prevention Lifeline.[51]\nVerizon Wireless Customers can dial 988 to reach the National Suicide Prevention Lifeline.[52]\nNacional de Prevenci\u00f3n del Suicidio: 1-888-628-9454\nDeaf or Hard of Hearing: Use your preferred relay service or dial 711 then 1-800-273-8255[53]"
},
{
"phones": [
"tel:1-800-273-8255"
],
"description": "The National Suicide Prevention Lifeline can be reached at 1-800-273-8255. In July 2022, 988 will become the national three-digit dialing code for the National Suicide Prevention Lifeline, replacing the current phone number of 1-800-273-TALK (8255). Americans needing support should continue to call 1-800-273-TALK (8255) until then."
},
{
"phones": [
"tel:988"
],
"description": "T-Mobile US Customers can dial 988 to reach to the National Suicide Prevention Lifeline.[51]"
},
{
"phones": [
"tel:988"
],
"description": "Verizon Wireless Customers can dial 988 to reach the National Suicide Prevention Lifeline.[52]"
},
{
"phones": [],
"description": "Nacional de Prevenci\u00f3n del Suicidio: 1-888-628-9454"
},
{
"phones": [],
"description": "Deaf or Hard of Hearing: Use your preferred relay service or dial 711 then 1-800-273-8255[53]"
},
{
"phones": [
"tel:1-800-273-8255",
"tel:988",
"tel:988",
"tel:988"
],
"description": "The Veterans Crisis Line (https://www.veteranscrisisline.net/) is a 24-hour, toll-free hotline that provides phone, webchat, and text options available to military veterans and their families. It provides options for deaf and hard of hearing individuals.\nThe Veterans Crisis Line can be reached at 1-800-273-8255, followed by Pressing 1.\nThe hotline will be available to be reached by dialing 988 by July 2022. The 988 number is currently activated on T-Mobile US. Like calling the other phone number, the Veterans Crisis Line can be reached by pressing 1 after calling the 988 phone number.\nThe hotline can also be reached by texting to 838255."
},
{
"phones": [
"tel:1-800-273-8255"
],
"description": "The Veterans Crisis Line can be reached at 1-800-273-8255, followed by Pressing 1."
},
{
"phones": [
"tel:988",
"tel:988",
"tel:988"
],
"description": "The hotline will be available to be reached by dialing 988 by July 2022. The 988 number is currently activated on T-Mobile US. Like calling the other phone number, the Veterans Crisis Line can be reached by pressing 1 after calling the 988 phone number."
},
{
"phones": [],
"description": "The hotline can also be reached by texting to 838255."
},
{
"phones": [],
"description": "IMAlive Crisis Chatine (www.imalive.org) is a non-profit, worldwide 24/7, anonymous chatline to help anyone in crisis via instant messaging."
},
{
"phones": [],
"description": "The Crisis Text Line (crisistextline.org) is the only 24/7, nationwide crisis-intervention text-message hotline.[54]\nThe Crisis Text Line can be reached by texting HOME to 741-741."
},
{
"phones": [],
"description": "The Crisis Text Line can be reached by texting HOME to 741-741."
},
{
"phones": [],
"description": "Samaritans USA (http://www.samaritansusa.org/) is a registered charity aimed at providing emotional support to anyone in distress or at risk of suicide throughout the United States.[9]"
},
{
"phones": [
"tel:1-866-488-7386"
],
"description": " The Trevor Project (http://www.thetrevorproject.org/) is a nationwide organization that provides a 24-hour phone hotline, as well as 24-hour webchat and text options, for lesbian, gay, bisexual, transgender and questioning youth.[55]\nThe TrevorLifeline can be reached at 1-866-488-7386.\nTrevorChat can be found at https://www.thetrevorproject.org/get-help-now/\nTrevorText can be reached by texting START to 678-678"
},
{
"phones": [
"tel:1-866-488-7386"
],
"description": "The TrevorLifeline can be reached at 1-866-488-7386."
},
{
"phones": [],
"description": "TrevorChat can be found at https://www.thetrevorproject.org/get-help-now/"
},
{
"phones": [],
"description": "TrevorText can be reached by texting START to 678-678"
},
{
"phones": [
"tel:18775658860"
],
"description": "The Trans Lifeline (https://www.translifeline.org/) is a nonprofit organization that is created by and for the transgender community, providing crisis intervention hotlines, staffed by transgender individuals, available in the United States and Canada.\nThe Trans Lifeline can be reached at 1-877-565-8860.[23]"
},
{
"phones": [
"tel:18775658860"
],
"description": "The Trans Lifeline can be reached at 1-877-565-8860.[23]"
}
]
},
"Bahrain": {
"raw_html": "<ul><li><b><a href=\"/wiki/999_(emergency_telephone_number)\" title=\"999 (emergency telephone number)\">999</a> is the national emergency number in Bahrain.</b></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "999 is the national emergency number in Bahrain."
}
]
},
"Bangladesh": {
"raw_html": "<ul><li><b><a href=\"/wiki/999_(emergency_telephone_number)\" title=\"999 (emergency telephone number)\">999</a> is the national emergency number in Bangladesh. <a class=\"external text\" href=\"tel:199\" rel=\"nofollow\">199</a> is the national number for ambulance and fire.</b></li>\n<li><b><a href=\"/wiki/Kaan_Pete_Roi\" title=\"Kaan Pete Roi\">Kaan Pete Roi</a></b> (<a class=\"external free\" href=\"http://shuni.org/\" rel=\"nofollow\">http://shuni.org/</a>) is an emotional support helpline in Bangladesh whose mission is to alleviate feelings of despair, isolation, distress, and suicidal feelings among members of the community, through confidential listening. The helpline is intended for suicide prevention and the promotion of mental health.<sup class=\"reference\" id=\"cite_ref-17\"><a href=\"#cite_note-17\">[17]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:199"
],
"description": "999 is the national emergency number in Bangladesh. 199 is the national number for ambulance and fire."
},
{
"phones": [],
"description": "Kaan Pete Roi (http://shuni.org/) is an emotional support helpline in Bangladesh whose mission is to alleviate feelings of despair, isolation, distress, and suicidal feelings among members of the community, through confidential listening. The helpline is intended for suicide prevention and the promotion of mental health.[17]"
}
]
},
"Barbados": {
"raw_html": "<ul><li><b><a class=\"mw-redirect\" href=\"/wiki/911_(emergency_telephone_number)\" title=\"911 (emergency telephone number)\">211 is the number to contact police in Barbados.</a></b></li>\n<li><a class=\"external text\" href=\"tel:511\" rel=\"nofollow\">511</a> is the number to contact an ambulance in Barbados.</li>\n<li><a class=\"external text\" href=\"tel:311\" rel=\"nofollow\">311</a> is the number to contact a fire station for a fire truck in Barbados.</li>\n<li><b>Samaritans of Barbados</b>: <a class=\"external text\" href=\"tel:2464299999\" rel=\"nofollow\">(246) 4299999</a></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "211 is the number to contact police in Barbados."
},
{
"phones": [
"tel:511"
],
"description": "511 is the number to contact an ambulance in Barbados."
},
{
"phones": [
"tel:311"
],
"description": "311 is the number to contact a fire station for a fire truck in Barbados."
},
{
"phones": [
"tel:2464299999"
],
"description": "Samaritans of Barbados: (246) 4299999"
}
]
},
"Belarus": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:112\" rel=\"nofollow\">112</a></b> works on the territory of Belarus (works for tourists as well). Call <b><a class=\"external text\" href=\"tel:102\" rel=\"nofollow\">102</a></b> for police and <b><a class=\"external text\" href=\"tel:103\" rel=\"nofollow\">103</a></b> for ambulance if needed.</li>\n<li><b>For victims of violence at home:</b> <a class=\"external text\" href=\"tel:88011008801\" rel=\"nofollow\">8 801 100 8 801</a> (anonymous, 24/7).</li>\n<li><b>For children:</b> <a class=\"external text\" href=\"tel:8011001611\" rel=\"nofollow\">801-100-1611</a> (anonymous, 24/7).</li>\n<li>Other psychological help phones can be reached at (<a class=\"external text\" href=\"http://minzdrav.gov.by/ru/dlya-belorusskikh-grazhdan/ekstrennaya-psikhologicheskaya-pomoshch.php\" rel=\"nofollow\">minzdrav.gov.by</a>)</li></ul>",
"parsed_batches": [
{
"phones": [
"tel:112",
"tel:102",
"tel:103"
],
"description": "112 works on the territory of Belarus (works for tourists as well). Call 102 for police and 103 for ambulance if needed."
},
{
"phones": [
"tel:88011008801"
],
"description": "For victims of violence at home: 8 801 100 8 801 (anonymous, 24/7)."
},
{
"phones": [
"tel:8011001611"
],
"description": "For children: 801-100-1611 (anonymous, 24/7)."
},
{
"phones": [],
"description": "Other psychological help phones can be reached at (minzdrav.gov.by)"
}
]
},
"Belgium": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Belgium.</b></li>\n<li><b>Stichting <a class=\"new\" href=\"/w/index.php?title=Zelfmoordlijn_1813&action=edit&redlink=1\" title=\"Zelfmoordlijn 1813 (page does not exist)\">Zelfmoordlijn 1813</a></b> provides a 24/7 national suicide prevention phone line and a webchat everyday from 18:30 to 22:00 for Dutch language.<sup class=\"reference\" id=\"cite_ref-18\"><a href=\"#cite_note-18\">[18]</a></sup>\n<ul><li>Zelfmoordlijn 1813 hotline can be reached at <b><a class=\"external text\" href=\"tel:1813\" rel=\"nofollow\">1813</a></b>.</li>\n<li>Zelfmoordlijn 1813 limited webchat can be found at <b><a class=\"external free\" href=\"https://www.zelfmoord1813.be/chat-met-zelfmoordlijn-1813\" rel=\"nofollow\">https://www.zelfmoord1813.be/chat-met-zelfmoordlijn-1813</a></b>.</li></ul></li>\n<li><b>Stichting <a class=\"new\" href=\"/w/index.php?title=Centre_de_Pr%C3%A9vention_du_Suicide&action=edit&redlink=1\" title=\"Centre de Pr\u00e9vention du Suicide (page does not exist)\">Centre de Pr\u00e9vention du Suicide</a></b> provides a 24/7 national suicide prevention phone line for French language.<sup class=\"reference\" id=\"cite_ref-19\"><a href=\"#cite_note-19\">[19]</a></sup>\n<ul><li>The Center for the Prevention of Suicide hotline can be reached at <b><a class=\"external text\" href=\"tel:080032123\" rel=\"nofollow\">080032123</a></b>.</li>\n<li>The Center for the Prevention of Suicide website and Forum can be found at <b><a class=\"external free\" href=\"https://www.preventionsuicide.be/fr/j-ai-besoin-d-aide.html\" rel=\"nofollow\">https://www.preventionsuicide.be/fr/j-ai-besoin-d-aide.html</a></b>.</li></ul></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Belgium."
},
{
"phones": [
"tel:1813"
],
"description": "Stichting Zelfmoordlijn 1813 provides a 24/7 national suicide prevention phone line and a webchat everyday from 18:30 to 22:00 for Dutch language.[18]\nZelfmoordlijn 1813 hotline can be reached at 1813.\nZelfmoordlijn 1813 limited webchat can be found at https://www.zelfmoord1813.be/chat-met-zelfmoordlijn-1813."
},
{
"phones": [
"tel:1813"
],
"description": "Zelfmoordlijn 1813 hotline can be reached at 1813."
},
{
"phones": [],
"description": "Zelfmoordlijn 1813 limited webchat can be found at https://www.zelfmoord1813.be/chat-met-zelfmoordlijn-1813."
},
{
"phones": [
"tel:080032123"
],
"description": "Stichting Centre de Pr\u00e9vention du Suicide provides a 24/7 national suicide prevention phone line for French language.[19]\nThe Center for the Prevention of Suicide hotline can be reached at 080032123.\nThe Center for the Prevention of Suicide website and Forum can be found at https://www.preventionsuicide.be/fr/j-ai-besoin-d-aide.html."
},
{
"phones": [
"tel:080032123"
],
"description": "The Center for the Prevention of Suicide hotline can be reached at 080032123."
},
{
"phones": [],
"description": "The Center for the Prevention of Suicide website and Forum can be found at https://www.preventionsuicide.be/fr/j-ai-besoin-d-aide.html."
}
]
},
"Bolivia": {
"raw_html": "<ul><li><b><a class=\"mw-redirect\" href=\"/wiki/911_(emergency_telephone_number)\" title=\"911 (emergency telephone number)\">911</a> is the national emergency number in Bolivia.</b></li>\n<li><b>Tel\u00e9fono de la Esperanza</b> aims at promoting mental health to the Spanish and Portuguese-speaking world. Bolivians living in Cochabamba and La Paz can call <a class=\"external text\" href=\"tel:0059144254242\" rel=\"nofollow\">(00 591 4) 4 25 42 42</a> and <a class=\"external text\" href=\"tel:75288084\" rel=\"nofollow\">75288084</a>.<sup class=\"reference\" id=\"cite_ref-20\"><a href=\"#cite_note-20\">[20]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "911 is the national emergency number in Bolivia."
},
{
"phones": [
"tel:0059144254242",
"tel:75288084"
],
"description": "Tel\u00e9fono de la Esperanza aims at promoting mental health to the Spanish and Portuguese-speaking world. Bolivians living in Cochabamba and La Paz can call (00 591 4) 4 25 42 42 and 75288084.[20]"
}
]
},
"Botswana": {
"raw_html": "<ul><li><b><a class=\"mw-redirect\" href=\"/wiki/911_(emergency_telephone_number)\" title=\"911 (emergency telephone number)\">911</a> is the national emergency number in Botswana.</b></li>\n<li><b><a class=\"external text\" href=\"tel:3911270\" rel=\"nofollow\">3911270</a></b> is the national lifeline.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "911 is the national emergency number in Botswana."
},
{
"phones": [
"tel:3911270"
],
"description": "3911270 is the national lifeline."
}
]
},
"Brazil": {
"raw_html": "<ul><li><b><a class=\"new\" href=\"/w/index.php?title=188_(emergency_telephone_number)&action=edit&redlink=1\" title=\"188 (emergency telephone number) (page does not exist)\">188</a> is a national emergency number in Brazil.</b></li>\n<li><b><a class=\"external text\" href=\"tel:190\" rel=\"nofollow\">190</a> and <a class=\"external text\" href=\"tel:192\" rel=\"nofollow\">192</a> are the national emergency numbers for police and ambulances in Brazil.</b></li>\n<li><b>Centro de Valoriza\u00e7\u00e3o da Vida</b> (<a class=\"external free\" href=\"http://www.cvv.org.br/\" rel=\"nofollow\">http://www.cvv.org.br/</a>) is an emotional and suicidal prevention support NGO founded in 1962 in S\u00e3o Paulo, Brazil, and recognized as Federal Public Utility in 1973. It offers voluntary and free support, with all communications being confidential. Contacts can be made through the phone number <a class=\"external text\" href=\"tel:141\" rel=\"nofollow\">141</a> (available 24/7), personally (in one of the 72 centres around the country), chat (via their website), VoIP (via Skype) and e-mail.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "188 is a national emergency number in Brazil."
},
{
"phones": [
"tel:190",
"tel:192"
],
"description": "190 and 192 are the national emergency numbers for police and ambulances in Brazil."
},
{
"phones": [
"tel:141"
],
"description": "Centro de Valoriza\u00e7\u00e3o da Vida (http://www.cvv.org.br/) is an emotional and suicidal prevention support NGO founded in 1962 in S\u00e3o Paulo, Brazil, and recognized as Federal Public Utility in 1973. It offers voluntary and free support, with all communications being confidential. Contacts can be made through the phone number 141 (available 24/7), personally (in one of the 72 centres around the country), chat (via their website), VoIP (via Skype) and e-mail."
}
]
},
"Brunei": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:991\" rel=\"nofollow\">991</a> is the emergency number for ambulances</b></li>\n<li><b><a class=\"external text\" href=\"tel:993\" rel=\"nofollow\">993</a> is the emergency number for police</b></li>\n<li><b><a class=\"external text\" href=\"tel:145\" rel=\"nofollow\">145</a> is the national suicide hotline</b></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:991"
],
"description": "991 is the emergency number for ambulances"
},
{
"phones": [
"tel:993"
],
"description": "993 is the emergency number for police"
},
{
"phones": [
"tel:145"
],
"description": "145 is the national suicide hotline"
}
]
},
"Bulgaria": {
"raw_html": "<ul><li><b>Bulgarian Red Cross</b> (<a class=\"external free\" href=\"https://www.redcross.bg/activities/activities5/telefon.html\" rel=\"nofollow\">https://www.redcross.bg/activities/activities5/telefon.html</a>) is providing free consultations related to psycho-social issues and difficulties such as substance addiction, suicide prevention, depression and for people living with HIV/AIDS. The Red Cross can also be a first point of contact for situations related to human trafficking.</li>\n<li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Bulgaria.</b></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "Bulgarian Red Cross (https://www.redcross.bg/activities/activities5/telefon.html) is providing free consultations related to psycho-social issues and difficulties such as substance addiction, suicide prevention, depression and for people living with HIV/AIDS. The Red Cross can also be a first point of contact for situations related to human trafficking."
},
{
"phones": [],
"description": "112 is the national emergency number in Bulgaria."
}
]
},
"Canada": {
"raw_html": "<ul><li><b><a href=\"/wiki/9-1-1\" title=\"9-1-1\">911</a> is the national emergency number in Canada.</b></li>\n<li><b><a href=\"/wiki/Kids_Help_Phone\" title=\"Kids Help Phone\">Kids Help Phone</a></b> (<a class=\"external free\" href=\"https://kidshelpphone.ca/\" rel=\"nofollow\">https://kidshelpphone.ca/</a>) is a free 24/7 national support service that provides confidential professional counselling, information, referrals and volunteer-led, text-based support to young people in both English and French.</li>\n<li><b><a class=\"new\" href=\"/w/index.php?title=Canada_Suicide_Prevention_Service&action=edit&redlink=1\" title=\"Canada Suicide Prevention Service (page does not exist)\">Canada Suicide Prevention Service</a></b> can be reached at <a class=\"external text\" href=\"tel:18334564566\" rel=\"nofollow\"><b>1-833-456-4566</b></a> or <b><a class=\"external text\" href=\"sms:45645\" rel=\"nofollow\">45645</a></b> (Text, 4 p.m. to midnight ET only) (<a class=\"external free\" href=\"http://www.crisisservicescanada.ca/\" rel=\"nofollow\">http://www.crisisservicescanada.ca/</a>) nationwide suicide prevention and support network.<sup class=\"reference\" id=\"cite_ref-21\"><a href=\"#cite_note-21\">[21]</a></sup></li>\n<li><b><a href=\"/wiki/Crisis_Text_Line\" title=\"Crisis Text Line\">Crisis Text Line</a></b> powered by Kids Help Phone (<a class=\"external text\" href=\"http://crisistextline.ca/\" rel=\"nofollow\">crisistextline.ca</a>) is a free, confidential 24/7 national crisis-intervention text-message service.<sup class=\"reference\" id=\"cite_ref-22\"><a href=\"#cite_note-22\">[22]</a></sup> It can be reached by texting <b>HOME</b> (English) or <b>PARLER</b> (French) to <b><a class=\"external text\" href=\"sms:686868\" rel=\"nofollow\">686868</a></b>.</li>\n<li><span class=\"flagicon\"><img alt=\"\" class=\"thumbborder\" data-file-height=\"307\" data-file-width=\"512\" decoding=\"async\" height=\"14\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Transgender_Pride_flag.svg/23px-Transgender_Pride_flag.svg.png\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Transgender_Pride_flag.svg/35px-Transgender_Pride_flag.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Transgender_Pride_flag.svg/46px-Transgender_Pride_flag.svg.png 2x\" width=\"23\"/></span><b><a href=\"/wiki/Trans_Lifeline\" title=\"Trans Lifeline\">Trans Lifeline</a></b> (<a class=\"external free\" href=\"http://www.translifeline.org/\" rel=\"nofollow\">http://www.translifeline.org/</a>) is a toll-free crisis hotline available in the United States and in Canada for transgender people staffed by transgender people. It can be reached at <a class=\"external text\" href=\"tel:18773306366\" rel=\"nofollow\"><b>1-877-330-6366</b></a>.<sup class=\"reference\" id=\"cite_ref-blog_23-0\"><a href=\"#cite_note-blog-23\">[23]</a></sup></li>\n<li>The <a href=\"/wiki/Canadian_Association_for_Suicide_Prevention\" title=\"Canadian Association for Suicide Prevention\">Canadian Association for Suicide Prevention</a> (<a class=\"external free\" href=\"https://suicideprevention.ca\" rel=\"nofollow\">https://suicideprevention.ca</a>) maintains a Canada-wide list of phone numbers and websites related to suicide prevention.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "911 is the national emergency number in Canada."
},
{
"phones": [],
"description": "Kids Help Phone (https://kidshelpphone.ca/) is a free 24/7 national support service that provides confidential professional counselling, information, referrals and volunteer-led, text-based support to young people in both English and French."
},
{
"phones": [
"tel:18334564566"
],
"description": "Canada Suicide Prevention Service can be reached at 1-833-456-4566 or 45645 (Text, 4 p.m. to midnight ET only) (http://www.crisisservicescanada.ca/) nationwide suicide prevention and support network.[21]"
},
{
"phones": [],
"description": "Crisis Text Line powered by Kids Help Phone (crisistextline.ca) is a free, confidential 24/7 national crisis-intervention text-message service.[22] It can be reached by texting HOME (English) or PARLER (French) to 686868."
},
{
"phones": [
"tel:18773306366"
],
"description": "Trans Lifeline (http://www.translifeline.org/) is a toll-free crisis hotline available in the United States and in Canada for transgender people staffed by transgender people. It can be reached at 1-877-330-6366.[23]"
},
{
"phones": [],
"description": "The Canadian Association for Suicide Prevention (https://suicideprevention.ca) maintains a Canada-wide list of phone numbers and websites related to suicide prevention."
}
]
},
"Chile": {
"raw_html": "<ul><li><b>Ministerio de Salud:</b> Telefono <a class=\"external text\" href=\"tel:6003607777\" rel=\"nofollow\">600 360 7777</a></li>\n<li><b>Saludable Mente:</b> <a class=\"external free\" href=\"https://gob.cl/saludablemente/\" rel=\"nofollow\">https://gob.cl/saludablemente/</a></li>\n<li><b>Todo Mejora:</b> <a class=\"external free\" href=\"https://todomejora.org/apoyo/\" rel=\"nofollow\">https://todomejora.org/apoyo/</a></li>\n<li><b>Fundacion Vinculos:</b> Telefono: <a class=\"external text\" href=\"tel:56222442533\" rel=\"nofollow\">5622 2442 533</a> y <a class=\"external text\" href=\"tel:56982481971\" rel=\"nofollow\">5698 2481 971</a></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:6003607777"
],
"description": "Ministerio de Salud: Telefono 600 360 7777"
},
{
"phones": [],
"description": "Saludable Mente: https://gob.cl/saludablemente/"
},
{
"phones": [],
"description": "Todo Mejora: https://todomejora.org/apoyo/"
},
{
"phones": [
"tel:56222442533",
"tel:56982481971"
],
"description": "Fundacion Vinculos: Telefono: 5622 2442 533 y 5698 2481 971"
}
]
},
"China": {
"raw_html": "<ul><li><b><a class=\"mw-redirect\" href=\"/wiki/1-1-0\" title=\"1-1-0\">110</a> is the national emergency number in mainland China.</b></li>\n<li><b>Beijing Suicide Research and Prevention Center</b> (<a class=\"external free\" href=\"http://www.crisis.org.cn\" rel=\"nofollow\">http://www.crisis.org.cn</a>), a World Health Organization Collaborating Centre for Research and Training in Suicide Prevention, available 24/7 at <a class=\"external text\" href=\"tel:8008101117\" rel=\"nofollow\">800-810-1117</a> (for landline callers) or <a class=\"external text\" href=\"tel:01082951332\" rel=\"nofollow\">010-8295-1332</a> (for mobile and <a href=\"/wiki/Voice_over_IP\" title=\"Voice over IP\">VoIP</a> callers)</li>\n<li><b>Lifeline China</b> (<a class=\"external free\" href=\"https://www.lifelinechina.org/\" rel=\"nofollow\">https://www.lifelinechina.org/</a>) available 10am to 10pm every day at <a class=\"external text\" href=\"tel:4008211215\" rel=\"nofollow\">400 821 1215</a>.</li>\n<li><b><a href=\"/wiki/Shanghai_Mental_Health_Center\" title=\"Shanghai Mental Health Center\">Shanghai Mental Health Center</a></b> (<a class=\"external free\" href=\"http://www.smhc.org.cn\" rel=\"nofollow\">http://www.smhc.org.cn</a>) serves as a mental health clinic as well as teaching, researching and planning mental health prevention throughout China. They can be reached at <a class=\"external text\" href=\"tel:02164387250\" rel=\"nofollow\">021\u201364387250</a>.</li>\n<li><a class=\"extiw\" href=\"https://zh.wikipedia.org/wiki/%E6%B7%B1%E5%9C%B3%E5%B8%82%E5%BA%B7%E5%AE%81%E5%8C%BB%E9%99%A2\" title=\"zh:\u6df1\u5733\u5e02\u5eb7\u5b81\u533b\u9662\"><b>Shenzhen Mental Health Center</b></a> (<a class=\"external free\" href=\"http://www.szknyy.com/\" rel=\"nofollow\">http://www.szknyy.com/</a>) free professional counseling available 24/7 at <a class=\"external text\" href=\"tel:075525629459\" rel=\"nofollow\">0755-25629459</a></li>\n<li><b>Guangzhou Crisis Research and Intervention Center</b> (<a class=\"external free\" href=\"http://www.gzcrisis.com/\" rel=\"nofollow\">http://www.gzcrisis.com/</a>) available 24/7 at <a class=\"external text\" href=\"tel:02081899120\" rel=\"nofollow\">020-81899120</a> or <a class=\"external text\" href=\"tel:020123205\" rel=\"nofollow\">020-12320-5</a>, online counseling is also available with <a class=\"mw-redirect\" href=\"/wiki/QQ\" title=\"QQ\">QQ</a> messenger at 1661042151</li>\n<li><b>Mental Health Center of School of Medicine of Zhejiang University</b> (<a class=\"external free\" href=\"http://www.hz7hospital.com/\" rel=\"nofollow\">http://www.hz7hospital.com/</a>) available 24/7 at <a class=\"external text\" href=\"tel:057185029595\" rel=\"nofollow\">0571-85029595</a></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "110 is the national emergency number in mainland China."
},
{
"phones": [
"tel:8008101117",
"tel:01082951332"
],
"description": "Beijing Suicide Research and Prevention Center (http://www.crisis.org.cn), a World Health Organization Collaborating Centre for Research and Training in Suicide Prevention, available 24/7 at 800-810-1117 (for landline callers) or 010-8295-1332 (for mobile and VoIP callers)"
},
{
"phones": [
"tel:4008211215"
],
"description": "Lifeline China (https://www.lifelinechina.org/) available 10am to 10pm every day at 400 821 1215."
},
{
"phones": [
"tel:02164387250"
],
"description": "Shanghai Mental Health Center (http://www.smhc.org.cn) serves as a mental health clinic as well as teaching, researching and planning mental health prevention throughout China. They can be reached at 021\u201364387250."
},
{
"phones": [
"tel:075525629459"
],
"description": "Shenzhen Mental Health Center (http://www.szknyy.com/) free professional counseling available 24/7 at 0755-25629459"
},
{
"phones": [
"tel:02081899120",
"tel:020123205"
],
"description": "Guangzhou Crisis Research and Intervention Center (http://www.gzcrisis.com/) available 24/7 at 020-81899120 or 020-12320-5, online counseling is also available with QQ messenger at 1661042151"
},
{
"phones": [
"tel:057185029595"
],
"description": "Mental Health Center of School of Medicine of Zhejiang University (http://www.hz7hospital.com/) available 24/7 at 0571-85029595"
}
]
},
"Colombia": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:123\" rel=\"nofollow\">123</a> is the national emergency number in Colombia.</b></li>\n<li><b><a class=\"external text\" href=\"tel:106\" rel=\"nofollow\">106</a></b> provides support for issues such as depression, alcoholism, drug abuse, and suicide that traditional centers might not accomplish.<sup class=\"reference\" id=\"cite_ref-24\"><a href=\"#cite_note-24\">[24]</a></sup></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:123"
],
"description": "123 is the national emergency number in Colombia."
},
{
"phones": [
"tel:106"
],
"description": "106 provides support for issues such as depression, alcoholism, drug abuse, and suicide that traditional centers might not accomplish.[24]"
}
]
},
"Croatia": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Croatia.</b></li>\n<li><b>Plavi Telefon</b> (<span class=\"url\"><a class=\"external text\" href=\"http://www.plavi-telefon.hr\" rel=\"nofollow\">www<wbr/>.plavi-telefon<wbr/>.hr</a></span>) can be called at <a class=\"external text\" href=\"tel:4833888\" rel=\"nofollow\">48 33 888</a> and aim to provide support for issues such as depression, alcoholism, drug abuse and suicide that traditional centers might not accomplish.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Croatia."
},
{
"phones": [
"tel:4833888"
],
"description": "Plavi Telefon (www.plavi-telefon.hr) can be called at 48 33 888 and aim to provide support for issues such as depression, alcoholism, drug abuse and suicide that traditional centers might not accomplish."
}
]
},
"Cuba": {
"raw_html": "<ul><li><b><a class=\"new\" href=\"/w/index.php?title=104_(emergency_telephone_number)&action=edit&redlink=1\" title=\"104 (emergency telephone number) (page does not exist)\">104</a> Ambulance</b></li>\n<li><b><a class=\"new\" href=\"/w/index.php?title=105_(emergency_telephone_number)&action=edit&redlink=1\" title=\"105 (emergency telephone number) (page does not exist)\">105</a> Fire</b></li>\n<li><b><a href=\"/wiki/106_(emergency_telephone_number)\" title=\"106 (emergency telephone number)\">106</a> Police</b></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "104 Ambulance"
},
{
"phones": [],
"description": "105 Fire"
},
{
"phones": [],
"description": "106 Police"
}
]
},
"Cyprus": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> and <a class=\"external text\" href=\"tel:199\" rel=\"nofollow\">199</a> are the national emergency numbers in Cyprus.</b></li>\n<li><b>Cyprus Samaritans</b> (<a class=\"external text\" href=\"http://www.cyprussamaritans.org/\" rel=\"nofollow\">http://www.cyprussamaritans.org</a>) is available every day from 4pm to 12am and is confidential. They can be reached at <a class=\"external text\" href=\"tel:80007773\" rel=\"nofollow\">8000 7773</a>.</li></ul>",
"parsed_batches": [
{
"phones": [
"tel:199"
],
"description": "112 and 199 are the national emergency numbers in Cyprus."
},
{
"phones": [
"tel:80007773"
],
"description": "Cyprus Samaritans (http://www.cyprussamaritans.org) is available every day from 4pm to 12am and is confidential. They can be reached at 8000 7773."
}
]
},
"Denmark": {
"raw_html": "<ul><li><b>Livslinien (<a class=\"external free\" href=\"https://www.livslinien.dk\" rel=\"nofollow\">https://www.livslinien.dk</a>) offers telephone support 11am-4am on <a class=\"external text\" href=\"tel:70201201\" rel=\"nofollow\">70 201 201</a>, or online chat</b></li>\n<li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Denmark.</b></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:70201201"
],
"description": "Livslinien (https://www.livslinien.dk) offers telephone support 11am-4am on 70 201 201, or online chat"
},
{
"phones": [],
"description": "112 is the national emergency number in Denmark."
}
]
},
"Ecuador": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:911\" rel=\"nofollow\">911</a> is the national emergency number in Ecuador.</b></li>\n<li><b>Tel\u00e9fono Amigo</b> (<a class=\"external free\" href=\"http://www.telefonoamigo.org/\" rel=\"nofollow\">http://www.telefonoamigo.org/</a>) is available every day from 09h to 13h and from 15h to 23h. Their hotlines can be called nationwide.</li></ul>",
"parsed_batches": [
{
"phones": [
"tel:911"
],
"description": "911 is the national emergency number in Ecuador."
},
{
"phones": [],
"description": "Tel\u00e9fono Amigo (http://www.telefonoamigo.org/) is available every day from 09h to 13h and from 15h to 23h. Their hotlines can be called nationwide."
}
]
},
"Egypt": {
"raw_html": "<ul><li><b><a class=\"new\" href=\"/w/index.php?title=122_(National_emergency_telephone_number)&action=edit&redlink=1\" title=\"122 (National emergency telephone number) (page does not exist)\">122</a> is the national emergency number for police in Egypt.</b></li>\n<li><b><a class=\"new\" href=\"/w/index.php?title=123_(National_Emergency_Number)&action=edit&redlink=1\" title=\"123 (National Emergency Number) (page does not exist)\">123</a> is the national emergency number for emergency health services in Egypt</b></li>\n<li><b><a class=\"new\" href=\"/w/index.php?title=126_(Foreigners_emergency_telephone_number)&action=edit&redlink=1\" title=\"126 (Foreigners emergency telephone number) (page does not exist)\">126</a> is the foreigners emergency number in Egypt.</b></li>\n<li><a class=\"external free\" href=\"https://befrienderscairo.com/\" rel=\"nofollow\">https://befrienderscairo.com/</a>, <b>BeFrienders in Cairo, Egypt</b>, along with their two hotlines: <b><a class=\"external text\" href=\"tel:7621602\" rel=\"nofollow\">762 1602</a>, <a class=\"external text\" href=\"tel:7621603\" rel=\"nofollow\">762 1603</a> and <a class=\"external text\" href=\"tel:7622381\" rel=\"nofollow\">762 2381</a>. </b></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "122 is the national emergency number for police in Egypt."
},
{
"phones": [],
"description": "123 is the national emergency number for emergency health services in Egypt"
},
{
"phones": [],
"description": "126 is the foreigners emergency number in Egypt."
},
{
"phones": [
"tel:7621602",
"tel:7621603",
"tel:7622381"
],
"description": "https://befrienderscairo.com/, BeFrienders in Cairo, Egypt, along with their two hotlines: 762 1602, 762 1603 and 762 2381. "
}
]
},
"Estonia": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Estonia.</b></li>\n<li><b>Eluliin</b> (<a class=\"external free\" href=\"http://www.eluliin.ee/\" rel=\"nofollow\">http://www.eluliin.ee/</a>) provides emotional support for those suffering from depression and relationship issues. They are available from 7pm to 7am; The number is <a class=\"external text\" href=\"tel:6558088\" rel=\"nofollow\">655 8088</a> if you wish to call in Estonian, <a class=\"external text\" href=\"tel:6555688\" rel=\"nofollow\">655 5688</a> in Russian.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Estonia."
},
{
"phones": [
"tel:6558088",
"tel:6555688"
],
"description": "Eluliin (http://www.eluliin.ee/) provides emotional support for those suffering from depression and relationship issues. They are available from 7pm to 7am; The number is 655 8088 if you wish to call in Estonian, 655 5688 in Russian."
}
]
},
"Fiji": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:917\" rel=\"nofollow\">917</a> is the national emergency number in Fiji.</b></li>\n<li>Lifeline Fiji runs the National Crisis Line, Crisis Support, and Suicide Intervention line. Free calls at any time on <a class=\"external text\" href=\"tel:132454\" rel=\"nofollow\">132454</a></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:917"
],
"description": "917 is the national emergency number in Fiji."
},
{
"phones": [
"tel:132454"
],
"description": "Lifeline Fiji runs the National Crisis Line, Crisis Support, and Suicide Intervention line. Free calls at any time on 132454"
}
]
},
"Finland": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in Finland.</b></li>\n<li><b>Finnish Association for Mental Health</b> has provided assistance and support for those dealing with mental health issues and suicide since 1897. They can be reached at <a class=\"external text\" href=\"tel:010195202\" rel=\"nofollow\">010 195 202</a> (Finnish) or <a class=\"external text\" href=\"tel:0941350501\" rel=\"nofollow\">(09) 4135 0501</a> (foreigners).</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in Finland."
},
{
"phones": [
"tel:010195202",
"tel:0941350501"
],
"description": "Finnish Association for Mental Health has provided assistance and support for those dealing with mental health issues and suicide since 1897. They can be reached at 010 195 202 (Finnish) or (09) 4135 0501 (foreigners)."
}
]
},
"France": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number in France, 15 is the number for ambulances, 114 for all emergency services for deaf using FAX or SMS and 17 is for police.</b></li>\n<li><a class=\"external text\" href=\"http://www.filsantejeunes.com/\" rel=\"nofollow\"><b>Fil sant\u00e9 jeunes</b></a>\u00a0: <a class=\"external text\" href=\"tel:0800235236\" rel=\"nofollow\">0800 235 236</a>\u00a0: anonymous and toll-free number for young people.</li>\n<li><a class=\"external text\" href=\"https://suicideecoute.pads.fr/accueil\" rel=\"nofollow\"><b>Suicide \u00e9coute</b></a>\u00a0: <a class=\"external text\" href=\"tel:0145394000\" rel=\"nofollow\">01 45 39 40 00</a> (24-hour)\u00a0: suicide prevention helpline (volunteers).</li>\n<li><a class=\"external text\" href=\"https://www.sos-suicide-phenix.org/\" rel=\"nofollow\"><b>SOS Suicide Ph\u00e9nix</b></a>: <a class=\"external text\" href=\"tel:0140444645\" rel=\"nofollow\">01 40 44 46 45</a> (schedule)\u00a0: suicide prevention through listening and hospitality (volunteers).</li>\n<li><a class=\"external text\" href=\"https://www.sos-amitie.com/\" rel=\"nofollow\"><b>Sos amiti\u00e9</b></a>\u00a0: distress listening on multimedia platform\u00a0: phone, email, chat (volunteers).</li>\n<li><a class=\"external text\" href=\"http://www.croix-rouge.fr/Nos-actions/Action-sociale/Ecoute-acces-aux-droits/Telephonie-sociale\" rel=\"nofollow\"><b>La Croix Rouge Ecoute</b></a>\u00a0: <a class=\"external text\" href=\"tel:0800858858\" rel=\"nofollow\">0 800 858 858</a>\u00a0: psychological support online, anonymous and free (volunteers).</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number in France, 15 is the number for ambulances, 114 for all emergency services for deaf using FAX or SMS and 17 is for police."
},
{
"phones": [
"tel:0800235236"
],
"description": "Fil sant\u00e9 jeunes\u00a0: 0800 235 236\u00a0: anonymous and toll-free number for young people."
},
{
"phones": [
"tel:0145394000"
],
"description": "Suicide \u00e9coute\u00a0: 01 45 39 40 00 (24-hour)\u00a0: suicide prevention helpline (volunteers)."
},
{
"phones": [
"tel:0140444645"
],
"description": "SOS Suicide Ph\u00e9nix: 01 40 44 46 45 (schedule)\u00a0: suicide prevention through listening and hospitality (volunteers)."
},
{
"phones": [],
"description": "Sos amiti\u00e9\u00a0: distress listening on multimedia platform\u00a0: phone, email, chat (volunteers)."
},
{
"phones": [
"tel:0800858858"
],
"description": "La Croix Rouge Ecoute\u00a0: 0 800 858 858\u00a0: psychological support online, anonymous and free (volunteers)."
}
]
},
"Germany": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number for fire and ambulance in Germany.</b></li>\n<li><b><a class=\"new\" href=\"/w/index.php?title=110_(police)&action=edit&redlink=1\" title=\"110 (police) (page does not exist)\">110</a> is the national emergency number for police.</b></li>\n<li><b>Telefonseelsorge</b> (<a class=\"external free\" href=\"http://www.telefonseelsorge.de/\" rel=\"nofollow\">http://www.telefonseelsorge.de/</a>) (24/7, no cost): <a class=\"external text\" href=\"tel:08001110111\" rel=\"nofollow\">0800 111 0 111</a>, or <a class=\"external text\" href=\"tel:08001110222\" rel=\"nofollow\">0800 111 0 222</a>, or <a class=\"external text\" href=\"tel:116123\" rel=\"nofollow\">116 123</a>, or by online chat at <a class=\"external free\" href=\"https://online.telefonseelsorge.de/\" rel=\"nofollow\">https://online.telefonseelsorge.de/</a></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "112 is the national emergency number for fire and ambulance in Germany."
},
{
"phones": [],
"description": "110 is the national emergency number for police."
},
{
"phones": [
"tel:08001110111",
"tel:08001110222",
"tel:116123"
],
"description": "Telefonseelsorge (http://www.telefonseelsorge.de/) (24/7, no cost): 0800 111 0 111, or 0800 111 0 222, or 116 123, or by online chat at https://online.telefonseelsorge.de/"
}
]
},
"Ghana": {
"raw_html": "<ul><li><b><a href=\"/wiki/999_(emergency_telephone_number)\" title=\"999 (emergency telephone number)\">999</a> is the national emergency number in Ghana.</b></li>\n<li><b>National Lifeline:</b> <a class=\"external text\" href=\"tel:233244471279\" rel=\"nofollow\">2332 444 71279</a></li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "999 is the national emergency number in Ghana."
},
{
"phones": [
"tel:233244471279"
],
"description": "National Lifeline: 2332 444 71279"
}
]
},
"Greece": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:1018\" rel=\"nofollow\">1018</a> is the Suicide hotline. (<a class=\"external text\" href=\"http://suicide-help.gr\" rel=\"nofollow\">http://suicide-</a><a class=\"external text\" href=\"http://suicide-help.gr\" rel=\"nofollow\">help.gr</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:112\" rel=\"nofollow\">112</a> is the National emergency number.</b> <b>(<a class=\"external text\" href=\"https://112.gr/en-us/\" rel=\"nofollow\">https://112.gr</a><a class=\"external text\" href=\"https://112.gr/en-us/\" rel=\"nofollow\">/en-us/</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:100\" rel=\"nofollow\">100</a></b> <b>is the Police emergency number.</b> <b>(<a class=\"external free\" href=\"http://www.astynomia.gr\" rel=\"nofollow\">http://www.astynomia.gr</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:199\" rel=\"nofollow\">199</a></b> <b>is the Fire emergency number.</b> <b>(<a class=\"external text\" href=\"https://www.fireservice.gr\" rel=\"nofollow\">ht</a><a class=\"external text\" href=\"https://www.fireservice.gr\" rel=\"nofollow\">tps://www.fireservice.gr</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:166\" rel=\"nofollow\">166</a> is the Ambulance emergency number. (<a class=\"external free\" href=\"https://www.ekab.gr/\" rel=\"nofollow\">https://www.ekab.gr/</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:1065\" rel=\"nofollow\">1065</a> is the SOS Lifeline for the elderly. (<a class=\"external text\" href=\"http://www.lifelinehellas.gr/\" rel=\"nofollow\">http://www.lifelinehel</a><a class=\"external text\" href=\"http://www.lifelinehellas.gr/\" rel=\"nofollow\">las.gr</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:11188\" rel=\"nofollow\">11188</a></b> <b>is the Cyber Crime Division.</b> <b>(<a class=\"external text\" href=\"https://cyberalert.gr/\" rel=\"nofollow\">https://cyberal</a><a class=\"external text\" href=\"https://cyberalert.gr/\" rel=\"nofollow\">ert.gr/</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:1056\" rel=\"nofollow\">1056</a> is the National Helpline for Children. (<a class=\"external text\" href=\"https://www.hamogelo.gr/gr/en/sos-1056/\" rel=\"nofollow\">https://www.hamogelo.gr/gr/en/so</a><a class=\"external text\" href=\"https://www.hamogelo.gr/gr/en/sos-1056/\" rel=\"nofollow\">s-1056/</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:15900\" rel=\"nofollow\">15900</a> is the General Secretariat for Family Policy and Gender Equality. (<a class=\"external text\" href=\"http://www.isotita.gr/en/home/\" rel=\"nofollow\">http://www.isotita.gr/e</a><a class=\"external text\" href=\"http://www.isotita.gr/en/home/\" rel=\"nofollow\">n/home/</a>)</b></li>\n<li><b><a class=\"external text\" href=\"tel:11528\" rel=\"nofollow\">11528</a> is the Open support line for the LGBT community. (<a class=\"external autonumber\" href=\"https://help.unhcr.org/greece/el/where-to-seek-help/emergency-services/\" rel=\"nofollow\">[2]</a><a class=\"external autonumber\" href=\"https://help.unhcr.org/greece/el/where-to-seek-help/emergency-services\" rel=\"nofollow\">[3]</a>)</b></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:1018"
],
"description": "1018 is the Suicide hotline. (http://suicide-help.gr)"
},
{
"phones": [
"tel:112"
],
"description": "112 is the National emergency number. (https://112.gr/en-us/)"
},
{
"phones": [
"tel:100"
],
"description": "100 is the Police emergency number. (http://www.astynomia.gr)"
},
{
"phones": [
"tel:199"
],
"description": "199 is the Fire emergency number. (https://www.fireservice.gr)"
},
{
"phones": [
"tel:166"
],
"description": "166 is the Ambulance emergency number. (https://www.ekab.gr/)"
},
{
"phones": [
"tel:1065"
],
"description": "1065 is the SOS Lifeline for the elderly. (http://www.lifelinehellas.gr)"
},
{
"phones": [
"tel:11188"
],
"description": "11188 is the Cyber Crime Division. (https://cyberalert.gr/)"
},
{
"phones": [
"tel:1056"
],
"description": "1056 is the National Helpline for Children. (https://www.hamogelo.gr/gr/en/sos-1056/)"
},
{
"phones": [
"tel:15900"
],
"description": "15900 is the General Secretariat for Family Policy and Gender Equality. (http://www.isotita.gr/en/home/)"
},
{
"phones": [
"tel:11528"
],
"description": "11528 is the Open support line for the LGBT community. ([2][3])"
}
]
},
"Greenland": {
"raw_html": "<ul><li><b><a class=\"external text\" href=\"tel:134\" rel=\"nofollow\">134</a> is the national crisis number for Greenland.</b></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:134"
],
"description": "134 is the national crisis number for Greenland."
}
]
},
"Guyana": {
"raw_html": "<ul><li><b><a href=\"/wiki/999_(emergency_telephone_number)\" title=\"999 (emergency telephone number)\">999</a> is the national emergency number in Guyana.</b></li>\n<li><b>Inter-agency Suicide Prevention Help Line</b> was launched by the Guyana Police Force in 2015 to help those struggling with depression.<sup class=\"reference\" id=\"cite_ref-25\"><a href=\"#cite_note-25\">[25]</a></sup> They can be reached 24 hours a day by calling <a class=\"external text\" href=\"tel:2230001\" rel=\"nofollow\">223\u20130001</a>, <a class=\"external text\" href=\"tel:2230009\" rel=\"nofollow\">223\u20130009</a>, or <a class=\"external text\" href=\"tel:2230818\" rel=\"nofollow\">223\u20130818</a>, as well as <a class=\"external text\" href=\"tel:6007896\" rel=\"nofollow\">600-7896</a> or <a class=\"external text\" href=\"tel:6234444\" rel=\"nofollow\">623-4444</a> by cellphone.</li></ul>",
"parsed_batches": [
{
"phones": [],
"description": "999 is the national emergency number in Guyana."
},
{
"phones": [
"tel:2230001",
"tel:2230009",
"tel:2230818",
"tel:6007896",
"tel:6234444"
],
"description": "Inter-agency Suicide Prevention Help Line was launched by the Guyana Police Force in 2015 to help those struggling with depression.[25] They can be reached 24 hours a day by calling 223\u20130001, 223\u20130009, or 223\u20130818, as well as 600-7896 or 623-4444 by cellphone."
}
]
},
"Hungary": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number for Hungary. Call <a class=\"external text\" href=\"tel:112\" rel=\"nofollow\">112</a></b></li>\n<li><b>LESZ (<a class=\"external free\" href=\"https://sos116-123.hu/\" rel=\"nofollow\">https://sos116-123.hu/</a>):</b> Call <a class=\"external text\" href=\"tel:116123\" rel=\"nofollow\">116-123</a> or <a class=\"external text\" href=\"tel:0680810600\" rel=\"nofollow\">06 80 810-600</a> 24/7, E-mail: sos116123@gmail.com - Anonym helpline providing emotional support for those who are stressed, distressed, depressed, or suicidal. The association works together with 22 services to provide the necessary help.</li>\n<li><b>Blue Line (<a class=\"external free\" href=\"https://kek-vonal.hu/\" rel=\"nofollow\">https://kek-vonal.hu/</a>):</b> Call <a class=\"external text\" href=\"tel:116111\" rel=\"nofollow\">116-111</a> 24/7 - Anonym child crisis helpline providing emotional support for young people who are in need of someone to listen to them, provide comfort, give suggestions or if they're just simply curious about topics regarding their surrounding. Chat and E-mail available on the website, but registration is needed. Adults concerned about the mental or physical safety of children can call <a class=\"external text\" href=\"tel:116000\" rel=\"nofollow\">116-000</a></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:112"
],
"description": "112 is the national emergency number for Hungary. Call 112"
},
{
"phones": [
"tel:116123",
"tel:0680810600"
],
"description": "LESZ (https://sos116-123.hu/): Call 116-123 or 06 80 810-600 24/7, E-mail: sos116123@gmail.com - Anonym helpline providing emotional support for those who are stressed, distressed, depressed, or suicidal. The association works together with 22 services to provide the necessary help."
},
{
"phones": [
"tel:116111",
"tel:116000"
],
"description": "Blue Line (https://kek-vonal.hu/): Call 116-111 24/7 - Anonym child crisis helpline providing emotional support for young people who are in need of someone to listen to them, provide comfort, give suggestions or if they're just simply curious about topics regarding their surrounding. Chat and E-mail available on the website, but registration is needed. Adults concerned about the mental or physical safety of children can call 116-000"
}
]
},
"Iceland": {
"raw_html": "<ul><li><b>National Emergency Number:</b> Call <a class=\"external text\" href=\"tel:112\" rel=\"nofollow\">112</a></li>\n<li><b>Hj\u00e1lpars\u00edmi Rau\u00f0a Krossins (Suicide help line):<sup class=\"reference\" id=\"cite_ref-26\"><a href=\"#cite_note-26\">[26]</a></sup></b> Call <a class=\"external text\" href=\"tel:1717\" rel=\"nofollow\">1717</a> Website: <a class=\"external free\" href=\"https://www.raudikrossinn.is/hvad-gerum-vid/hjalparsiminn-1717/hvad-gerum-vid-3\" rel=\"nofollow\">https://www.raudikrossinn.is/hvad-gerum-vid/hjalparsiminn-1717/hvad-gerum-vid-3</a></li></ul>",
"parsed_batches": [
{
"phones": [
"tel:112"
],
"description": "National Emergency Number: Call 112"
},
{
"phones": [
"tel:1717"
],
"description": "Hj\u00e1lpars\u00edmi Rau\u00f0a Krossins (Suicide help line):[26] Call 1717 Website: https://www.raudikrossinn.is/hvad-gerum-vid/hjalparsiminn-1717/hvad-gerum-vid-3"
}
]
},
"India": {
"raw_html": "<ul><li><b><a href=\"/wiki/112_(emergency_telephone_number)\" title=\"112 (emergency telephone number)\">112</a> is the national emergency number for India. Call <a class=\"external text\" href=\"tel:112\" rel=\"nofollow\">112</a>.</b></li>\n<li><b>Samaritans Mumbai:</b> (<b><a class=\"external text\" href=\"http://samaritansmumbai.org/\" rel=\"nofollow\">samaritansmumbai.com</a></b>) - <b><a class=\"external text\" href=\"tel:+918422984528\" rel=\"nofollow\">+91 8422984528</a>, <a class=\"external text\" href=\"tel:+918422984529\" rel=\"nofollow\">+91 8422984529</a>, <a class=\"external text\" href=\"tel:+918422984530\" rel=\"nofollow\">+91 8422984530</a></b> - 3 pm to 9 pm, all days. <b>samaritans.helpline@gmail.com. Helpline providing emotional support for those who are stressed, distressed, depressed, or suicidal.</b></li>\n<li><b>Mitram Foundation:</b> (<b><a class=\"external text\" href=\"https://www.mitramfoundation.org/\" rel=\"nofollow\">mitramfoundation.org</a></b>) - <b><a class=\"external text\" href=\"tel:+918025722573\" rel=\"nofollow\">+91 80 2572 2573</a></b> - 10 am to 2 pm, Monday to Saturday.</li>\n<li><b>AASRA</b> (<a class=\"external free\" href=\"http://www.aasra.info/\" rel=\"nofollow\">http://www.aasra.info/</a>): <a class=\"external text\" href=\"tel:+912227546669\" rel=\"nofollow\">+91-22-27546669</a> is a 24-hours a day, 7 days a week nationwide voluntary, professional and confidential services.</li>\n<li><b>Sneha India</b> (<a class=\"external text\" href=\"http://www.snehaindia.org/\" rel=\"nofollow\">http://www.snehaindia.org</a>) is available 24/7 on the phone by calling <a class=\"external text\" href=\"tel:+914424640050\" rel=\"nofollow\">+91 44 24640050</a>.</li>\n<li><b>Befrienders India</b> (<a class=\"external text\" href=\"http://befriendersindia.net/helpline-details.php\" rel=\"nofollow\">http://befriendersindia.net/helpline-details.php</a>) contains contact numbers of local crisis helplines in 15+ cities in India.</li>\n<li><b>Lifeline Foundation (Kolkata): (www.lifelinefoundation.in</b><sup class=\"reference\" id=\"cite_ref-27\"><a href=\"#cite_note-27\">[27]</a></sup><b>) -</b> Tele-helpline for providing emotional support to distressed, depressed or suicidal <b>+91 9088030303</b><sup class=\"reference\" id=\"cite_ref-28\"><a href=\"#cite_note-28\">[28]</a></sup><b>, 03340447437</b><sup class=\"reference\" id=\"cite_ref-29\"><a href=\"#cite_note-29\">[29]</a></sup> 10am to 10pm all days of the week. Non-judgemental, confidential, free service.</li></ul>",
"parsed_batches": [
{
"phones": [
"tel:112"
],
"description": "112 is the national emergency number for India. Call 112."
},
{
"phones": [
"tel:+918422984528",
"tel:+918422984529",
"tel:+918422984530"
],
"description": "Samaritans Mumbai: (samaritansmumbai.com) - +91 8422984528, +91 8422984529, +91 8422984530 - 3 pm to 9 pm, all days. samaritans.helpline@gmail.com. Helpline providing emotional support for those who are stressed, distressed, depressed, or suicidal."
},
{
"phones": [
"tel:+918025722573"
],
"description": "Mitram Foundation: (mitramfoundation.org) - +91 80 2572 2573 - 10 am to 2 pm, Monday to Saturday."
},
{
"phones": [
"tel:+912227546669"
],
"description": "AASRA (http://www.aasra.info/): +91-22-27546669 is a 24-hours a day, 7 days a week nationwide voluntary, professional and confidential services."
},
{
"phones": [
"tel:+914424640050"
],
"description": "Sneha India (http://www.snehaindia.org) is available 24/7 on the phone by calling +91 44 24640050."
},
{
"phones": [],
"description": "Befrienders India (http://befriendersindia.net/helpline-details.php) contains contact numbers of local crisis helplines in 15+ cities in India."
},
{
"phones": [],
"description": "Lifeline Foundation (Kolkata): (www.lifelinefoundation.in[27]) - Tele-helpline for providing emotional support to distressed, depressed or suicidal +91 9088030303[28], 03340447437[29] 10am to 10pm all days of the week. Non-judgemental, confidential, free service."
}
]