Infrastructure-Ready KJV Public Domain 00:00 UTC Reset

Free KJV Verse of the Day API

A deterministic daily Bible API delivering structured KJV Scripture in JSON. No scraping — no licensing complexity — built for modern applications.

This endpoint is part of the broader HolyBible.dev KJV Bible API platform, providing reliable Scripture data for web, mobile, and server applications.

Free tier: 500 requests per day. Instant API key. No credit card required.


Live Preview — Today's Verse

James 1:2-4 (KJV)

My brethren, count it all joy when ye fall into divers temptations; Knowing this, that the trying of your faith worketh patience. But let patience have her perfect work, that ye may be perfect and entire, wanting nothing.

Automatically refreshed at 00:00 UTC.


Example Request

curl https://holybible.dev/api/votd \
  -H "Authorization: Bearer YOUR_API_KEY"

Predictable JSON Response

{
  "reference": "Colossians 3:23",
  "text": "And whatsoever ye do, do it heartily, as to the Lord...",
  "translation": "KJV",
  "permissions": "King James Version - Public Domain."
}

Node.js Example

const response =
await
fetch(
"https://holybible.dev/api/votd", {
  headers: {
    Authorization:
    `Bearer ${process.env.BIBLEBRIDGE_API_KEY}`
  }
});

const data =
await response.json();

console.log(
`${data.reference} (${data.translation})`);
console.log(data.text);

Frequently Asked Questions

Is this Bible API free?

Yes. The Verse of the Day endpoint is available on the free tier with 500 requests per day — no credit card required.

Does the verse change for each user?

No. The verse resets globally at 00:00 UTC. All authenticated applications receive the same Scripture for that calendar date.

Is the King James Version licensed?

No. The KJV is public domain and may be used without licensing restrictions.


Start Building Today

Generate your API key and integrate in under 2 minutes.

Create Free Account