← Back to All Endpoints

Verse at Position

Calculates the specific verse at a given 1-indexed offset within a range. Useful for calculating verse positions for notifications or sequential reading plans.

Parameters

Working Examples

Click any example below to see the live result:

Single Chapter Range

Find the 6th verse in Genesis 1:1-1:21

Try it: https://verseapi.memorize.live/api/v1/util/verse-at-position?range=Genesis%201:1-1:21&position=6

Multi-Chapter Range

Find the 35th verse in Genesis 1:1-2:10

Try it: https://verseapi.memorize.live/api/v1/util/verse-at-position?range=Genesis%201:1-2:10&position=35

Response Format

{
  "action": "verse_at_position",
  "result": {
    "reference": "Genesis 2:4",
    "numeric": "01002004",
    "components": {
      "book_num": 1,
      "book": "Genesis",
      "chapter": 2,
      "verse": 4,
      "calculation": {
         "position_in_range": 35,
         "position_in_chapter": 4,
         "total_verses": 56
      }
    }
  }
}