Interface Article

interface Article {
    url: string;
    html: string;
    author: string;
    author_cite: string;
    author_short: string;
    author_type: number;
    date: string;
    title: string;
    source: string;
    word_count: number;
}

Properties

url: string

The URL of the article

html: string

The HTML content of the article

author: string

The author of the article

author_cite: string

Author name in Last, First Middle format

author_short: string

Author name in Last format

author_type: number

Author type ["single", "two-author", "more-than-two", "organization"]

date: string

The publication date of the article

title: string

The title of the article

source: string

The source or origin of the article

word_count: number

The word count of the full text (without HTML tags)