Overview
A Biblia Digital offers a REST API to access multiple Portuguese Bible versions, chapters, and verses in structured JSON format. It removes the need to host or parse Bible text files yourself.
Beginner Tip
Register for a free token at abibliadigital.com.br/en — the token goes in the Authorization header as 'Bearer YOUR_TOKEN'. Start with the /books endpoint to get book abbreviations before fetching chapters.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from A Bíblia Digital",
"description": "Do not worry about managing the multiple versions of the Bible",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
book.abbrev.pt Portuguese abbreviation of the Bible book, e.g. gn for Genesis book.name Full name of the Bible book in Portuguese chapter Chapter number of the returned verse number Verse number within the chapter text The verse text in the requested Bible version and language version Bible version code used for the response, e.g. nvi or arc Implementation Example
const url = "https://www.abibliadigital.com.br/en";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Bhagavad Gita
The Bhagavad Gita API provides structured access to all 18 chapters and 700 verses with translations from 21+ authors in Sanskrit, English, and Hindi.
The Bible
API.Bible aggregates over 2,500 Bible versions across 1,600+ languages from the American Bible Society.
Bhagavad Gita
This Bhagavad Gita API from bhagavadgita.io provides OAuth-authenticated access to all chapters and verses with English commentary and multiple translations.
Bhagavad Gita telugu
⭐ Beginner's PickBhagavad Gita Telugu API delivers all Gita verses in Telugu and Odia languages with no authentication required.
Bible-api
⭐ Beginner's PickBible-api.com is a free, no-auth REST API that returns Bible verses and passages in multiple translations using a simple URL pattern.