← Écriture sainte

Recherche de versets bibliques

GET /bible/:reference

Recherchez n'importe quel verset ou passage biblique par référence. Prend en charge les noms de livres avec numéros de chapitre et de verset (par ex. « john 3:16 », « psalm 23:1-6 », « genesis 1:1-10 »). Renvoie le texte intégral, les détails de la traduction et le détail verset par verset.

Exemples de requêtes

Utilisation de base
curl "https://nordapi.ee/api/v1/bible/john+3:16"

Réponse en direct

{
  "data": {
    "reference": "John 3:16",
    "text": "\nFor God so loved the world, that he gave his one and only Son, that whoever believes in him should not perish, but have eternal life.\n\n",
    "translation_id": "web",
    "translation_name": "World English Bible",
    "verses": [
      {
        "book_name": "John",
        "chapter": 3,
        "text": "\nFor God so loved the world, that he gave his one and only Son, that whoever believes in him should not perish, but have eternal life.\n\n",
        "verse": 16
      }
    ]
  },
  "success": true
}