Retrieve details of a specific series by ID
cURL
curl --request GET \ --url https://api.example.com/api/series/{showId} \ --header 'X-API-Token: <x-api-token>'
{ "200": {}, "401": {}, "404": {}, "500": {}, "_id": "<string>", "title": "<string>", "description": "<string>", "type": "<string>", "images": [ { "_id": "<string>", "path": "<string>", "basePath": "<string>" } ], "seasons": [ { "_id": "<string>", "title": "<string>", "description": "<string>", "images": [ {} ] } ], "created_at": "<string>", "updated_at": "<string>" }
X-API-Token
curl -X GET "https://your-domain.com/api/series/507f1f77bcf86cd799439011" \ -H "X-API-Token: your_api_token" \ -H "Accept: application/json"
{ "_id": "507f1f77bcf86cd799439011", "title": "Breaking Bad", "description": "A high school chemistry teacher turned methamphetamine producer partners with a former student to manufacture and distribute crystal meth.", "type": "tvshow", "images": [ { "_id": "507f1f77bcf86cd799439012", "path": "/images/breaking-bad-poster.jpg", "basePath": "/platform-static/images/breaking-bad-poster.jpg" }, { "_id": "507f1f77bcf86cd799439013", "path": "/images/breaking-bad-banner.jpg", "basePath": "/platform-static/images/breaking-bad-banner.jpg" } ], "seasons": [ { "_id": "507f1f77bcf86cd799439014", "title": "Season 1", "description": "High school chemistry teacher Walter White's life is suddenly transformed.", "images": [ { "_id": "507f1f77bcf86cd799439015", "path": "/images/breaking-bad-s1.jpg", "basePath": "/platform-static/images/breaking-bad-s1.jpg" } ] }, { "_id": "507f1f77bcf86cd799439016", "title": "Season 2", "description": "Walt and Jesse realize how dire their situation is.", "images": [] } ], "created_at": "2024-01-15T08:30:00Z", "updated_at": "2024-03-05T10:30:00Z" }
/show/{showId}
https://platform-static.cdn.mdstrm.com{basePath}
/api/series/{showId}/seasons/{seasonId}/chapters