GET /api/torah/chapter/:book/:chapter
קבלת פרק מספר תורה מסוים
דוגמה לתגובה:{
"book": "בראשית",
"chapter": 1,
"verses": [
{"number": 1, "text": "בְּרֵאשִׁית..."},
// ...
]
}
GET /api/torah/verse/:book/:chapter/:verse
קבלת פסוק ספציפי
GET /api/commentaries/:book/:chapter
קבלת פרשנויות לפרק
fetch('/api/torah/chapter/bereshit/1')
.then(response => response.json())
.then(data => console.log(data));