Seasons

Route that provides information about the seasons

Data Structure

Here is how the data structure is sent in the seasons return

dataSeasonchevron-right

See the name or ids to search for seasons

Available seasonschevron-right

Making season requests

Search season by id or name

GET https://api.strangerthings.tech/v1/seasons/:id

Search for a season by the requested id or name

Query Parameters

Name
Type
Description

language

String

Headers

Name
Type
Description

language

String

{
	"id": 2,
	"season": {
		"synopsis": String,
		"numberOfEpisodes": Number,
		"launch": String,
		"countryOfOrigin": String,
		"premise": String,
		"cast": {
			"name": Array
		},
		"production": {
			"name": String
		},
		"reception": Array,
		"episodes": [
			{
				"id": Number,
				"episodeNumber": Number,
				"title": String,
				"directedBy": String,
				"writtenBy": String,
				"launch": String,
				"synopsis": String
			}
			
		]
	}
}

Last updated