There are 17 organizations with 1 pages.
Key | Type | Description |
---|---|---|
id | int | The organization's id. |
name | string | The organization's name. |
img | string | The url to the organization's image. |
occupations | string[] | A list of the organization's occupations. |
notable_members | string[] | A list of notable members of the organization. |
notable_former_members | string[] | A list of notable former members of the organization. |
affiliation | string | The organization's affiliation/ |
debut | string | The first episode the organization appeared in. |
You can access all the organizations by using the /organizations endpoint.
GET https://api.attackontitanapi.com/organizations
{
"info": {
"count": 17,
"pages": 1,
"next_page": null,
"prev_page": null
},
"results": [
{
"id": 1,
"name": "Anti-Marleyan Volunteers",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/3/36/Anti-Marleyan_Volunteers_%28Anime%29.jpeg/revision/latest/scale-to-width-down/350?cb=20210211153018",
"occupations": [],
"notable_members": [
"https://api.attackontitanapi.com/characters/183"
],
"notable_former_members": [],
"affiliation": "unknown",
"debut": "https://api.attackontitanapi.com/episodes/68"
},
{
"id": 2,
"name": "Berg Newspapers",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/d/de/Flegel_pressures_Roy_to_publish_the_truth.png/revision/latest/scale-to-width-down/350?cb=20190714091248",
"occupations": [],
"notable_members": [],
"notable_former_members": [],
"affiliation": "Royal Government",
"debut": "https://api.attackontitanapi.com/episodes/41"
},
// ...
]
}
You can get a single organization by adding an id as the request parameter /organizations/5.
GET https://api.attackontitanapi.com/organizations/5
{
"id": 5,
"name": "Global Alliance",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/93/Global_Alliance_Navy.png/revision/latest/scale-to-width-down/350?cb=20220403223102",
"occupations": [],
"notable_members": [],
"notable_former_members": [],
"affiliation": "unknown",
"debut": "https://api.attackontitanapi.com/episodes/69"
}
You can get multiple organizations by adding an list of ids as the request parameter /organizations/5,17.
GET https://api.attackontitanapi.com/organizations/5,17
[
{
"id": 5,
"name": "Global Alliance",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/9/93/Global_Alliance_Navy.png/revision/latest/scale-to-width-down/350?cb=20220403223102",
"occupations": [],
"notable_members": [],
"notable_former_members": [],
"affiliation": "unknown",
"debut": "https://api.attackontitanapi.com/episodes/69"
},
{
"id": 17,
"name": "Warriors",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/4/4f/Warriors_%28854%29.png/revision/latest/scale-to-width-down/350?cb=20220321040257",
"occupations": [
"Serving as the main force as Marleyan military's main ground assault unit ground-based warfare",
"Titan Warriors act as the main assault force in ground-based combat",
"Acted as spies in the Paradis Island Operation."
],
"notable_members": [
"https://api.attackontitanapi.com/characters/86",
"https://api.attackontitanapi.com/characters/87",
"https://api.attackontitanapi.com/characters/88",
"https://api.attackontitanapi.com/characters/89"
],
"notable_former_members": [],
"affiliation": "Marleyan military",
"debut": "https://api.attackontitanapi.com/episodes/29"
}
]
Available parameters:
GET https://api.attackontitanapi.com/organizations?affiliation=marley
{
"info": {
"count": 3,
"pages": 1,
"next_page": null,
"prev_page": null
},
"results": [
{
"id": 7,
"name": "Marley Public Security",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/e/e8/The_authorities_corner_Ymir.png/revision/latest/scale-to-width-down/350?cb=20170827054750",
"occupations": [
"Maintain public order and containment of the internment zone",
"Suppression of dissents"
],
"notable_members": [],
"notable_former_members": [],
"affiliation": "Marley",
"debut": "https://api.attackontitanapi.com/episodes/35"
},
{
"id": 16,
"name": "Titan Biology Research Society",
"img": "unknown",
"occupations": [],
"notable_members": [],
"notable_former_members": [],
"affiliation": "Marley",
"debut": "https://api.attackontitanapi.com/episodes/74"
},
{
"id": 17,
"name": "Warriors",
"img": "https://static.wikia.nocookie.net/shingekinokyojin/images/4/4f/Warriors_%28854%29.png/revision/latest/scale-to-width-down/350?cb=20220321040257",
"occupations": [
"Serving as the main force as Marleyan military's main ground assault unit ground-based warfare",
"Titan Warriors act as the main assault force in ground-based combat",
"Acted as spies in the Paradis Island Operation."
],
"notable_members": [
"https://api.attackontitanapi.com/characters/86",
"https://api.attackontitanapi.com/characters/87",
"https://api.attackontitanapi.com/characters/88",
"https://api.attackontitanapi.com/characters/89"
],
"notable_former_members": [],
"affiliation": "Marleyan military",
"debut": "https://api.attackontitanapi.com/episodes/29"
}
]
}