Tsarr Documentation - v2.11.0
    Preparing search index...

    Type Alias TorrentsProperties

    The response is:

    • empty, if the torrent hash is invalid
    • otherwise, a JSON object with the following fields

    NB: -1 is returned if the type of the property is integer but its value is not known.

    type TorrentsProperties = {
        save_path?: string;
        creation_date?: number;
        piece_size?: number;
        comment?: string;
        total_wasted?: number;
        total_uploaded?: number;
        total_uploaded_session?: number;
        total_downloaded?: number;
        total_downloaded_session?: number;
        up_limit?: number;
        dl_limit?: number;
        time_elapsed?: number;
        seeding_time?: number;
        nb_connections?: number;
        nb_connections_limit?: number;
        share_ratio?: number;
        addition_date?: number;
        completion_date?: number;
        created_by?: string;
        dl_speed_avg?: number;
        dl_speed?: number;
        eta?: number;
        last_seen?: number;
        peers?: number;
        peers_total?: number;
        pieces_have?: number;
        pieces_num?: number;
        reannounce?: number;
        seeds?: number;
        seeds_total?: number;
        total_size?: number;
        up_speed_avg?: number;
        up_speed?: number;
    }
    Index

    Properties

    save_path?: string

    Torrent save path

    creation_date?: number

    Torrent creation date (Unix timestamp)

    piece_size?: number

    Torrent piece size (bytes)

    comment?: string

    Torrent comment

    total_wasted?: number

    Total data wasted for torrent (bytes)

    total_uploaded?: number

    Total data uploaded for torrent (bytes)

    total_uploaded_session?: number

    Total data uploaded this session (bytes)

    total_downloaded?: number

    Total data downloaded for torrent (bytes)

    total_downloaded_session?: number

    Total data downloaded this session (bytes)

    up_limit?: number

    Torrent upload limit (bytes/s)

    dl_limit?: number

    Torrent download limit (bytes/s)

    time_elapsed?: number

    Torrent elapsed time (seconds)

    seeding_time?: number

    Torrent elapsed time while complete (seconds)

    nb_connections?: number

    Torrent connection count

    nb_connections_limit?: number

    Torrent connection count limit

    share_ratio?: number

    Torrent share ratio

    addition_date?: number

    When this torrent was added (unix timestamp)

    completion_date?: number

    Torrent completion date (unix timestamp)

    created_by?: string

    Torrent creator

    dl_speed_avg?: number

    Torrent average download speed (bytes/second)

    dl_speed?: number

    Torrent download speed (bytes/second)

    eta?: number

    Torrent ETA (seconds)

    last_seen?: number

    Last seen complete date (unix timestamp)

    peers?: number

    Number of peers connected to

    peers_total?: number

    Number of peers in the swarm

    pieces_have?: number

    Number of pieces owned

    pieces_num?: number

    Number of pieces of the torrent

    reannounce?: number

    Number of seconds until the next announce

    seeds?: number

    Number of seeds connected to

    seeds_total?: number

    Number of seeds in the swarm

    total_size?: number

    Torrent total size (bytes)

    up_speed_avg?: number

    Torrent average upload speed (bytes/second)

    up_speed?: number

    Torrent upload speed (bytes/second)