Skip to content

Religion: Bible/Quaran

Religion API allows you to retrieve sacred texts from the Bible and Quran.

  • Bible: Supports multiple translations (KJV, WEB, BBE, etc.).
  • Quran: Returns Arabic text, English translation, and audio.

POST /religion

FieldTypeRequiredDescription
typestringYes’bible’ or ‘quran’.
referencestringYesFormat: “Book Chapter:Verse” or “Surah:Ayah”.
versionstringNoBible translation code. Default: ‘web’. Options: kjv, bbe, oeb-us, web.
const res = await fetch('https://heavstal.com.ng/api/v1/religion', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'x-api-key': 'KEY' },
body: JSON.stringify({
type: 'bible',
reference: 'John 3:16',
version: 'kjv'
})
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"type": "bible",
"reference": "John 3:16",
"text": "For God so loved the world...",
"version": "King James Version",
"version_id": "kjv"
}
}