Structured JSON access to all 50 chapters of the Book of Genesis.
GET /api/scripture?bookID=1&chapter=1&version=KJV
Authorization: Bearer YOUR_API_KEY
{
"status": "success",
"type": "full_chapter",
"version": "KJV",
"book": {
"id": 1,
"name": "Genesis"
},
"chapter": 1,
"range": null,
"results_count": 31,
"data": [
{
"verse": 1,
"text": "In the beginning God created the heaven and the earth."
},
{
"verse": 2,
"text": "And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters."
}
]
}
BibleBridge provides canonical JSON access to Genesis for applications such as reading plans, verse-of-the-day tools, cross-translation study, and AI-powered scripture analysis. Stable verse identifiers ensure consistency across all supported translations.