API Documentation

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.

1. Passage List

This endpoint returns a list of passages

METHODBASE URLENDPOINT
GEThttps://beeble.vercel.app/api/v1/passage/list

Response

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
        },
        ...
    ]
}

2. Passage Content

This endpoint returns a passage content

METHODBASE URLENDPOINT
GEThttps://beeble.vercel.app /api/v1/passage/{abbr}/{chapter}

Description

  • abbr is abbreviation of book name
  • chapter is a number of chapter

Response

https://beeble.vercel.app/api/v1/passage/Kej/1
{
    "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."
            },
            ...
        ]
    }
}
⓪ 2023 Erwindo Sianipar / No rights reserved by the author / v1.0.0 / Soli Deo gloria