Bible Services >

Bible Parse

Parses the specified text as one or more Bible passages. Can also be used to render a Bible reference in short, medium, or long form.

https://api.biblia.com/v1/bible/parse

Examples

https://api.biblia.com/v1/bible/parse?passage=2+Kgs+3-4&key=123abc

https://api.biblia.com/v1/bible/parse?passage=2+Kgs+1-2,+4-5&key=123abc

Request Parameters

passage The text to parse (required).
style Style of the rendered form (short, medium, long; default long).

Response

{
  "passage" : "2 Kings 3:1-2, 4-5"
  "passages" : [
    {
      "passage" :  "2 Kings 3:1-2",
      "parts" : { "book" : "2 Kings", "chapter" : 3, "verse" : 1, "endVerse" : 2 }
    },
    {
      "passage" : "2 Kings 3:4-5",
      "parts" : { "book" : "2 Kings", "chapter" : 3, "verse" : 4, "endVerse" : 5 }
    }
  ]
}


Biblia.com API Documentation