pubmed-client (Node.js)
    Preparing search index...

    Interface EuropePmcSearchPage

    One page of Europe PMC search results

    interface EuropePmcSearchPage {
        hitCount: number;
        nextCursorMark?: string;
        results: EuropePmcSearchResult[];
    }
    Index
    hitCount: number

    Total number of records matching the query, across all pages

    nextCursorMark?: string

    Cursor to pass as cursorMark to fetch the next page.

    Europe PMC keeps returning the same value once the last page is reached, so a cursor equal to the one just used means "no more pages".

    Records on this page