← Back to catalog
bible.passage
live upstream$0.001 / callGet Bible Chapter Text
Fetch the verse-by-verse text of a Bible chapter for a given translation and book (e.g. KJV / John / 3). Returns array of {number, text}. Free Use Bible API
Input schema
bookrequired
stringBook ID — typically a 3-letter code (e.g. "GEN", "JHN", "PSA") or full name. Use bible.books to discover.
chapterrequired
integerChapter number (1-based, e.g. 3 for John 3).
translationrequired
stringBible translation ID (e.g. "KJV", "ASV", "WEB", "BSB").
Call via REST
curl -X POST https://unifyapi.pro/api/call/bible.passage \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"book":"<book>","chapter":0,"translation":"<translation>"}'