Skip to main content

Get chapter's audio file of a reciter​

Get chapter's audio file of a reciter. Supports segments (boolean query param; default false). When segments=true, verse-level timestamp entries include segments ([word_index, start_ms, end_ms]). All time values are milliseconds.

Path Parameters
    id number required

    The Id of the reciter

    chapter_number number required

    Possible values: >= 1 and <= 114

    The number of the chapter

Query Parameters
    segments boolean

    If true, each verse timestamp includes a segments array of [word_index, start_ms, end_ms] triplets. Time values are in milliseconds.

Responses

Successful response


Schema
    audio_file object required
    id integer required
    chapter_id integer required
    file_size float required

    File size in bytes.

    format string required
    audio_url uri required
    timestamps object[]

    Present when timing data is available. If segments=true, each item may include a segments array.

  • Array [
  • verse_key string required
    timestamp_from int32 required

    Start offset in milliseconds from the beginning of the file.

    timestamp_to int32 required

    End offset in milliseconds from the beginning of the file.

    duration int32 required

    Duration in milliseconds (mirrors source data; may be negative in legacy data).

    segments array[] nullable

    Possible values: >= 3, <= 3

    Present only when segments=true. Word-level timing triplets for the verse.

  • ]
Loading...