Finds one or more Bibles.
https://api.biblia.com/v1/bible/find/{bible}
https://api.biblia.com/v1/bible/find?query={query}
Both of the following requests will return information for the Lexham English Bible (LEB).
https://api.biblia.com/v1/bible/find?query=lexham&key=abc123
https://api.biblia.com/v1/bible/find/leb.json?key=abc123
The following request will return all available Bibles.
https://api.biblia.com/v1/bible/find?key=abc123
Only Bibles that match all of the request parameters will be returned. If no request parameters are specified, all entries are returned.
bible | The ID of the Bible (e.g. "KJV"). |
query | The query that matches the Bibles to return. |
strictQuery | The strict query (words only match title, abbreviation, and author) that matches the Bibles to return. |
start | The zero-based index of the first entry to return (default 0). |
limit | The maximum number of entries to return (all if unspecified). |
{
"bibles" : [
{
"bible" : …,
"title" : …,
"abbreviatedTitle" : …,
"publicationDate" : …,
"languages" : […],
"publishers" : […],
"imageUrl" : …,
"description" : …,
"copyright" : …,
"extendedCopyright" : …
},
…
]
}