Retrieve a list of all series from the MediaStream platform
cURL
curl --request GET \ --url https://api.example.com/api/series \ --header 'X-API-Token: <x-api-token>'
{ "200": {}, "401": {}, "500": {}, "data": [ { "_id": "<string>", "title": "<string>", "description": "<string>", "type": "<string>", "images": [ { "_id": "<string>", "path": "<string>", "basePath": "<string>" } ], "seasons": [ { "_id": "<string>", "title": "<string>" } ] } ] }
X-API-Token
curl -X GET "https://your-domain.com/api/series" \ -H "X-API-Token: your_api_token" \ -H "Accept: application/json"
{ "data": [ { "_id": "507f1f77bcf86cd799439011", "title": "Breaking Bad", "description": "A high school chemistry teacher turned methamphetamine producer", "type": "tvshow", "images": [ { "_id": "507f1f77bcf86cd799439012", "path": "/images/breaking-bad.jpg", "basePath": "/platform-static/images/breaking-bad.jpg" } ], "seasons": [ { "_id": "507f1f77bcf86cd799439013", "title": "Season 1" } ] }, { "_id": "507f1f77bcf86cd799439021", "title": "Better Call Saul", "description": "The trials and tribulations of criminal lawyer Jimmy McGill", "type": "tvshow", "images": [ { "_id": "507f1f77bcf86cd799439022", "path": "/images/better-call-saul.jpg", "basePath": "/platform-static/images/better-call-saul.jpg" } ], "seasons": [] } ] }
/show
https://platform-static.cdn.mdstrm.com{basePath}