Scriptures


All Scriptures

Books are indexed 1-66: Genesis - Revelation.

Base URL returns full list of all scriptures:

https://api.countrysidebible.org/scriptures

Example response:

{
  "scriptureEntries": [
    {
      "id": 1,
      "name": "Genesis",
      "testament": "Old Testament",
      "category": "Pentateuch"
    },
    {
      "id": 2,
      "name": "Exodus",
      "testament": "Old Testament",
      "category": "Pentateuch"
    },
    ...
    ...
  ],
  "metadata": {
    "count": 66
  }
}

Single Scripture

Specifying the scripture ID after the base URL will return the single scripture item with that unique ID:

Example request:

https://api.countrysidebible.org/scriptures/3

Example response:

{
  "scriptureEntries": [
    {
      "id": 3,
      "name": "Leviticus",
      "testament": "Old Testament",
      "category": "Pentateuch"
    }
  ],
  "metadata": {
    "count": 1
  }
}