Original KJV 1611 Bible as JSON files. There are 80 books. Each book is a separate JSON file.
| 1 Chronicles.json | ||
| 1 Corinthians.json | ||
| 1 Esdras.json | ||
| 1 John.json | ||
| 1 Kings.json | ||
| 1 Maccabees.json | ||
| 1 Peter.json | ||
| 1 Samuel.json | ||
| 1 Thessalonians.json | ||
| 1 Timothy.json | ||
| 2 Chronicles.json | ||
| 2 Corinthians.json | ||
| 2 Esdras.json | ||
| 2 John.json | ||
| 2 Kings.json | ||
| 2 Maccabees.json | ||
| 2 Peter.json | ||
| 2 Samuel.json | ||
| 2 Thessalonians.json | ||
| 2 Timothy.json | ||
| 3 John.json | ||
| Acts.json | ||
| Amos.json | ||
| Baruch.json | ||
| Bel and the Dragon.json | ||
| Books.json | ||
| Books_chapter_count.json | ||
| Colossians.json | ||
| Daniel.json | ||
| Deuteronomy.json | ||
| Ecclesiastes.json | ||
| Ecclesiasticus.json | ||
| Ephesians.json | ||
| Esther.json | ||
| Exodus.json | ||
| Ezekiel.json | ||
| Ezra.json | ||
| Galatians.json | ||
| Genesis.json | ||
| Habakkuk.json | ||
| Haggai.json | ||
| Hebrews.json | ||
| Hosea.json | ||
| Isaiah.json | ||
| James.json | ||
| Jeremiah.json | ||
| Job.json | ||
| Joel.json | ||
| John.json | ||
| Jonah.json | ||
| Joshua.json | ||
| Jude.json | ||
| Judges.json | ||
| Judith.json | ||
| Lamentations.json | ||
| Letter of Jeremiah.json | ||
| Leviticus.json | ||
| Luke.json | ||
| Malachi.json | ||
| Mark.json | ||
| Matthew.json | ||
| Micah.json | ||
| Nahum.json | ||
| Nehemiah.json | ||
| Numbers.json | ||
| Obadiah.json | ||
| Philemon.json | ||
| Philippians.json | ||
| Prayer of Azariah.json | ||
| Prayer of Manasseh.json | ||
| Proverbs.json | ||
| Psalms.json | ||
| README.md | ||
| Revelation.json | ||
| Romans.json | ||
| Ruth.json | ||
| Song of Solomon.json | ||
| Susanna.json | ||
| Titus.json | ||
| Tobit.json | ||
| Wisdom of Solomon.json | ||
| Zechariah.json | ||
| Zephaniah.json | ||
Bible-kjv-1611
- This repository contains the original KJV 1611 Bible in JSON format.
- There are 80 books. Each book is a separate JSON file.
- Included is a JSON array of all 80 book names.
- Also included is a JSON array of book and chapter count pairs.
Example JSON verse
As an example, this is Psalms 23 verse 1 in JSON format.
{
"book": "Psalms",
"chapter-count": "150",
"chapters": [
{
.......
"chapter": 23,
"verses": [
{
"verse": 1,
"text": "The Lord is my shepheard, I shall not want."
},
.....
]
}
]
}
Books.json
Books.json is a JSON array containing all the 80 books of the KJV 1611 Bible.
This is a sample of Books.json.
["Genesis", "Exodus", "Leviticus", "Numbers", ..., "Prayer of Manasseh", "1 Maccabees", "2 Maccabees"]
Books_chapter_count.json
Books_chapter_count.json is a JSON 2D array containing an array of (book, chapter-count) pairs of all the 80 books of the KJV 1611 Bible.
This is a sample of Books_chapter_count.json.
[["Genesis", 50], ["Exodus", 40], ["Leviticus", 27], ["Numbers", 36], ..., ["1 Maccabees", 16], ["2 Maccabees", 15]]