Wrapper and CLI for the RealDebrid API
Find a file
2025-10-14 00:06:04 +08:00
.github/workflows cli: add version command 2025-09-23 13:23:03 +08:00
.vscode init 2025-07-27 04:06:40 +08:00
examples fix: json parsing with torrents list and set defaults for getting torrents and downloads list 2025-09-23 13:01:03 +08:00
rd cli: fix errors 2025-10-14 00:06:04 +08:00
realdebrid fix: api get traffic/details json parse 2025-09-23 13:31:49 +08:00
.gitignore chore: setup goreleaser for cli 2025-09-21 23:22:02 +08:00
.goreleaser.yaml chore: setup goreleaser for cli 2025-09-21 23:22:02 +08:00
go.mod go mod tidy 2025-09-19 13:11:36 +08:00
go.sum go mod tidy 2025-09-19 13:11:36 +08:00
LICENSE update docs 2025-08-29 14:58:06 +08:00
README.md update readme 2025-08-29 15:01:11 +08:00

realdebrid

Wrapper and CLI for the RealDebrid API

go get -u github.com/tbdsux/realdebrid-cli/realdebrid

Usage

package main

import (
	"fmt"
	"os"

	"github.com/tbdsux/realdebrid-cli/realdebrid"
)


func main() {
	client := realdebrid.NewClient(os.Getenv("REALDEBRID_API_KEY"))

	user, err := client.GetUser()
	fmt.Println(user, err)
}

CLI