
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
TypeScript client for accessing Bible data and search functionality. This package provides a clean interface to our REST API endpoints with full TypeScript support.
npm install biblesdk
import { listBooks, getVerse, getSearchResults } from 'biblesdk';
// List all books in the Bible
const books = await listBooks();
// Get a specific range of verses
const verse = await getVerses('GEN', 1, [1, 2]);
// Search for verses using natural language
const results = await getSearchResults('love your neighbor');
Please visit our Complete SDK Guide for reference docs and a live try-it-out experience.
This SDK is perfect for building:
This SDK provides access to the NET Bible (New English Translation) with comprehensive study notes. The NET Bible is copyrighted by Biblical Studies Press, L.L.C. and requires proper attribution for all uses.
When using this SDK to access NET Bible text, you must comply with the following requirements:
Use standard 3-letter book codes: GEN (Genesis), EXO (Exodus), PSA (Psalms), MAT (Matthew), JHN (John), etc. You can get the full list by calling listBooks().
Add concordance information to any verse request to get Strong's definitions, original language information, and transliterations:
const scriptureWithConcordanceInfo = await getPhrases('GEN', 1, [1, 2], true);
// Includes: strongs_number, strongs_type, transliteration, definition, hebrew_word, greek_word
The search endpoint uses AI-powered semantic search to find relevant verses based on meaning, not just exact text matches:
// Search using natural language
const results = await getSearchResults('love your neighbor');
Encountering some issue with the SDK or API? Please open an issue on our Github Issues board.
This SDK is provided free of charge for legitimate use. Users are responsible for complying with all applicable copyright laws. Rate limiting may be applied to ensure fair usage.
NET Bible® Copyright Notice: Scripture quotations are from the NET Bible® copyright ©1996, 2019 by Biblical Studies Press, L.L.C. http://netbible.com All rights reserved.
FAQs
Typescript client for Bible SDK API
The npm package biblesdk receives a total of 186 weekly downloads. As such, biblesdk popularity was classified as not popular.
We found that biblesdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.