Skip to main content
Torrin speaks the RealDebrid API. Most clients and Stremio addons that already support RealDebrid work by pointing their base URL at your instance and using your torrin API key. On top of that, torrin exposes a StremThru store API for clients like Comet, and a few public endpoints for signup and instance metadata.

Base URL

All requests go to your instance:
If you self-host, use your own base URL instead. Every path below is relative to it.

The three surfaces

RealDebrid-compatible

/rest/1.0/* — user, torrents, and link unrestriction in RealDebrid’s exact response shapes. This is what Stremio addons and RD clients use.

StremThru store

/v0/store/* — the StremThru store contract used by clients such as Comet.

Public

/api/* — create an account and read instance metadata. No auth required.

A first request

Fetch the authenticated user with your API key:
premium is the number of seconds left on the subscription — this is how RD clients detect an active account, so torrin returns it in the same shape.

Conventions

  • Auth is your API key as a bearer token. See Authentication.
  • Times are RFC 3339 (2026-08-26T12:00:00Z).
  • Errors use the surface’s native shape — RealDebrid’s { error, error_code } on /rest/1.0, and StremThru’s { error: { code, message } } on /v0/store. Each endpoint below lists the status codes it can return.
Use the endpoint pages in the sidebar to see every parameter, response schema, and a runnable example you can try with your own key.