Beeble Indonesia is an API provider that offers a comprehensive set of tools and resources for developers who want to integrate Bible data into their applications.
This API allows developers to access different versions of the Bible in various languages, along with additional information such as book, chapter, and verse title, numbers, and contents.
The Bible content in Beeble Indonesia's API is sourced from SABDA LABS. It's important to note that Beeble Indonesia is not affiliated with the SABDA. Developers can use Beeble Indonesia's API to retrieve passage lists and content, which are sourced from SABDA's database. With clear documentation and easy-to-use endpoints.
This endpoint returns a list of passages
METHOD | BASE URL | ENDPOINT |
---|---|---|
GET | https://beeble.vercel.app | /api/v1/passage/list |
{ "data": [ { "no": 1, "abbr": "Kej", "name": "Kejadian", "chapter": 50 }, { "no": 2, "abbr": "Kel", "name": "Keluaran", "chapter": 40 }, ... ] }
This endpoint returns a passage content
METHOD | BASE URL | ENDPOINT |
---|---|---|
GET | https://beeble.vercel.app | /api/v1/passage/{abbr}/{chapter} |
Description
{ "data": { "book": { "no": 1, "name": "Kejadian", "chapter": 1 }, "verses": [ { "verse": 0, "type": "title", "content": "Allah menciptakan langit dan bumi serta isinya" }, { "verse": 1, "type": "content", "content": "Pada mulanya Allah menciptakan langit dan bumi." }, ... ] } }