Understand Stremio addon resource types
masterTo display data in Stremio, an addon must provide specific resources. The manifest is the only mandatory resource. Other optional resources allow your addon to provide content like catalogs, detailed metadata, streams, and subtitles.
| Resource | Handler | Response | Description |
|---|---|---|---|
manifest | - | manifest | The addon description and capabilities. |
catalog | defineCatalogHandler | meta_preview | Summarized collection of meta preview items. Used in Board, Discover, and Search. |
metadata | defineMetaHandler | meta | Detailed description of a meta item (shown on the Detail page). |
streams | defineStreamHandler | stream | Instructions on how to obtain media content (e.g., torrent info hash, HTTP URL). |
subtitles | defineSubtitlesHandler | subtitles | Subtitles for the chosen media. |
addon_catalog | defineResourceHandler | addon_catalog | A catalog (list) of other addon manifests. |