-
Notifications
You must be signed in to change notification settings - Fork 195
/
raml10.yaml
3652 lines (3596 loc) · 166 KB
/
raml10.yaml
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
#%RAML 1.0
title: Quran.com API
version: v4
baseUri: 'https://api.quran.com/api/v4'
mediaType: application/json
protocols:
- HTTPS
- HTTP
description: ' Documentation of Quran.com v4 API'
documentation:
- title: Introduction
content: |-
<h1 align="center"> ﷽</h1>
## Quran.com v4 api
Welcome to version 4 of Quran API. Below you will find list of the available resources in our API. If you need help or found any bug, please head over to our [repo](https://github.com/quran/quran.com-api) and open an issue.
#### Getting notified on api changes
If you're using quran.com api, please fill in your app information here #docTextSection:rAMuqXfkdWkjv2jmH
- title: Subscribe to Quran.com API updates
content: |-
# Get notified on api changes
Please fil in this form and we'll notify you whenever we change something in the api.
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfVLqcJVnx9IvW0YhVduwgPQnG4bmptmRFRm65KYylVLEogAw/viewform?embedded=true" width="640" height="880" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
- title: Getting content in other languages
content: |-
API by defult send Translated names of #model:aC7ed7aoTAZEKLCGF, #model:wc8vsnXdQpa7bpWa4, #model:sPq4bZJQ5hqar4gmB translation, and names of some other resources in English.
You can use `language` query string in most api calls to fetch content in other langages.
For example this api call
`/v4/chapters/1/info?language=ur` will send chapter info in Urdu language.
and `/api/v4/verses/by_chapter/1?language=ur&words=true` will send word by word translation in Urdu language.
For list of available languages and their iso codes, see #endpoint:EZsWyDnekGaDKaCpt endpoint.
- title: API v3 → v4 Migration guide
content: "<style>\n .collection-content {\n font-size: 0.875rem;\n }\n\n table,\n th,\n td {\n border: 1px solid rgba(55, 53, 47, 0.09);\n border-collapse: collapse;\n }\n\n table {\n border-left: none;\n border-right: none;\n }\n\n th,\n td {\n font-weight: normal;\n padding: 0.25em 0.5em;\n line-height: 1.5;\n min-height: 1.5em;\n text-align: left;\n }\n\n th {\n color: rgba(55, 53, 47, 0.6);\n }\n\n ol,\n ul {\n margin: 0;\n margin-block-start: 0.6em;\n margin-block-end: 0.6em;\n }\n\n li > ol:first-child,\n li > ul:first-child {\n margin-block-start: 0.6em;\n }\n\n ul > li {\n list-style: disc;\n }\n\n ul.to-do-list {\n text-indent: -1.7em;\n }\n\n ul.to-do-list > li {\n list-style: none;\n }\n\n ul.toggle > li {\n list-style: none;\n }\n\n ul {\n padding-inline-start: 1.7em;\n }\n\n ul > li {\n padding-left: 0.1em;\n }\n\n ol {\n padding-inline-start: 1.6em;\n }\n\n ol > li {\n padding-left: 0.2em;\n }\n\n .mono ol {\n padding-inline-start: 2em;\n }\n\n .mono ol > li {\n text-indent: -0.4em;\n }\n\n .collection-title {\n display: inline-block;\n margin-right: 1em;\n }\n\n time {\n opacity: 0.5;\n }\n\n .icon {\n display: inline-block;\n max-width: 1.2em;\n max-height: 1.2em;\n text-decoration: none;\n vertical-align: text-bottom;\n margin-right: 0.5em;\n }\n\n img.icon {\n border-radius: 3px;\n }\n\n .page-header-icon {\n font-size: 3rem;\n margin-bottom: 1rem;\n }\n\n .page-header-icon img {\n border-radius: 3px;\n }\n\n input[type=\"checkbox\"] {\n transform: scale(1.5);\n margin-right: 0.6em;\n vertical-align: middle;\n }\n\n p {\n margin-top: 0.5em;\n margin-bottom: 0.5em;\n }\n\n code {\n background: rgba(135, 131, 120, 0.15);\n border-radius: 3px;\n padding: 0.2em 0.4em;\n border-radius: 3px;\n font-size: 85%;\n tab-size: 2;\n }\n\n\n .code > code {\n background: none;\n padding: 0;\n font-size: 100%;\n color: inherit;\n }\n\n blockquote {\n font-size: 1.25em;\n margin: 1em 0;\n padding-left: 1em;\n border-left: 3px solid rgb(55, 53, 47);\n }\n\n .checkbox {\n display: inline-flex;\n vertical-align: text-bottom;\n width: 16;\n height: 16;\n background-size: 16px;\n margin-left: 2px;\n margin-right: 5px;\n }\n\n .checkbox-on {\n background-image: url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E\");\n }\n\n .checkbox-off {\n background-image: url(\"data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E\");\n }\n\n</style>\n\n<article>\n <header>\n <div class=\"page-header-icon\">\n <span class=\"icon\">\U0001F681</span>\n </div>\n <h1 class=\"page-title\">API v3 → v4 Migration guide</h1></header>\n <div class=\"page-body\">\n <p>The following guide will help you migrate from\n <a href=\"http://quran.com\">Quran.com</a> API v3 to Quran.com API v4.</p>\n \n<h3>\n This guide is work in progress. Please help us completing this guide. \n</h3> \n \n<p>Migration checklist:</p>\n<ul class=\"to-do-list\">\n <li>\n <div class=\"checkbox checkbox-off\"></div>\n <span class=\"to-do-children-unchecked\">Replace the <code>/v3</code> route in the url with <code>v4</code></span>\n </li>\n </ul>\n <ul class=\"to-do-list\">\n <li>\n <div class=\"checkbox checkbox-off\"></div>\n <span class=\"to-do-children-unchecked\">Figure out which v3 endpoints your app uses, and look for the equivalent ones in the v3 → v4 mapping table.</span>\n </li>\n </ul>\n <ul class=\"to-do-list\">\n <li>\n <div class=\"checkbox checkbox-off\"></div>\n <span class=\"to-do-children-unchecked\">(Anything else?) </span></li>\n </ul>\n <p>\n </p>\n <p>Endpoints: v3 → v4 mapping</p>\n <p>\n </p>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Options</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg>\n </span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td class=\"cell-title\">\n /options/recitations\n </td>\n <td class=\"cell-fpv?\">/resources/recitations</td>\n <td class=\"cell-qrGp\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">\n /options/translations\n </td>\n <td class=\"cell-fpv?\">/resources/translations</td>\n <td class=\"cell-qrGp\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">\n /options/languages\n </td>\n <td class=\"cell-fpv?\">/resources/languages</td>\n <td class=\"cell-qrGp\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">/options/tafsirs\n </td>\n <td class=\"cell-fpv?\">/resources/tafsirs</td>\n <td class=\"cell-qrGp\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Chapters</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr >\n <td class=\"cell-title\">\n /chapters\n </td>\n <td class=\"cell-fpv?\">/chapters</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">/chapters/{id}\n </td>\n <td class=\"cell-fpv?\">/chapters/{id}</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">/chapters/{chapter_id}/info\n </td>\n <td class=\"cell-fpv?\">/chapters/{chapter_id}/info</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Verses</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr >\n <td class=\"cell-title\">/chapters/{chapter_id}/verses\n </td>\n <td class=\"cell-fpv?\">/verses/by_chapter/{chapter_number}</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">/chapters/{chapter_id}/verses/{verse_number}\n </td>\n <td class=\"cell-fpv?\">api/v4/verses/by_key/{chapter_id}:{verse_number}</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Juz</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr >\n <td class=\"cell-title\">/juzs</td>\n <td class=\"cell-fpv?\">/juzs</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Tafsirs</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr >\n <td class=\"cell-title\">/chapters/{chapter_id}/verses/{verse_id}/tafsirs\n </td>\n <td class=\"cell-fpv?\">/tafsirs/by_chapter/{chapter_number</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n <tr >\n <td class=\"cell-title\">/chapters/{chapter_id}/verses/{verse_id}/tafsirs\n </td>\n <td class=\"cell-fpv?\">/chapters/{chapter_id}/verses/{verse_id}/tafsirs</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n <div class=\"collection-content\"><h4 class=\"collection-title\">Search</h4>\n <table class=\"collection-content\">\n <thead>\n <tr>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesTitle\"><path\n d=\"M7.73943662,8.6971831 C7.77640845,8.7834507 7.81338028,8.8943662 7.81338028,9.00528169 C7.81338028,9.49823944 7.40669014,9.89260563 6.91373239,9.89260563 C6.53169014,9.89260563 6.19894366,9.64612676 6.08802817,9.30105634 L5.75528169,8.33978873 L2.05809859,8.33978873 L1.72535211,9.30105634 C1.61443662,9.64612676 1.2693662,9.89260563 0.887323944,9.89260563 C0.394366197,9.89260563 0,9.49823944 0,9.00528169 C0,8.8943662 0.0246478873,8.7834507 0.0616197183,8.6971831 L2.46478873,2.48591549 C2.68661972,1.90669014 3.24119718,1.5 3.90669014,1.5 C4.55985915,1.5 5.12676056,1.90669014 5.34859155,2.48591549 L7.73943662,8.6971831 Z M2.60035211,6.82394366 L5.21302817,6.82394366 L3.90669014,3.10211268 L2.60035211,6.82394366 Z M11.3996479,3.70598592 C12.7552817,3.70598592 14,4.24823944 14,5.96126761 L14,9.07922535 C14,9.52288732 13.6549296,9.89260563 13.2112676,9.89260563 C12.8169014,9.89260563 12.471831,9.59683099 12.4225352,9.19014085 C12.028169,9.6584507 11.3257042,9.95422535 10.5492958,9.95422535 C9.60035211,9.95422535 8.47887324,9.31338028 8.47887324,7.98239437 C8.47887324,6.58978873 9.60035211,6.08450704 10.5492958,6.08450704 C11.3380282,6.08450704 12.040493,6.33098592 12.4348592,6.81161972 L12.4348592,5.98591549 C12.4348592,5.38204225 11.9172535,4.98767606 11.1285211,4.98767606 C10.6602113,4.98767606 10.2411972,5.11091549 9.80985915,5.38204225 C9.72359155,5.43133803 9.61267606,5.46830986 9.50176056,5.46830986 C9.18133803,5.46830986 8.91021127,5.1971831 8.91021127,4.86443662 C8.91021127,4.64260563 9.0334507,4.44542254 9.19366197,4.34683099 C9.87147887,3.90316901 10.6232394,3.70598592 11.3996479,3.70598592 Z M11.1778169,8.8943662 C11.6830986,8.8943662 12.1760563,8.72183099 12.4348592,8.37676056 L12.4348592,7.63732394 C12.1760563,7.29225352 11.6830986,7.11971831 11.1778169,7.11971831 C10.5616197,7.11971831 10.056338,7.45246479 10.056338,8.0193662 C10.056338,8.57394366 10.5616197,8.8943662 11.1778169,8.8943662 Z M0.65625,11.125 L13.34375,11.125 C13.7061869,11.125 14,11.4188131 14,11.78125 C14,12.1436869 13.7061869,12.4375 13.34375,12.4375 L0.65625,12.4375 C0.293813133,12.4375 4.43857149e-17,12.1436869 0,11.78125 C-4.43857149e-17,11.4188131 0.293813133,11.125 0.65625,11.125 Z\"></path></svg></span>v3\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>v4\n </th>\n <th><span class=\"icon property-icon\"><svg viewBox=\"0 0 14 14\"\n style=\"width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.4);flex-shrink:0;-webkit-backface-visibility:hidden\"\n class=\"typesText\"><path\n d=\"M7,4.56818 C7,4.29204 6.77614,4.06818 6.5,4.06818 L0.5,4.06818 C0.223858,4.06818 0,4.29204 0,4.56818 L0,5.61364 C0,5.88978 0.223858,6.11364 0.5,6.11364 L6.5,6.11364 C6.77614,6.11364 7,5.88978 7,5.61364 L7,4.56818 Z M0.5,1 C0.223858,1 0,1.223858 0,1.5 L0,2.54545 C0,2.8216 0.223858,3.04545 0.5,3.04545 L12.5,3.04545 C12.7761,3.04545 13,2.8216 13,2.54545 L13,1.5 C13,1.223858 12.7761,1 12.5,1 L0.5,1 Z M0,8.68182 C0,8.95796 0.223858,9.18182 0.5,9.18182 L11.5,9.18182 C11.7761,9.18182 12,8.95796 12,8.68182 L12,7.63636 C12,7.36022 11.7761,7.13636 11.5,7.13636 L0.5,7.13636 C0.223858,7.13636 0,7.36022 0,7.63636 L0,8.68182 Z M0,11.75 C0,12.0261 0.223858,12.25 0.5,12.25 L9.5,12.25 C9.77614,12.25 10,12.0261 10,11.75 L10,10.70455 C10,10.4284 9.77614,10.20455 9.5,10.20455 L0.5,10.20455 C0.223858,10.20455 0,10.4284 0,10.70455 L0,11.75 Z\"></path></svg></span>Notes\n </th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td class=\"cell-title\">\n /search\n </td>\n <td class=\"cell-fpv?\">/search</td>\n <td class=\"cell-ikVL\"></td>\n </tr>\n </tbody>\n </table>\n </div>\n </div>\n</article>"
/chapter_recitations:
displayName: chapter_recitations
'/{id}':
displayName: id
'/{chapter_number}':
displayName: chapter_number
uriParameters:
chapter_number:
type: number
minimum: 1
maximum: 114
get:
displayName: LIST-chapters
description: 'Get list of #model:Qi27pabqjXibG5CtZ for specific reciter'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"audio_file": {
"type": "chapter-recitation"
}
},
"example": {
"audio_file": {
"id": 43,
"chapter_id": 22,
"file_size": 19779712,
"format": "mp3",
"total_files": 1,
"audio_url": "https://download.quranicaudio.com/quran/abdullaah_3awwaad_al-juhaynee//022.mp3"
}
}
}
uriParameters:
id:
type: number
description: |-
Id of reciter for which you want to get the recitations. You can fetch list of all reciters from this endpoint
#endpoint:ZQvDmxKn7fQwLrAfy
displayName: |-
Id of reciter for which you want to get the recitations. You can fetch list of all reciters from this endpoint
#endpoint:ZQvDmxKn7fQwLrAfy
get:
displayName: LIST-chapters
description: 'Get list of #model:Qi27pabqjXibG5CtZ for specific reciter'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"audio_files": {
"type": "array",
"items": {
"type": "chapter-recitation"
}
}
},
"required": [
"audio_files"
],
"example": {
"audio_files": [
{
"id": 43,
"chapter_id": 22,
"file_size": 19779712,
"format": "mp3",
"total_files": 1,
"audio_url": "https://download.quranicaudio.com/quran/abdullaah_3awwaad_al-juhaynee//022.mp3"
},
{
"id": 87,
"chapter_id": 44,
"file_size": 6453376,
"format": "mp3",
"total_files": 1,
"audio_url": "https://download.quranicaudio.com/quran/abdullaah_3awwaad_al-juhaynee//044.mp3"
}
]
}
}
queryParameters:
language:
type: string
default: en
/chapters:
displayName: chapters
get:
displayName: LIST-chapters
description: 'Get list of #model:aC7ed7aoTAZEKLCGF.'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"chapters": {
"type": "array",
"items": {}
}
},
"example": {
"chapters": [
{
"id": 1,
"revelation_place": "makkah",
"revelation_order": 5,
"bismillah_pre": false,
"name_simple": "Al-Fatihah",
"name_complex": "Al-Fātiĥah",
"name_arabic": "الفاتحة",
"verses_count": 7,
"pages": [
1,
1
],
"translated_name": {
"language_name": "english",
"name": "The Opener"
}
}
]
}
}
queryParameters:
language:
type: string
default: en
'/{id}':
displayName: id
uriParameters:
id:
type: integer
description: Chapter ID ( 1-114)
minimum: 1
maximum: 114
displayName: Chapter ID ( 1-114)
get:
displayName: GET-chapter
description: 'Get details of a single #model:aC7ed7aoTAZEKLCGF.'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"chapter": {
"type": "chapter"
}
},
"example": {
"chapter": {
"id": 1,
"revelation_place": "makkah",
"revelation_order": 5,
"bismillah_pre": false,
"name_simple": "Al-Fatihah",
"name_complex": "Al-Fātiĥah",
"name_arabic": "الفاتحة",
"verses_count": 7,
"pages": [
1,
1
],
"translated_name": {
"language_name": "english",
"name": "The Opener"
}
}
}
}
queryParameters:
language:
type: string
default: en
'/{chapter_id}':
displayName: chapter_id
/info:
displayName: info
get:
displayName: info
description: 'Get #model:wc8vsnXdQpa7bpWa4 in specific language. Default to `English`.'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"chapter_info": {
"type": "chapter-info"
}
},
"example": {
"chapter_info": {
"id": 1,
"chapter_id": 1,
"language_name": "english",
"short_text": "This Surah is named Al-Fatihah because of its subject-matter. Fatihah is that which opens a subject or a book or any other thing. In other words, Al-Fatihah is a sort of preface.",
"source": "Sayyid Abul Ala Maududi - Tafhim al-Qur'an - The Meaning of the Quran",
"text": "<h2>Name</h2>\r\n<p>This Surah is named Al-Fatihah because of its subject-matter. Fatihah is that which opens a subject or a book or any other thing. In other words, Al-Fatihah is a sort of preface.</p>\r\n<h2>Period of Revelation</h2>..."
}
}
}
queryParameters:
language:
type: string
default: en
/verses:
displayName: verses
/by_chapter:
displayName: by_chapter
'/{chapter_number}':
displayName: chapter_number
uriParameters:
chapter_number:
type: integer
description: Chapter number ( 1 - 114 )
minimum: 1
maximum: 114
displayName: Chapter number ( 1 - 114 )
get:
displayName: By Chapter
description: 'Get list of #model:J83wDRc48FrARPHBY(s) by Chapter / Surah number.'
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"verses": {
"type": "array",
"items": {
"type": "verse"
}
},
"pagination": {
"type": "pagination"
}
},
"example": {
"verses": [
{
"id": 1,
"verse_number": 1,
"page_number": 1,
"verse_key": "1:1",
"juz_number": 1,
"hizb_number": 1,
"rub_el_hizb_number": 1,
"sajdah_type": null,
"sajdah_number": null,
"words": [
{
"id": 1,
"position": 1,
"audio_url": "wbw/001_001_001.mp3",
"char_type_name": "word",
"line_number": 2,
"page_number": 1,
"code_v1": "ﭑ",
"translation": {
"text": "In (the) name",
"language_name": "english"
},
"transliteration": {
"text": "bis'mi",
"language_name": "english"
}
}
],
"translations": [
{
"resource_id": 131,
"text": "In the Name of Allah—the Most Compassionate, Most Merciful."
}
],
"tafsirs": [
{
"id": 82641,
"language_name": "english",
"name": "Tafsir Ibn Kathir",
"text": "<h2 class=\"title\">Which was revealed in Makkah</h2><h2 class=\"title\">The Meaning of Al-Fatihah and its Various Names</h2>"
}
]
}
],
"pagination": {
"per_page": 1,
"current_page": 1,
"next_page": 2,
"total_pages": 7,
"total_records": 7
}
}
}
queryParameters:
language:
type: string
default: en
description: Language to fetch word translation in specific language.
displayName: Language to fetch word translation in specific language.
words:
type:
- string
- boolean
- integer
default: true
description: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
displayName: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
translations:
type: string
description: comma separated ids of translations to load for each ayah.
displayName: comma separated ids of translations to load for each ayah.
audio:
type: integer
description: Id of recitation if you want to load audio of each ayah.
displayName: Id of recitation if you want to load audio of each ayah.
tafsirs:
type: string
description: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
displayName: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
word_fields:
type: string
description: 'Comma separated list of word fields if you want to add more fields for each word. '
displayName: 'Comma separated list of word fields if you want to add more fields for each word. '
translation_fields:
type: string
description: 'Comma separated list of translation fields if you want to add more fields for each translation. '
displayName: 'Comma separated list of translation fields if you want to add more fields for each translation. '
fields:
type: string
description: comma separated list of ayah fields.
displayName: comma separated list of ayah fields.
page:
type: integer
default: 1
description: For paginating within the result
displayName: For paginating within the result
per_page:
type: integer
default: 10
minimum: 1
maximum: 50
description: 'records per api call, you can get maximum 50 records. '
displayName: 'records per api call, you can get maximum 50 records. '
/by_page:
displayName: by_page
'/{page_number}':
displayName: page_number
uriParameters:
page_number:
type: integer
description: 'Madani Mushaf page number. Valid range is 1-604 '
minimum: 1
maximum: 604
displayName: 'Madani Mushaf page number. Valid range is 1-604 '
get:
displayName: By Page
description: Get all verses of a specific Madani Mushaf page(1 to 604)
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"verses": {
"type": "array",
"items": {
"type": "verse"
}
},
"pagination": {
"type": "pagination"
}
},
"example": {
"verses": [
{
"id": 1,
"verse_number": 1,
"page_number": 1,
"verse_key": "1:1",
"juz_number": 1,
"hizb_number": 1,
"rub_el_hizb_number": 1,
"sajdah_type": null,
"sajdah_number": null,
"words": [
{
"id": 1,
"position": 1,
"audio_url": "wbw/001_001_001.mp3",
"char_type_name": "word",
"line_number": 2,
"page_number": 1,
"code_v1": "ﭑ",
"translation": {
"text": "In (the) name",
"language_name": "english"
},
"transliteration": {
"text": "bis'mi",
"language_name": "english"
}
}
],
"translations": [
{
"resource_id": 131,
"text": "In the Name of Allah—the Most Compassionate, Most Merciful."
}
],
"tafsirs": [
{
"id": 82641,
"language_name": "english",
"name": "Tafsir Ibn Kathir",
"text": "<h2 class=\"title\">Which was revealed in Makkah</h2><h2 class=\"title\">The Meaning of Al-Fatihah and its Various Names</h2>"
}
]
}
],
"pagination": {
"per_page": 1,
"current_page": 1,
"next_page": 2,
"total_pages": 7,
"total_records": 7
}
}
}
queryParameters:
language:
type: string
default: en
description: Language to fetch word translation in specific language.
displayName: Language to fetch word translation in specific language.
words:
type:
- string
- boolean
- integer
default: true
description: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
displayName: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
translations:
type: string
description: comma separated ids of translations to load for each ayah.
displayName: comma separated ids of translations to load for each ayah.
audio:
type: integer
description: Id of recitation if you want to load audio of each ayah.
displayName: Id of recitation if you want to load audio of each ayah.
tafsirs:
type: string
description: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
displayName: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
word_fields:
type: string
description: 'Comma separated list of word fields if you want to add more fields for each word. '
displayName: 'Comma separated list of word fields if you want to add more fields for each word. '
translation_fields:
type: string
description: 'Comma separated list of translation fields if you want to add more fields for each translation. '
displayName: 'Comma separated list of translation fields if you want to add more fields for each translation. '
fields:
type: string
description: comma separated list of ayah fields.
displayName: comma separated list of ayah fields.
page:
type: integer
default: 1
description: For paginating within the result
displayName: For paginating within the result
per_page:
type: integer
default: 10
minimum: 1
maximum: 50
description: 'records per api call, you can get maximum 50 records. '
displayName: 'records per api call, you can get maximum 50 records. '
/by_juz:
displayName: by_juz
'/{juz_number}':
displayName: juz_number
uriParameters:
juz_number:
type: integer
minimum: 1
maximum: 30
get:
displayName: By Juz
description: Get all verses from a specific juz(1-30).
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"verses": {
"type": "array",
"items": {
"type": "verse"
}
},
"pagination": {
"type": "pagination"
}
},
"example": {
"verses": [
{
"id": 1,
"verse_number": 1,
"page_number": 1,
"verse_key": "1:1",
"juz_number": 1,
"hizb_number": 1,
"rub_el_hizb_number": 1,
"sajdah_type": null,
"sajdah_number": null,
"words": [
{
"id": 1,
"position": 1,
"audio_url": "wbw/001_001_001.mp3",
"char_type_name": "word",
"line_number": 2,
"page_number": 1,
"code_v1": "ﭑ",
"translation": {
"text": "In (the) name",
"language_name": "english"
},
"transliteration": {
"text": "bis'mi",
"language_name": "english"
}
}
],
"translations": [
{
"resource_id": 131,
"text": "In the Name of Allah—the Most Compassionate, Most Merciful."
}
],
"tafsirs": [
{
"id": 82641,
"language_name": "english",
"name": "Tafsir Ibn Kathir",
"text": "<h2 class=\"title\">Which was revealed in Makkah</h2><h2 class=\"title\">The Meaning of Al-Fatihah and its Various Names</h2>"
}
]
}
],
"pagination": {
"per_page": 1,
"current_page": 1,
"next_page": 2,
"total_pages": 7,
"total_records": 7
}
}
}
queryParameters:
language:
type: string
default: en
description: Language to fetch word translation in specific language.
displayName: Language to fetch word translation in specific language.
words:
type:
- string
- boolean
- integer
default: true
description: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
displayName: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
translations:
type: string
description: comma separated ids of translations to load for each ayah.
displayName: comma separated ids of translations to load for each ayah.
audio:
type: integer
description: Id of recitation if you want to load audio of each ayah.
displayName: Id of recitation if you want to load audio of each ayah.
tafsirs:
type: string
description: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
displayName: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
word_fields:
type: string
description: 'Comma separated list of word fields if you want to add more fields for each word. '
displayName: 'Comma separated list of word fields if you want to add more fields for each word. '
translation_fields:
type: string
description: 'Comma separated list of translation fields if you want to add more fields for each translation. '
displayName: 'Comma separated list of translation fields if you want to add more fields for each translation. '
fields:
type: string
description: comma separated list of ayah fields.
displayName: comma separated list of ayah fields.
page:
type: integer
default: 1
description: For paginating within the result
displayName: For paginating within the result
per_page:
type: integer
default: 10
minimum: 1
maximum: 50
description: 'records per api call, you can get maximum 50 records. '
displayName: 'records per api call, you can get maximum 50 records. '
/by_hizb:
displayName: by_hizb
'/{hizb_number}':
displayName: hizb_number
uriParameters:
hizb_number:
type: integer
minimum: 1
maximum: 60
description: Hizb number(1-60)
displayName: Hizb number(1-60)
get:
displayName: By Hizb number
description: Get all verses from a specific Hizb( half(1-60).
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"verses": {
"type": "array",
"items": {
"type": "verse"
}
},
"pagination": {
"type": "pagination"
}
},
"example": {
"verses": [
{
"id": 1,
"verse_number": 1,
"page_number": 1,
"verse_key": "1:1",
"juz_number": 1,
"hizb_number": 1,
"rub_el_hizb_number": 1,
"sajdah_type": null,
"sajdah_number": null,
"words": [
{
"id": 1,
"position": 1,
"audio_url": "wbw/001_001_001.mp3",
"char_type_name": "word",
"line_number": 2,
"page_number": 1,
"code_v1": "ﭑ",
"translation": {
"text": "In (the) name",
"language_name": "english"
},
"transliteration": {
"text": "bis'mi",
"language_name": "english"
}
}
],
"translations": [
{
"resource_id": 131,
"text": "In the Name of Allah—the Most Compassionate, Most Merciful."
}
],
"tafsirs": [
{
"id": 82641,
"language_name": "english",
"name": "Tafsir Ibn Kathir",
"text": "<h2 class=\"title\">Which was revealed in Makkah</h2><h2 class=\"title\">The Meaning of Al-Fatihah and its Various Names</h2>"
}
]
}
],
"pagination": {
"per_page": 1,
"current_page": 1,
"next_page": 2,
"total_pages": 7,
"total_records": 7
}
}
}
queryParameters:
language:
type: string
default: en
description: Language to fetch word translation in specific language.
displayName: Language to fetch word translation in specific language.
words:
type:
- string
- boolean
- integer
default: true
description: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
displayName: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
translations:
type: string
description: comma separated ids of translations to load for each ayah.
displayName: comma separated ids of translations to load for each ayah.
audio:
type: integer
description: Id of recitation if you want to load audio of each ayah.
displayName: Id of recitation if you want to load audio of each ayah.
tafsirs:
type: string
description: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
displayName: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
word_fields:
type: string
description: 'Comma separated list of word fields if you want to add more fields for each word. '
displayName: 'Comma separated list of word fields if you want to add more fields for each word. '
translation_fields:
type: string
description: 'Comma separated list of translation fields if you want to add more fields for each translation. '
displayName: 'Comma separated list of translation fields if you want to add more fields for each translation. '
fields:
type: string
description: comma separated list of ayah fields.
displayName: comma separated list of ayah fields.
page:
type: integer
default: 1
description: For paginating within the result
displayName: For paginating within the result
per_page:
type: integer
default: 10
minimum: 1
maximum: 50
description: 'records per api call, you can get maximum 50 records. '
displayName: 'records per api call, you can get maximum 50 records. '
/by_rub:
displayName: by_rub
'/{rub_el_hizb_number}':
displayName: rub_el_hizb_number
uriParameters:
rub_el_hizb_number:
type: integer
description: Rub el Hizb number(1-240)
minimum: 1
maximum: 240
displayName: Rub el Hizb number(1-240)
get:
displayName: By Rub el Hizb number
description: Get all verses of a specific Rub el Hizb number(1-240).
responses:
'200':
body:
application/json: |-
{
"type": "object",
"properties": {
"verses": {
"type": "array",
"items": {
"type": "verse"
}
},
"pagination": {
"type": "pagination"
}
},
"example": {
"verses": [
{
"id": 1,
"verse_number": 1,
"page_number": 1,
"verse_key": "1:1",
"juz_number": 1,
"hizb_number": 1,
"rub_el_hizb_number": 1,
"sajdah_type": null,
"sajdah_number": null,
"words": [
{
"id": 1,
"position": 1,
"audio_url": "wbw/001_001_001.mp3",
"char_type_name": "word",
"line_number": 2,
"page_number": 1,
"code_v1": "ﭑ",
"translation": {
"text": "In (the) name",
"language_name": "english"
},
"transliteration": {
"text": "bis'mi",
"language_name": "english"
}
}
],
"translations": [
{
"resource_id": 131,
"text": "In the Name of Allah—the Most Compassionate, Most Merciful."
}
],
"tafsirs": [
{
"id": 82641,
"language_name": "english",
"name": "Tafsir Ibn Kathir",
"text": "<h2 class=\"title\">Which was revealed in Makkah</h2><h2 class=\"title\">The Meaning of Al-Fatihah and its Various Names</h2>"
}
]
}
],
"pagination": {
"per_page": 1,
"current_page": 1,
"next_page": 2,
"total_pages": 7,
"total_records": 7
}
}
}
queryParameters:
language:
type: string
default: en
description: Language to fetch word translation in specific language.
displayName: Language to fetch word translation in specific language.
words:
type:
- string
- boolean
- integer
default: true
description: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
displayName: |-
Include words of each ayah?
0 or false will not include words.
1 or true will include the words.
translations:
type: string
description: comma separated ids of translations to load for each ayah.
displayName: comma separated ids of translations to load for each ayah.
audio:
type: integer
description: Id of recitation if you want to load audio of each ayah.
displayName: Id of recitation if you want to load audio of each ayah.
tafsirs:
type: string
description: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
displayName: Comma separated ids of tafisrs to load for each ayah if you want to load tafisrs.
word_fields:
type: string
description: 'Comma separated list of word fields if you want to add more fields for each word. '
displayName: 'Comma separated list of word fields if you want to add more fields for each word. '
translation_fields:
type: string
description: 'Comma separated list of translation fields if you want to add more fields for each translation. '
displayName: 'Comma separated list of translation fields if you want to add more fields for each translation. '
fields:
type: string
description: comma separated list of ayah fields.
displayName: comma separated list of ayah fields.
/by_key:
displayName: by_key
'/{verse_key}':
displayName: verse_key
uriParameters:
verse_key:
type: string
description: 'Verse key ( chapter:verse) '
displayName: 'Verse key ( chapter:verse) '
get:
displayName: By Specific Verse By Key
description: |-
Get a specific ayah with key. Key is combination of surah number and ayah number. 1:1 is first ayah offirst surah for exampke.
10:5 is 5th ayah of 10th surah.