@ctrl/qbittorrent
    Preparing search index...

    Interface QBittorrentConfig

    interface QBittorrentConfig {
        apiKey?: string;
        baseUrl: string;
        dispatcher?: any;
        password?: string;
        path?: string;
        timeout?: number;
        username?: string;
    }

    Hierarchy

    • TorrentClientConfig
      • QBittorrentConfig
    Index

    Properties

    apiKey?: string

    qBittorrent WebAPI key. Added in qBittorrent v5.2.0. When set, the client uses Authorization: Bearer <apiKey> instead of cookie login. https://github.com/qbittorrent/qBittorrent/wiki/API-Key-Authentication-%28%E2%89%A5v5.2.0%29

    baseUrl: string
    dispatcher?: any

    Pass proxy agent to ofetch Only supported in Node.js >= 18 using undici

    password?: string
    path?: string

    ex - '/json'

    timeout?: number

    global request timeout

    username?: string