Skip to content

An API that scrapes bible websites to get daily verse, and verses.

License

Notifications You must be signed in to change notification settings

cvyx/BibleAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BibleAPI

An API which scrapes bible websites to get daily verse, and verses.

Installation

Note I use bun in these examples. npm will also work if you don't have or want to install bun

First step is of course installing the module

bun install @cvyx/bible

Usage

Import the library

import { getVerse } from 'placeholder';

Getting the verse of the day:

import { getVerse } from 'placeholder';;

  console.log(await getVerseOfTheDay());
{
  "citation": "Hebrews 11:1 (NIV)",
  "passage": "Now faith is confidence in what we hope for and assurance about what we do not see."
}

Getting any verse:

import { getVerse } from 'placeholder';

console.log(await getVerse('Luke', '9:55', 'NLT'))
{
  "citation": "Luke 9:55 NLT",
  "passage": "But Jesus turned and rebuked them.",
  "footnotes": "9:55 Some manuscripts add an expanded conclusion to verse 55 and an additional sentence in verse 56: And he said, “You don’t realize what your hearts are like. 56 For the Son of Man has not come to destroy people’s lives, but to save them.”",
}

or alternatively..

import { getVerse } from 'placeholder';

getVerse('Psalms', '22:9-10', 'NIV').then(result => console.log(result));
{
  "citation": "Psalms 22:9-10 NIV",
  "passage": "Yet you brought me out of the womb; you made me trust in you, even at my mother’s breast. From birth I was cast on you; from my mother’s womb you have been my God.",
}

Using the split parameter:

console.log(await getVerse('John', '1:1-3', "NLT", true))
{
  "citation": "John 1:1-3 NLT",
  "passage": [ "Prologue: Christ, the Eternal Word", " In the beginning the Word already existed.The Word was with God,and the Word was God.",
    " He existed in the beginning with God.", " God created everything through him,and nothing was created except through him."
  ],
}

Responses

Requests return a JSON object and a status code.

Good Respsonses

Good responses will return a JSON with a citation and a passage.

{
  "citation": "John 3:16 NLT",
  "passage": "For this is how God loved the world: He gave his one and only Son, so that everyone who believes in him will not perish but have eternal life"
}

Bad Responses

Trying to access a passage that does not exist will prompt an error message

{
  "code": 400,
  "message": "Could not find passage Script 9:99 NLT",
}

Versions

Checkout https://www.biblegateway.com/versions/

Links

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested.

License

This project is licensed under the terms of the MIT license.

Releases

No releases published

Packages

 
 
 

Languages

  • TypeScript 100.0%