internetarchive-ts - v0.1.0
    Preparing search index...

    Type Alias WaybackSnapshotInfoBeta

    type WaybackSnapshotInfo = {
        digest: string;
        length: number;
        mimetype: string;
        original: string;
        statuscode: string;
        timestamp: string;
        urlkey: string;
    }
    Index

    Properties

    digest: string

    The SHA1 hash digest of the content, excluding the headers. It's usually a base-32-encoded string.

    length: number

    The compressed byte size of the corresponding WARC record, which includes WARC headers, HTTP headers, and content payload.

    mimetype: string

    The mimetype of the archived content, which can be one of these:

    • "text/html"
    • "warc/revisit"
    original: string

    The originally archived URL, which could be different from the URL you supplied.

    statuscode: string

    The HTTP status code of the snapshot. If the mimetype is warc/revisit, the value returned for the statuscode key can be blank, but the actual value is the same as that of any other entry that has the same digest as this entry.

    timestamp: string

    A 14 digit date-time representation in the YYYYMMDDhhmmss format.

    urlkey: string

    A canonical transformation of the URL you supplied, for example, org,eserver,tc)/. Such keys are useful for indexing.