There are 36 locations with 2 pages.
Key | Type | Description |
---|---|---|
id | int | The location's id. |
name | string | The location's name. |
territory | string | The territory where the location exits. |
region | string | The region where the location exists. |
notable_inhabitants | string[] | A list of the location's notable inhabitants. |
notable_former_inhabitants | string[] | A list of the location's notable former inhabitants. |
deubt | string | The first episode the location appeared in. |
You can access all the locations by using the /locations endpoint.
GET https://api.attackontitanapi.com/locations
{
"info": {
"count": 36,
"pages": 2,
"next_page": "https://api.attackontitanapi.com/locations?page=2",
"prev_page": null
},
"results": [
{
"id": 1,
"name": "Basement",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/90/Anime_basement.png/revision/latest/scale-to-width-down/350?cb=20190610052624",
"territory": "Shiganshina District",
"region": "South",
"notable_inhabitants": [],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/10"
},
{
"id": 2,
"name": "Braus Stables",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/2/2b/Falco_and_Gabi_arrive_at_the_stables.png/revision/latest/scale-to-width-down/350?cb=20230318132617",
"territory": "Dauper",
"region": "South",
"notable_inhabitants": [
"Braus family",
"https://api.attackontitanapi.com/characters/131",
"https://api.attackontitanapi.com/characters/147",
"https://api.attackontitanapi.com/characters/132"
],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/70"
},
// ...
]
}
You can get a single location by adding an id as the request parameter /locations/7.
GET https://api.attackontitanapi.com/locations/7
{
"id": 1,
"name": "Basement",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/90/Anime_basement.png/revision/latest/scale-to-width-down/350?cb=20190610052624",
"territory": "Shiganshina District",
"region": "South",
"notable_inhabitants": [],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/10"
}
You can get multiple locations by adding an list of ids as the request parameter /locations/7,9.
GET https://api.attackontitanapi.com/locations/7,9
[
{
"id": 1,
"name": "Basement",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/90/Anime_basement.png/revision/latest/scale-to-width-down/350?cb=20190610052624",
"territory": "Shiganshina District",
"region": "South",
"notable_inhabitants": [],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/10"
},
{
"id": 2,
"name": "Braus Stables",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/2/2b/Falco_and_Gabi_arrive_at_the_stables.png/revision/latest/scale-to-width-down/350?cb=20230318132617",
"territory": "Dauper",
"region": "South",
"notable_inhabitants": [
"Braus family",
"https://api.attackontitanapi.com/characters/131",
"https://api.attackontitanapi.com/characters/147",
"https://api.attackontitanapi.com/characters/132"
],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/70"
}
]
Available parameters:
GET https://api.attackontitanapi.com/locations?territory=shiganshina
{
"info": {
"count": 12,
"pages": 1,
"next_page": null,
"prev_page": null
},
"results": [
{
"id": 3,
"name": "Calaneth District",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/9a/Karanese-ANIME.png/revision/latest/scale-to-width-down/350?cb=20170710122443",
"territory": "Wall Rose",
"region": "East",
"notable_inhabitants": [
"https://api.attackontitanapi.com/characters/126",
"https://api.attackontitanapi.com/characters/77"
],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/16"
},
{
"id": 5,
"name": "Dauper",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/e/e1/Dauper_in_the_anime.jpg/revision/latest/scale-to-width-down/350?cb=20170410194648",
"territory": "Wall Rose",
"region": "South",
"notable_inhabitants": [],
"notable_former_inhabitants": [],
"debut": "https://api.attackontitanapi.com/episodes/27"
},
// ...
]
}