Characters
Route that provides information about the characters
Data Structure
Here is how the structure is sent in the users' data return
dataCharacterMaking character requests
Random Character
GET https://api.strangerthings.tech/v1/characters/random
Send a random character
Query Parameters
Headers
{
"id": Number,
"character": {
"biographicalInformation": {
"name": String,
"story": String,
"otherNames": Array,
"nicknames": Array,
"birthDate": String,
"demise": String,
"hobbies": {
"name": "description"
},
"currentAge": Number,
"ageInSeasons": {
"t1": Number,
"t2": Number,
"t3": Number,
"t4": Number
},
"currentResidence": String,
"otherResidences": Array,
"relatives": Array,
"otherRelationship": Array,
"relationshipStatus": String,
"occupations": Array,
"status": String,
"skills": {
"name": "description"
},
'curiosities': Array,
},
"physicalInformation": {
"species": String,
"genre": String,
"height": Number,
"weight": Number,
"eyeColor": String,
"hairColor": String,
},
"Interpretation": {
"representedBy": String,
"apparitions": Array,
"socialNetworks": {
"name": "link"
},
"awards": Array,
"patrimony": Number,
"wage": Number,
"nationality": String,
"birthDate": String,
"occupations": String,
},
},
}Character by ID
GET https://api.strangerthings.tech/v1/characters/id/:id
Search for a character by the requested id
Query Parameters
Headers
Character by name
GET https://api.strangerthings.tech/v1/characters/name/:name
Search for a character by the requested name
Query Parameters
Headers
Character List
GET https://api.strangerthings.tech/v1/characters/list
Returns a list of ids and names of available characters
Character data list
GET https://api.strangerthings.tech/v1/characters/
Returns a list of characters starting with a specific id
Query Parameters
Headers
This method may return an error if the start parameter is greater than the list of available characters, see the Available Characters tab or use the getList method.
Last updated