BibleBridge

Canonical Scripture infrastructure for production systems.

Canonical Scripture infrastructure combining a deterministic Reference Resolution Engine with a licensing-safe Bible API.

Designed for long-lived applications that require licensing clarity, canonical stability, and predictable Scripture access.

Licensing-Safe Verified public-domain Scripture with no attribution or link-back requirements. Suitable for commercial, institutional, and ministry use. Legal & Provenance
Example API request
curl --get https://holybible.dev/api/scripture \
  --data bookID=43 \
  --data chapter=3 \
  --data range=16-16 \
  --data version=DRA \
  --data compare=WEB
{
  "type": "comparison_range",
  "primary_version": "DRA",
  "compare_version": "WEB",
  "book": {
    "id": 43,
    "name": "John"
  },
  "chapter": 3,
  "range": "16-16",
  "data": [
    {
      "verse": 16,
      "DRA": "For God so loved the world, as to give his only begotten Son...",
      "WEB": "For God so loved the world, that he gave his one and only Son..."
    }
  ]
}
Response truncated for brevity. Some metadata fields have been omitted.
Canonical identifiers and response shape are stable by design.
Canonical Reference Resolution Engine
curl --get https://holybible.dev/api/resolve \
  --data-urlencode "reference=II cor 5 17"
{
  "valid": true,
  "canonical_id": "2CO.5.17",
  "osis_id": "2Cor.5.17",
  "confidence": 0.9465
}
Messy human input becomes deterministic canonical structure — with OSIS-compatible identifiers.
Designed for production systems that require structural validation and immutable reference coordinates.

Translation-agnostic by design.
The Resolution Engine produces canonical and OSIS-compatible identifiers that integrate with any structured Bible database — including proprietary translations already licensed by your organization.