Json data of the website https://fansubdb.github.io.
In case of problem, you can add or watch issues here.
Theses JSON files, which contain data, are under the CC BY-SA 4.0 license.
You can access to our data over GET on HTTPS. You can see method and structure build in this website: https://fansubdb.github.io/data/
To sum up: you can access to our data with: fansubdb.github.io/data/:lang/:years/:season.json
:langcan be found onhttps://fansubdb.github.io/data/lang.json:yearand:seasoncan be found onhttps://fansubdb.github.io/data/:lang/list.json(:langcome from above)
lang.jsonis in the root folder, to choose the subs language.list.jsonis in the:langfolder. It indicates where the json file of the season animes is located.
They have an object table. The object contains each value (lang/year/season) and their url.
This file is located under :lang/:year/:season.json. (eg. data/fr/2014/automne.json)
It's a unique object which contains:
name_lbl: Translation of the name; required; it's the<th>of the tablegroup_lbl: Translation of the group; required; it's the second<th>of the tabletv_lbl: The label of the button to showTVlist; requiredova_lbl: The label of the button to showOVA/ONA/Speciallist; requiredmovie_lbl: The label of the button to showMovielist; requiredmessage_empty_list: Show the text when the arraytv,ovaormovieis empty (i.e. contains 0 value)tv: an array of anime objects; required; it's theTVlistova: an array of anime objects; required; it's theOVA/ONA/Speciallistmovie: an array of anime objects; required; it's theMovielist
An anime object contains:
name: required; it's the<td>of the table, appears in the colum ofnameimagefrom MyAnimeList CDN URL link; required; show it when click on the buttongroups(array) of subs-group which subs it: required. An objectgroupcan have:- a
status(uncertain, planned, release, dropped, simulcast): required ifdetailexists (see below); - an array named
detail, where we have the possibility to add co-subbing: required ifstatusexists. This array contains:- the
nameof the group: required ifstatusexists
- the
- a
{
"name_lbl": "name",
"group_lbl": "fansub group",
"tv_lbl": "TV",
"ova_lbl": "OVA/ONA/Special",
"movie_lbl": "Movie",
"message_empty_list": "This list is empty! <br>Don't hesitate to submit a PR.",
"tv": [{
"name": "Anime A",
"image": "link from CDN MAL of the picture of Anime A",
"groups": [{
"status": "release",
"detail": [{
"name": "SUBS 1"
}]
}]
}, {
"name": "Anime B",
"image": "link from CDN MAL of the picture of Anime B",
"groups": [{
"status": "simulcast",
"detail": [{
"name": "simulcast 2"
}]
}, {
"status": "dropped",
"detail": [{
"name": "fansub drop 1"
}, {
"name": "fansub drop 2 in co-subbing with fansub drop 1"
}]
}]
}],
"ova": [{
"name": "Anime C",
"image": "link from CDN MAL of the picture of Anime C",
"groups": [{
"status": "release",
"detail": [{
"name": "SUBS 1"
}, {
"name": "SUBS 2 in co-subbing with SUBS 1"
}]
}]
}, {
"name": "Anime D",
"image": "link from CDN MAL of the picture of Anime D",
"groups": [{
"status": "planned",
"detail": [{
"name": "fansub plan 4"
}]
}, {
"status": "simulcast",
"detail": [{
"name": "simulcast 3"
}]
}]
}],
"movie": [{
"name": "movie 1",
"image": "link from CDN MAL of the picture of Movie 1",
"groups": [{
"status": "release",
"detail": [{
"name": "release group 1"
}]
}]
}, {
"name": "movie 2",
"image": "link from CDN MAL of the picture of Movie 2",
"groups": [{
"status": "release",
"detail": [{
"name": "fansub D"
}]
}]
}]
}