UnifyAPI
← Back to catalog

bible.passage

live upstream$0.001 / call

Get 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

Educationprovider: Bible#bible#education

Input schema

bookrequired

Book ID — typically a 3-letter code (e.g. "GEN", "JHN", "PSA") or full name. Use bible.books to discover.

string
chapterrequired

Chapter number (1-based, e.g. 3 for John 3).

integer
translationrequired

Bible translation ID (e.g. "KJV", "ASV", "WEB", "BSB").

string

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>"}'

Try it

Paste a UnifyAPI key (create one in the dashboard) and run a real call.