Specific Verses

- Using v1 of the api at `api/v1/bible`. This version uses query parameters only and no path parameters.

Endpoint: /api/v1/bible/verse

Query Parameters:

book string
The book of the Bible to get the verse from. eg Genesis
chapter integer
The chapter of the book to get the verse from. eg 1
verse string
The specific verse or range of verses to get. eg 1 or 1-4
bible_version string
The version of the Bible to use. eg KJV
book_group string
The group of that the book belongs to. eg Law

/api/v1/bible/verse?book=Genesis&chapter=1&verse=1

Get Genesis 1:1. Default version (NIV) is used.

/api/v1/bible/verse?book=Genesis&chapter=1&verse=1-2&bible_version=KJV

Get Genesis 1:1-2 using King James version

/api/v1/bible/verse?book=Philemon&chapter=1&verse=1-3&book_group=Paul Epistles&bible_version=KJV

Get Philemon 1:1-3 using King James version

/api/v1/bible/verse?book=Genesis&chapter=1&verse=1-2&book_group=History&bible_version=KJV

Providing a book_group in which the book isn't in raises 400 HTTP exception