PageDetails: {
    current_url: string;
    limit: number;
    next_url: string | null;
    prev_url: string | null;
    result_count: number;
}

Details of the transcript page. Transcripts are sorted from newest to oldest. The previous URL always points to a page with older transcripts.

Type declaration

  • current_url: string

    The URL used to retrieve the current page of transcripts

  • limit: number

    The number of results this page is limited to

  • next_url: string | null

    The URL to the next page of transcripts. The next URL always points to a page with newer transcripts.

  • prev_url: string | null

    The URL to the next page of transcripts. The previous URL always points to a page with older transcripts.

  • result_count: number

    The actual number of results in the page

{
"limit": 10,
"result_count": 10,
"current_url": "https://api.assemblyai.com/v2/transcript?limit=10",
"prev_url": "https://api.assemblyai.com/v2/transcript?limit=10&before_id=62npeahu2b-a8ea-4112-854c-69542c20d90c",
"next_url": "https://api.assemblyai.com/v2/transcript?limit=10&after_id=62nfw3mlar-01ad-4631-92f6-629929496eed"
}