Spaces:
Paused
Paused
File size: 1,610 Bytes
95f4e64 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# Stremio - Deep links
Stremio supports two types of deep links through the `stremio://` protocol
**NOTE:** GitHub does not allow links with a custom protocol, so just copy-paste the examples links in your browser's address bar and press Enter.
## To addons
Simply take a normal URL to a Stremio addon manifest, e.g. `https://watchhub-us.strem.io/manifest.json`, and replace the leading `https://` with `stremio://`
E.g. [stremio://watchhub-us.strem.io/manifest.json](stremio://watchhub-us.strem.io/manifest.json)
## To a page
### Board
[stremio://board](stremio://board)
### Discover
[stremio://discover](stremio://discover)
Discover does not support deeper linking for now.
### Detail
`stremio://detail/{type}/{id}/{videoId}`
* `type` corresponds to [content types](./api/responses/content.types.md)
* `id` is the [meta object ID](./api/responses/meta.md#meta-object)
* `videoID` is the [video object ID](./api/responses/meta.md#video-object); leave this empty if you only wish to show the list of episodes/videos (not applicable for one-video types, such as `movie` and `tv`)
In the Cinemeta addon, the `videoID` is the same as the `id` for movies, and for series it's formed as `{id}:{season}:episode`
In the Channels addon, the `videoID` is formed as `{id}:{youtube video ID}`
Examples:
[stremio://detail/movie/tt0066921/tt0066921](stremio://detail/movie/tt0066921/tt0066921)
[stremio://detail/series/tt0108778/tt0108778:1:1](stremio://detail/series/tt0108778:1:1)
[stremio://detail/channel/yt_id:UCrDkAvwZum-UTjHmzDI2iIw](stremio://detail/channel/yt_id:UCrDkAvwZum-UTjHmzDI2iIw)
|