Skip to main content

Get timestamp range​

Find the timestamp range for a reciter's audio. Provide a chapter_number to get the full chapter range, or a verse_key/verse_id to scope to a verse. Use word or (word_from,word_to) to narrow to word timings. All time values are milliseconds.

Path Parameters
    reciter_id integer required

    The Id of the reciter

Query Parameters
    chapter_number integer

    Possible values: >= 1 and <= 114

    Chapter number (1 - 114). Required unless you provide verse_key or verse_id.

    verse_key string

    Verse key (e.g., 2:255). If provided, returns the verse timing range.

    verse_id integer

    Verse id. If provided, returns the verse timing range.

    word integer

    Possible values: >= 1

    1-based word index within the verse. Only applies when a verse is selected.

    word_from integer

    Possible values: >= 1

    1-based start word index within the verse. Use with word_to.

    word_to integer

    Possible values: >= 1

    1-based end word index within the verse. Use with word_from.

Responses

Successful response


Schema
    result object
    timestamp_from int32

    Start offset in milliseconds from the beginning of the file.

    timestamp_to int32

    End offset in milliseconds from the beginning of the file.

Loading...