The first thing to define for your addon is the manifest, which describes it's name, purpose and some technical details.
Valid properties are:
id
- required - string, identifier, dot-separated, e.g. "com.stremio.filmon"
name
- required - string, human readable name
description
- required - string, human readable description
version
- required - string, semantic version of the addon
NOTE: In order to understand the next properties better, please check out the protocol documentation and keep in mind requests to addons are formed in the format of /{resource}/{type}/{id}
resources
- required - array of objects or strings, supported resources - for example ["catalog", "meta", "stream", "subtitles", "addon_catalog"]
, resources can also be added as objects instead of strings, for additional details on how they should be requested, example: { "name": "stream", "types": [ "movie" ], "idPrefixes": [ "tt" ] }
(see the ADVANCED note)
types
- required - array of strings, supported types, from all the Content Types
. If you wish to provide different sets of types for different resources, see the ADVANCED note.
idPrefixes
- optional - array of strings, use this if you want your addon to be called only for specific content IDs - for example, if you set this to ["yt_id:", "tt"]
, your addon will only be called for id
values that start with yt_id:
or tt
. If you wish to provide different sets of idPrefixes
for different resources, see the ADVANCED note.
A resource may either be a string (e.g. "meta"
) or an object of the format { name, types, idPrefixes? }
.
The latter can be used to provide different types
and idPrefixes
for a particular resource. Those properties work in the same way as if you put them in the manifest directly.
Keep in mind, idPrefixes
is always optional, and if you use the full notation without it (e.g. { name: "stream", types: ["movie"] }
), this would mean matching on all those types and all possible IDs.
If you just provide a string, the types
and idPrefixes
from the manifest will be applied for the resource.
The local addon is an example of a complex resource description.
Please note, the idPrefixes
filtering does not matter for the "catalog"
resource, since this is a special case that will always be requested if defined in catalogs
.
NOTE: Leave this an empty array ([]
) if your addon does not provide the catalog
resource.
catalogs
- required - array of Catalog objects
, a list of the content catalogs your addon provides
type
- required - string, this is the content type of the catalog
id
- required - string, the id of the catalog, can be any unique string describing the catalog (unique per addon, as an addon can have many catalogs), for example: if the catalog name is "Favourite Youtube Videos", the id can be "fav_youtube_videos"
name
- required - string, human readable name of the catalog
extra
- optional - array of Extra objects
, all extra properties related to this catalog; should be set to an array of { name, isRequired, options, optionsLimit }
Stremio can invoke /catalog/{type}/{id}.json
for catalogs specified in catalogs
in order to get the feed of Meta Preview Objects.
It can also invoke /catalog/{type}/{id}/{extraProps}.json
in which case {extraProps}
will contain other properties such as a search query in order to search the catalog for a list of Meta Preview Object results.
extra
only needs to be set in certain cases, for example, these don't need to be set if your catalog only supports giving a feed of items, but not search them.
If your catalog supports full text searching, set extra: [{ name: "search", isRequired: false }]
, if your catalog supports filtering by genre
, set extra: [{ name: "genre", isRequired: false }]
. But what if your catalog supports only searching, but not giving a feed? Then set extra: [{ name: "search", isRequired: true }]
and your catalog will only be requested for searching, nothing else.
The format of extra
is an array of { name, isRequired, options, optionsLimit }
, where:
-
name
- required - string, is the name of the property; this name will be used in theextraProps
argument itself -
isRequired
- optional - boolean, set to true if this property must always be passed -
options
- optional - array of strings, possible values for this property; this is useful for things like genres, where you need the user to select from a pre-set list of options (e.g.{ name: "genre", options: ["Action", "Comedy", "Drama"] }
); -
optionsLimit
- optional - number, the limit of values a user may select from the pre-setoptions
list; by default, this is set to 1
For a complete list of extra catalog properties that Stremio pays attention to, check the Catalog Handler Definition
If you're looking for the legacy way of setting extra properties (also called "short"), check out the old docs
addonCatalogs
- optional - array of Catalog objects
, a list of other addon manifests, this can be used for an addon to act just as a catalog of other addons.
type
- required - string, this is the content type of the catalog
id
- required - string, the id of the catalog, can be any unique string describing the catalog (unique per addon, as an addon can have many catalogs), for example: if the catalog name is "Favourite Youtube Videos", the id can be "fav_youtube_videos"
name
- required - string, human readable name of the catalog
You can choose to accept user data for your addon, to do this you will need to first set manifest.behaviorHints.configurable
to true
, then set the manifest.config
property.
When setting the manifest.config
property, the landing page will redirect to /configure
where there will be an auto-generated configuration page.
TIP - you can also set manifest.behaviorHints.configurationRequired
to state that your addon does not work without user data
config
- optional - array ofConfig objects
, a list of settings that users can set for your addon
key
- required - string, a key that will identify the user chosen value
type
- required - string, can be "text", "number", "password", "checkbox" or "select"
default
- optional - string, the default value, for type: "boolean"
this can be set to "checked" to default to enabled
title
- optional - string, the title of the setting
options
- optional - array, the list of (string) choices for type: "select"
required
- optional - boolean, if the value is required or not, only applies to the following types: "string", "number" (default is false
)
TIP - if you require a more advanced configuration page, you can also create this page yourself instead of using the Addon SDK.
background
- optional - string, background image for the addon; URL to png/jpg, at least 1024x786 resolution
logo
- optional - string, logo icon, URL to png, monochrome, 256x256
contactEmail
- optional - string, contact email for addon issues; used for the Report button in the app; also, the Stremio team may reach you on this email for anything relating your addon
behaviorHints
- all are optional - object, supports the properties:
-
adult
- boolean, if the addon includes adult content, default isfalse
; used to provide an adequate warning to the user -
p2p
- boolean, if the addon includes P2P content, such as BitTorrent, which may reveal the user's IP to other streaming parties; used to provide an adequate warning to the user -
configurable
- boolean, default isfalse
, if the addon supports settings, will add a button next to "Install" in Stremio that will point to the/configure
path on the addon's domain, for more information read User Data (or if you are not using the Addon SDK, read: Advanced User Data and Creating Addon Configuration Pages) -
configurationRequired
- boolean, default isfalse
, if set totrue
the "Install" button will not show for your addon in Stremio, instead a "Configure" button will show pointing to the/configure
path on the addon's domain, for more information read User Data (or if you are not using the Addon SDK, read: Advanced User Data and Creating Addon Configuration Pages)
TIP - to implement sources where streams are geo-restricted, see Stream objects
geos
{
"id": "org.stremio.example",
"version": "0.0.1",
"description": "Example Stremio Addon",
"name": "Example Addon",
"resources": [
"catalog",
"stream"
],
"types": [
"movie",
"series"
],
"catalogs": [
{
"type": "movie",
"id": "moviecatalog"
}
],
"idPrefixes": ["tt"]
}
This manifest example is for an addon that:
- provides streams and catalogs
- has one catalog that includes movies
- will receive stream requests for meta items that have an id that starts with
tt
(imdb id, example:tt0068646
), for both movies and series
For more examples of addon manifests, see: