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

    Interface CitationMatch

    Result of a single citation match (ECitMatch API)

    interface CitationMatch {
        authorName: string;
        firstPage: string;
        journal: string;
        key: string;
        pmid?: string;
        status: string;
        volume: string;
        year: string;
    }
    Index
    authorName: string

    Author name from the query

    firstPage: string

    First page from the query

    journal: string

    Journal title from the query

    key: string

    User-defined key from the query

    pmid?: string

    Matched PMID (null if not found)

    status: string

    Match status ("found", "not_found", or "ambiguous")

    volume: string

    Volume from the query

    year: string

    Year from the query