-
Notifications
You must be signed in to change notification settings - Fork 120
/
editions.json
4902 lines (4902 loc) · 233 KB
/
editions.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
{
"aar_sheikhmahmoudab": {
"name": "aar-sheikhmahmoudab",
"author": "Sheikh Mahmoud Abdel Qader Hamz And Group Of Scholars",
"language": "Afar",
"direction": "ltr",
"source": "https://qurancomplex.gov.sa/",
"comments": "This translation was OCRed, in case you find any mistakes, let me know at https://bit.ly/33FuNZS",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aar-sheikhmahmoudab.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aar-sheikhmahmoudab.min.json"
},
"ace_tgkhmahjiddinju": {
"name": "ace-tgkhmahjiddinju",
"author": "Tgk. H. Mahjiddin Jusuf",
"language": "Achinese",
"direction": "ltr",
"source": "https://www.islamic-invitation.com/",
"comments": "This translation was OCRed, in case you find any mistakes, let me know at https://bit.ly/33FuNZS",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ace-tgkhmahjiddinju.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ace-tgkhmahjiddinju.min.json"
},
"afr_imammabaker": {
"name": "afr-imammabaker",
"author": "Imam M. A. Baker",
"language": "Afrikaans",
"direction": "ltr",
"source": "The Islamic Dawah Movement of Southern Africa",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/afr-imammabaker.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/afr-imammabaker.min.json"
},
"amh_muhammedsadiqan_la": {
"name": "amh-muhammedsadiqan-la",
"author": "Muhammed Sadiq And Muhammed Sani Habib",
"language": "Amharic",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan-la.min.json"
},
"amh_muhammedsadiqan_lad": {
"name": "amh-muhammedsadiqan-lad",
"author": "Muhammed Sadiq And Muhammed Sani Habib",
"language": "Amharic",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan-lad.min.json"
},
"amh_muhammedsadiqan": {
"name": "amh-muhammedsadiqan",
"author": "Muhammed Sadiq And Muhammed Sani Habib",
"language": "Amharic",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/amh-muhammedsadiqan.min.json"
},
"ara_jalaladdinalmah": {
"name": "ara-jalaladdinalmah",
"author": "Jalal Ad Din Al Mahalli And Jalal Ad Din As Suyuti",
"language": "Arabic",
"direction": "rtl",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-jalaladdinalmah.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-jalaladdinalmah.min.json"
},
"ara_kingfahadquranc_la": {
"name": "ara-kingfahadquranc-la",
"author": "King Fahad Quran Complex",
"language": "Arabic",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-kingfahadquranc-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-kingfahadquranc-la.min.json"
},
"ara_kingfahadquranc": {
"name": "ara-kingfahadquranc",
"author": "King Fahad Quran Complex",
"language": "Arabic",
"direction": "rtl",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-kingfahadquranc.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-kingfahadquranc.min.json"
},
"ara_quran_la": {
"name": "ara-quran-la",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la.min.json"
},
"ara_quran_la1": {
"name": "ara-quran-la1",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "https://quran411.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la1.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la1.min.json"
},
"ara_quran_la2": {
"name": "ara-quran-la2",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la2.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la2.min.json"
},
"ara_quran_la3": {
"name": "ara-quran-la3",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la3.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la3.min.json"
},
"ara_quran_la4": {
"name": "ara-quran-la4",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la4.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la4.min.json"
},
"ara_quran_la5": {
"name": "ara-quran-la5",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la5.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-la5.min.json"
},
"ara_quran_lad4": {
"name": "ara-quran-lad4",
"author": "Quran Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-lad4.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quran-lad4.min.json"
},
"ara_quranacademy": {
"name": "ara-quranacademy",
"author": "Quran Academy",
"language": "Arabic",
"direction": "rtl",
"source": "https://github.com/quranacademy/quran-text",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranacademy.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranacademy.min.json"
},
"ara_quranbazzi": {
"name": "ara-quranbazzi",
"author": "Quran Bazzi",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 7 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/ , The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use bazzi fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranbazzi.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranbazzi.min.json"
},
"ara_qurandoori": {
"name": "ara-qurandoori",
"author": "Quran Doori",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/ , The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) and also 'ۭ'(u+06ED)->'ٜ'(u+065c), You can use doori fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurandoori.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurandoori.min.json"
},
"ara_qurandoorinonun": {
"name": "ara-qurandoorinonun",
"author": "Quran Doori Non Unicode",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/, Please use the quran complex doori fonts to view this text properly",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurandoorinonun.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurandoorinonun.min.json"
},
"ara_quranindopak": {
"name": "ara-quranindopak",
"author": "Quran Indopak",
"language": "Arabic",
"direction": "rtl",
"source": "https://fonts.qurancomplex.gov.sa/",
"comments": "This is a copy of Quran Nastaleeq from https://fonts.qurancomplex.gov.sa/, the quran complex version was converted to unicode standard, most of the symbols were taken from Arabic Extended-A block and the main arabic block, Please use the Google noto sans arabic font from here https://www.google.com/get/noto/#sans-arab or fonts with -full suffix, which supports all the arabic unicode blocks, In case you find any mistake with this version of quran, please let me know at https://bit.ly/33FuNZS",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranindopak.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranindopak.min.json"
},
"ara_qurankhaledhosn": {
"name": "ara-qurankhaledhosn",
"author": "Quran Khaled Hosney",
"language": "Arabic",
"direction": "rtl",
"source": "https://github.com/khaledhosny/quran-data",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurankhaledhosn.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurankhaledhosn.min.json"
},
"ara_qurannastaleeqn": {
"name": "ara-qurannastaleeqn",
"author": "Quran Nastaleeq Non Unicode",
"language": "Arabic",
"direction": "rtl",
"source": "https://fonts.qurancomplex.gov.sa/",
"comments": "Version 10, Original Version from qurancomplex, this text does not follow proper unicode standard, Please use the quran complex nastaleeq fonts to view this text properly, this quran variant is also known as IndoPak",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurannastaleeqn.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-qurannastaleeqn.min.json"
},
"ara_quranphoneticst_la": {
"name": "ara-quranphoneticst-la",
"author": "Quran Phonetics Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranphoneticst-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranphoneticst-la.min.json"
},
"ara_quranphoneticst": {
"name": "ara-quranphoneticst",
"author": "Quran Phonetics Transliteration",
"language": "Arabic",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranphoneticst.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranphoneticst.min.json"
},
"ara_quranqaloon": {
"name": "ara-quranqaloon",
"author": "Quran Qaloon",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/ , The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use qaloon fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranqaloon.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranqaloon.min.json"
},
"ara_quranqumbul": {
"name": "ara-quranqumbul",
"author": "Quran Qumbul",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 7 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/, The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use qumbul fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranqumbul.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranqumbul.min.json"
},
"ara_quranshouba": {
"name": "ara-quranshouba",
"author": "Quran Shouba",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 7, Please use the quran complex shouba fonts to view this text properly, The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use shouba fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranshouba.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranshouba.min.json"
},
"ara_quransimple": {
"name": "ara-quransimple",
"author": "Quran Simple",
"language": "Arabic",
"direction": "rtl",
"source": "https://api.alquran.cloud/v1/quran/quran-simple",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransimple.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransimple.min.json"
},
"ara_quransoosi": {
"name": "ara-quransoosi",
"author": "Quran Soosi",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/ , The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) and also 'ۭ'(u+06ED)->'ٜ'(u+065c), You can use soosi fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransoosi.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransoosi.min.json"
},
"ara_quransoosinonun": {
"name": "ara-quransoosinonun",
"author": "Quran Soosi Non Unicode",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8 ,The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/, Please use the quran complex soosi fonts to view this text properly",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransoosinonun.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quransoosinonun.min.json"
},
"ara_quranuthmanienc": {
"name": "ara-quranuthmanienc",
"author": "Quran Uthmani Enc",
"language": "Arabic",
"direction": "rtl",
"source": "https://quranenc.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanienc.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanienc.min.json"
},
"ara_quranuthmanihaf": {
"name": "ara-quranuthmanihaf",
"author": "Quran Uthmani Hafs",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 13, Please use the quran complex Uthamnic fonts to view this text properly, The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use uthamic hafs fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanihaf.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanihaf.min.json"
},
"ara_quranuthmanihaf1": {
"name": "ara-quranuthmanihaf1",
"author": "Quran Uthmani Hafs No Diacritics",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanihaf1.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranuthmanihaf1.min.json"
},
"ara_quranwarsh": {
"name": "ara-quranwarsh",
"author": "Quran Warsh",
"language": "Arabic",
"direction": "rtl",
"source": "https://qurancomplex.gov.sa/",
"comments": "Version 8, The verse numbering of this quran has been changed to Uthmanic version, so that Apps can easily use this, and people can benefit from it, If you want the copy with original verse numbering, please go to https://fonts.qurancomplex.gov.sa/, The following characters were replaced (to open fathatan,dammatan and kasratan) to conform to unicode standard,'ٖ'(u+0656)->'ࣲ'(u+08f2),'ٗ'(u+0657)->'ࣰ'(u+08f0),'ٞ'(u+065E)->'ࣱ'(u+08f1) , You can use warsh fonts with full suffix to view this text",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranwarsh.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-quranwarsh.min.json"
},
"ara_sirajtafseer": {
"name": "ara-sirajtafseer",
"author": "Siraj Tafseer",
"language": "Arabic",
"direction": "rtl",
"source": "https://quranenc.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-sirajtafseer.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-sirajtafseer.min.json"
},
"ara_sirajtafseernod": {
"name": "ara-sirajtafseernod",
"author": "Siraj Tafseer No Diacritics",
"language": "Arabic",
"direction": "rtl",
"source": "https://quranenc.com",
"comments": "Diacritics removed for easier searching",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-sirajtafseernod.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ara-sirajtafseernod.min.json"
},
"asm_shaykhrafeequli_la": {
"name": "asm-shaykhrafeequli-la",
"author": "Shaykh Rafeequl Islam Habibur Rahman",
"language": "Assamese",
"direction": "ltr",
"source": "https://quranenc.com/check/assamese_rafeeq/v1.0.0-csv.1 , https://quranenc.com/en/browse/assamese_rafeeq , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli-la.min.json"
},
"asm_shaykhrafeequli_lad": {
"name": "asm-shaykhrafeequli-lad",
"author": "Shaykh Rafeequl Islam Habibur Rahman",
"language": "Assamese",
"direction": "ltr",
"source": "https://quranenc.com/check/assamese_rafeeq/v1.0.0-csv.1 , https://quranenc.com/en/browse/assamese_rafeeq , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli-lad.min.json"
},
"asm_shaykhrafeequli": {
"name": "asm-shaykhrafeequli",
"author": "Shaykh Rafeequl Islam Habibur Rahman",
"language": "Assamese",
"direction": "ltr",
"source": "https://quranenc.com/check/assamese_rafeeq/v1.0.0-csv.1 , https://quranenc.com/en/browse/assamese_rafeeq , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/asm-shaykhrafeequli.min.json"
},
"aze_alikhanmusayev_la": {
"name": "aze-alikhanmusayev-la",
"author": "Alikhan Musayev",
"language": "Azerbaijani",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-alikhanmusayev-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-alikhanmusayev-la.min.json"
},
"aze_alikhanmusayev": {
"name": "aze-alikhanmusayev",
"author": "Alikhan Musayev",
"language": "Azerbaijani",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-alikhanmusayev.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-alikhanmusayev.min.json"
},
"aze_khanmusayev_la": {
"name": "aze-khanmusayev-la",
"author": "Khan Musayev",
"language": "Azerbaijani",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-khanmusayev-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-khanmusayev-la.min.json"
},
"aze_khanmusayev": {
"name": "aze-khanmusayev",
"author": "Khan Musayev",
"language": "Azerbaijani",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-khanmusayev.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-khanmusayev.min.json"
},
"aze_vasimmammadaliy_la": {
"name": "aze-vasimmammadaliy-la",
"author": "Vasim Mammadaliyev And Ziya Bunyadov",
"language": "Azerbaijani",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-vasimmammadaliy-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-vasimmammadaliy-la.min.json"
},
"aze_vasimmammadaliy": {
"name": "aze-vasimmammadaliy",
"author": "Vasim Mammadaliyev And Ziya Bunyadov",
"language": "Azerbaijani",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-vasimmammadaliy.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/aze-vasimmammadaliy.min.json"
},
"bam_deenmuhammad": {
"name": "bam-deenmuhammad",
"author": "Deen Muhammad",
"language": "Bambara",
"direction": "rtl",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-deenmuhammad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-deenmuhammad.min.json"
},
"bam_fodisulimankant": {
"name": "bam-fodisulimankant",
"author": "Fodi Suliman Kanti",
"language": "Bambara",
"direction": "rtl",
"source": "https://quranenc.com/en/browse/ankobambara_foudi",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-fodisulimankant.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-fodisulimankant.min.json"
},
"bam_karamobabamamad": {
"name": "bam-karamobabamamad",
"author": "Karamo Baba Mamadi Jani",
"language": "Bambara",
"direction": "rtl",
"source": "https://quranenc.com/en/browse/ankobambara_dayyan",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-karamobabamamad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bam-karamobabamamad.min.json"
},
"ben_abubakrzakaria_la": {
"name": "ben-abubakrzakaria-la",
"author": "Abu Bakr Zakaria",
"language": "Bengali",
"direction": "ltr",
"source": "https://qurancomplex.gov.sa/",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria-la.min.json"
},
"ben_abubakrzakaria_lad": {
"name": "ben-abubakrzakaria-lad",
"author": "Abu Bakr Zakaria",
"language": "Bengali",
"direction": "ltr",
"source": "https://qurancomplex.gov.sa/",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria-lad.min.json"
},
"ben_abubakrzakaria": {
"name": "ben-abubakrzakaria",
"author": "Abu Bakr Zakaria",
"language": "Bengali",
"direction": "ltr",
"source": "https://qurancomplex.gov.sa/",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-abubakrzakaria.min.json"
},
"ben_muhiuddinkhan_la": {
"name": "ben-muhiuddinkhan-la",
"author": "Muhiuddin Khan",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan-la.min.json"
},
"ben_muhiuddinkhan_lad": {
"name": "ben-muhiuddinkhan-lad",
"author": "Muhiuddin Khan",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan-lad.min.json"
},
"ben_muhiuddinkhan": {
"name": "ben-muhiuddinkhan",
"author": "Muhiuddin Khan",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-muhiuddinkhan.min.json"
},
"ben_zohurulhoque_la": {
"name": "ben-zohurulhoque-la",
"author": "Zohurul Hoque",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque-la.min.json"
},
"ben_zohurulhoque_lad": {
"name": "ben-zohurulhoque-lad",
"author": "Zohurul Hoque",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque-lad.min.json"
},
"ben_zohurulhoque": {
"name": "ben-zohurulhoque",
"author": "Zohurul Hoque",
"language": "Bengali",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ben-zohurulhoque.min.json"
},
"ber_ramdaneatmansou_la": {
"name": "ber-ramdaneatmansou-la",
"author": "Ramdane At Mansour",
"language": "Berber",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ber-ramdaneatmansou-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ber-ramdaneatmansou-la.min.json"
},
"ber_ramdaneatmansou": {
"name": "ber-ramdaneatmansou",
"author": "Ramdane At Mansour",
"language": "Berber",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ber-ramdaneatmansou.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ber-ramdaneatmansou.min.json"
},
"bos_besimkorkut_la": {
"name": "bos-besimkorkut-la",
"author": "Besim Korkut",
"language": "Bosnian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-besimkorkut-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-besimkorkut-la.min.json"
},
"bos_besimkorkut": {
"name": "bos-besimkorkut",
"author": "Besim Korkut",
"language": "Bosnian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-besimkorkut.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-besimkorkut.min.json"
},
"bos_korkut_la": {
"name": "bos-korkut-la",
"author": "Korkut",
"language": "Bosnian",
"direction": "ltr",
"source": "http://www.qurandatabase.org",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-korkut-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-korkut-la.min.json"
},
"bos_korkut": {
"name": "bos-korkut",
"author": "Korkut",
"language": "Bosnian",
"direction": "ltr",
"source": "http://www.qurandatabase.org",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-korkut.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-korkut.min.json"
},
"bos_muhamedmehanovi_la": {
"name": "bos-muhamedmehanovi-la",
"author": "Muhamed Mehanovic",
"language": "Bosnian",
"direction": "ltr",
"source": "https://quranenc.com/check/bosnian_mihanovich/v1.1.0-csv.1 , https://quranenc.com/en/browse/bosnian_mihanovich , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-muhamedmehanovi-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-muhamedmehanovi-la.min.json"
},
"bos_muhamedmehanovi": {
"name": "bos-muhamedmehanovi",
"author": "Muhamed Mehanovic",
"language": "Bosnian",
"direction": "ltr",
"source": "https://quranenc.com/check/bosnian_mihanovich/v1.1.0-csv.1 , https://quranenc.com/en/browse/bosnian_mihanovich , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-muhamedmehanovi.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-muhamedmehanovi.min.json"
},
"bos_mustafamlivo_la": {
"name": "bos-mustafamlivo-la",
"author": "Mustafa Mlivo",
"language": "Bosnian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-mustafamlivo-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-mustafamlivo-la.min.json"
},
"bos_mustafamlivo": {
"name": "bos-mustafamlivo",
"author": "Mustafa Mlivo",
"language": "Bosnian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-mustafamlivo.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-mustafamlivo.min.json"
},
"bos_transliterim": {
"name": "bos-transliterim",
"author": "Transliterim",
"language": "Bosnian",
"direction": "ltr",
"source": "http://www.qurandatabase.org",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-transliterim.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-transliterim.min.json"
},
"bos_wwwislamhouseco_la": {
"name": "bos-wwwislamhouseco-la",
"author": "Www.islamhouse.com",
"language": "Bosnian",
"direction": "ltr",
"source": "https://quranenc.com/check/bosnian_rwwad/v2.0.0-csv.1, https://quranenc.com/en/browse/bosnian_rwwad , https://quranenc.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-wwwislamhouseco-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-wwwislamhouseco-la.min.json"
},
"bos_wwwislamhouseco": {
"name": "bos-wwwislamhouseco",
"author": "Www.islamhouse.com",
"language": "Bosnian",
"direction": "ltr",
"source": "https://quranenc.com/check/bosnian_rwwad/v2.0.0-csv.1, https://quranenc.com/en/browse/bosnian_rwwad , https://quranenc.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-wwwislamhouseco.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bos-wwwislamhouseco.min.json"
},
"bul_tzvetantheophan_la": {
"name": "bul-tzvetantheophan-la",
"author": "Tzvetan Theophanov",
"language": "Bulgarian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan-la.min.json"
},
"bul_tzvetantheophan_lad": {
"name": "bul-tzvetantheophan-lad",
"author": "Tzvetan Theophanov",
"language": "Bulgarian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan-lad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan-lad.min.json"
},
"bul_tzvetantheophan": {
"name": "bul-tzvetantheophan",
"author": "Tzvetan Theophanov",
"language": "Bulgarian",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/bul-tzvetantheophan.min.json"
},
"cat_yousseflyoussi_la": {
"name": "cat-yousseflyoussi-la",
"author": "Youssef Lyoussi",
"language": "Catalan",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/cat-yousseflyoussi-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/cat-yousseflyoussi-la.min.json"
},
"cat_yousseflyoussi": {
"name": "cat-yousseflyoussi",
"author": "Youssef Lyoussi",
"language": "Catalan",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/cat-yousseflyoussi.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/cat-yousseflyoussi.min.json"
},
"ces_arnykl_la": {
"name": "ces-arnykl-la",
"author": "A. R. Nykl",
"language": "Czech",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-arnykl-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-arnykl-la.min.json"
},
"ces_arnykl": {
"name": "ces-arnykl",
"author": "A. R. Nykl",
"language": "Czech",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-arnykl.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-arnykl.min.json"
},
"ces_hadiabdollahian_la": {
"name": "ces-hadiabdollahian-la",
"author": "Hadi Abdollahian",
"language": "Czech",
"direction": "ltr",
"source": "Contact:+989354664487",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-hadiabdollahian-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-hadiabdollahian-la.min.json"
},
"ces_hadiabdollahian": {
"name": "ces-hadiabdollahian",
"author": "Hadi Abdollahian",
"language": "Czech",
"direction": "ltr",
"source": "Contact:+989354664487",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-hadiabdollahian.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-hadiabdollahian.min.json"
},
"ces_prekladihrbek_la": {
"name": "ces-prekladihrbek-la",
"author": "Preklad I. Hrbek",
"language": "Czech",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-prekladihrbek-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-prekladihrbek-la.min.json"
},
"ces_prekladihrbek": {
"name": "ces-prekladihrbek",
"author": "Preklad I. Hrbek",
"language": "Czech",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-prekladihrbek.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/ces-prekladihrbek.min.json"
},
"dag_muhammadbabaght": {
"name": "dag-muhammadbabaght",
"author": "Muhammad Baba Ghtobo",
"language": "Dagbani",
"direction": "ltr",
"source": "https://www.islamic-invitation.com",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dag-muhammadbabaght.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dag-muhammadbabaght.min.json"
},
"dan_hadiabdollahian": {
"name": "dan-hadiabdollahian",
"author": "Hadi Abdollahian",
"language": "Danish",
"direction": "ltr",
"source": "https://www.alqurantranslation.com/ , Contact:+989354664487",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dan-hadiabdollahian.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dan-hadiabdollahian.min.json"
},
"dan_vandetaal": {
"name": "dan-vandetaal",
"author": "Van De Taal",
"language": "Danish",
"direction": "ltr",
"source": "https://www.alqurantranslation.com/",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dan-vandetaal.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/dan-vandetaal.min.json"
},
"deu_aburidamuhammad_la": {
"name": "deu-aburidamuhammad-la",
"author": "Abu Rida Muhammad Ibn Ahmad Ibn Rassoul",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-aburidamuhammad-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-aburidamuhammad-la.min.json"
},
"deu_aburidamuhammad": {
"name": "deu-aburidamuhammad",
"author": "Abu Rida Muhammad Ibn Ahmad Ibn Rassoul",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-aburidamuhammad.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-aburidamuhammad.min.json"
},
"deu_adeltheodorkhou_la": {
"name": "deu-adeltheodorkhou-la",
"author": "Adel Theodor Khoury",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-adeltheodorkhou-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-adeltheodorkhou-la.min.json"
},
"deu_adeltheodorkhou": {
"name": "deu-adeltheodorkhou",
"author": "Adel Theodor Khoury",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-adeltheodorkhou.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-adeltheodorkhou.min.json"
},
"deu_amirzaidan_la": {
"name": "deu-amirzaidan-la",
"author": "Amir Zaidan",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-amirzaidan-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-amirzaidan-la.min.json"
},
"deu_amirzaidan": {
"name": "deu-amirzaidan",
"author": "Amir Zaidan",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-amirzaidan.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-amirzaidan.min.json"
},
"deu_asfbubenheimand_la": {
"name": "deu-asfbubenheimand-la",
"author": "A. S. F. Bubenheim And N. Elyas",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-asfbubenheimand-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-asfbubenheimand-la.min.json"
},
"deu_asfbubenheimand": {
"name": "deu-asfbubenheimand",
"author": "A. S. F. Bubenheim And N. Elyas",
"language": "German",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-asfbubenheimand.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-asfbubenheimand.min.json"
},
"deu_frankbubenheima_la": {
"name": "deu-frankbubenheima-la",
"author": "Frank Bubenheim And Nadeem Elyas",
"language": "German",
"direction": "ltr",
"source": "https://quranenc.com/check/german_bubenheim/v1.1.0-csv.1 , https://quranenc.com/en/browse/german_bubenheim , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-frankbubenheima-la.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-frankbubenheima-la.min.json"
},
"deu_frankbubenheima": {
"name": "deu-frankbubenheima",
"author": "Frank Bubenheim And Nadeem Elyas",
"language": "German",
"direction": "ltr",
"source": "https://quranenc.com/check/german_bubenheim/v1.1.0-csv.1 , https://quranenc.com/en/browse/german_bubenheim , https://quranenc.com ,",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-frankbubenheima.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/deu-frankbubenheima.min.json"
},
"div_officeofthepres": {
"name": "div-officeofthepres",
"author": "Office Of The President Of Maldives",
"language": "Divehi",
"direction": "rtl",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/div-officeofthepres.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/div-officeofthepres.min.json"
},
"eng_abdelhaleem": {
"name": "eng-abdelhaleem",
"author": "Abdel Haleem",
"language": "English",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdelhaleem.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdelhaleem.min.json"
},
"eng_abdulhye": {
"name": "eng-abdulhye",
"author": "Abdul Hye",
"language": "English",
"direction": "ltr",
"source": "",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdulhye.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdulhye.min.json"
},
"eng_abdullahyusufal": {
"name": "eng-abdullahyusufal",
"author": "Abdullah Yusuf Ali",
"language": "English",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdullahyusufal.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdullahyusufal.min.json"
},
"eng_abdulmajiddarya": {
"name": "eng-abdulmajiddarya",
"author": "Abdul Majid Daryabadi",
"language": "English",
"direction": "ltr",
"source": "http://tanzil.net",
"comments": "",
"link": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdulmajiddarya.json",
"linkmin": "https://cdn.jsdelivr.net/gh/fawazahmed0/quran-api@1/editions/eng-abdulmajiddarya.min.json"