Locations

There are 36 locations with 2 pages.

Location schema

KeyTypeDescription
idintThe location's id.
namestringThe location's name.
territorystringThe territory where the location exits.
regionstringThe region where the location exists.
notable_inhabitantsstring[]A list of the location's notable inhabitants.
notable_former_inhabitantsstring[]A list of the location's notable former inhabitants.
deubtstringThe first episode the location appeared in.

Get all locations

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"
    },
    // ...
  ]
}

Get a single location

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"
}

Get multiple locations

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"
  }
]

Filter locations

Available parameters:

  • name: Filter by name
  • territory: Filter by terriotry (e.g. Shiganshina)
  • region: Filter by region (e.g. South)
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"
    },
    // ...
  ]
}